/* ------------ Reset & Base ------------ */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { overflow-x: hidden; width: 100%; }
    body {
      font-family: 'Arial', sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #141c2c 100%);
      color: white;
      overflow-x: hidden;
      min-height: 100vh;
      width: 100%;
      max-width: 100vw;
      cursor: none; /* custom cursor */
    }

    /* ------------ Custom Cursor (Paw Print) ------------ */
    .cursor-dot, .cursor-ring {
      position: fixed; left: 0; top: 0; pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
    }
    .cursor-dot { 
      width: 32px; height: 32px; 
      background-image: url('https://snoofz.net/public/uploads/e2b8ec02-80da-4206-a83a-e821cf5594dc.png');
      background-size: contain;
      background-repeat: no-repeat;
      filter: drop-shadow(0 0 8px rgba(233,31,66,.6));
      transition: transform .1s ease, filter .1s ease;
    }
    .cursor-dot.beat { 
      transform: translate(-50%, -50%) scale(1.4);
      filter: drop-shadow(0 0 16px rgba(233,31,66,1)) drop-shadow(0 0 24px rgba(255,107,138,.8));
    }
    .cursor-ring { display: none; }

    /* ------------ Cursor Trail Particles ------------ */
    .trail-particle {
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      border-radius: 50%;
      animation: trailFade 1.2s ease-out forwards;
    }
    .trail-snow {
      width: 6px;
      height: 6px;
      background: radial-gradient(circle, #ff6b8a, #e91f42);
      box-shadow: 0 0 8px rgba(233,31,66,.8);
    }
    .trail-paw {
      width: 16px;
      height: 16px;
      background-image: url('https://snoofz.net/public/uploads/e2b8ec02-80da-4206-a83a-e821cf5594dc.png');
      background-size: contain;
      background-repeat: no-repeat;
      opacity: 0.7;
    }
    @keyframes trailFade {
      0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
      100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3) translateY(30px); }
    }

    /* ------------ Overlay Fade ------------ */
    .gate {
      position: fixed; inset: 0; z-index: 50; display: grid; place-items: center;
      background: linear-gradient(135deg, #0a0a0a 0%, #141c2c 100%); /* fully opaque */
      border-bottom: 1px solid rgba(233,31,66,.25);
      transition: opacity 1s ease-in-out;
    }
    .gate.fade-out { opacity: 0; pointer-events: none; }

    .gate-inner { text-align: center; }
    .gate h2 {
      font-size: clamp(28px, 5vw, 50px);
      letter-spacing: .15em; font-weight: 300;
      background: linear-gradient(135deg, #e91f42, #ff6b8a, #e91f42);
      background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: gradient-shift 4s ease-in-out infinite; text-shadow: 0 0 30px rgba(233, 31, 66, 0.3);
    }
    .gate button {
      margin-top: 18px; padding: 12px 22px; border-radius: 999px; border: 2px solid #e91f42; background: transparent; color: white; cursor: pointer; font-weight: 700; letter-spacing: .12em;
      box-shadow: 0 8px 24px rgba(233,31,66,.25);
    }
    .gate button:hover { background: rgba(233,31,66,.25); }

    /* ------------ Canvas background ------------ */
    #tsparticles { position: fixed; inset: 0; z-index: -1; filter: blur(1px); }

    /* ------------ Page layout ------------ */
    .container { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; padding: 2rem 1rem; text-align: center; position: relative; width: 100%; max-width: 100vw; box-sizing: border-box; }
    .logo-container { margin-bottom: 2rem; }
    .logo {
      width: 120px; height: 120px; margin: 0 auto; position: relative;
      background-image: url("https://snoofz.net/public/uploads/6249af0c-484c-4f32-887e-638fc8f34aa9.png");
      background-size: contain; background-repeat: no-repeat; background-position: center;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      filter: drop-shadow(0 0 20px rgba(233, 31, 66, 0.5));
    }
    .brand-name {
      font-size: 4.5rem; font-weight: 300; letter-spacing: 0.3em; margin-bottom: 1rem;
      background: linear-gradient(135deg, #e91f42, #ff6b8a, #e91f42);
      background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: gradient-shift 4s ease-in-out infinite; text-shadow: 0 0 30px rgba(233, 31, 66, 0.3);
    }
    .tagline { font-size: 1.3rem; font-weight: 300; margin-bottom: 3rem; color: #e91f42; letter-spacing: 0.05em; line-height: 1.8; min-height: 8rem; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .typewriter-line { display: block; overflow: hidden; border-right: 2px solid #e91f42; white-space: nowrap; margin: 0.5rem auto; width: 0; opacity: 0; animation: blink-caret 1s step-end infinite; }
    .typewriter-line.typing { opacity: 1; animation: typing 3s steps(50, end) forwards, blink-caret 1s step-end infinite; }
    .typewriter-line.finished { opacity: 1; width: 100% !important; border-right: none; animation: none; }
    @keyframes typing { from { width: 0; } to { width: 100%; } }
    @keyframes blink-caret { from, to { border-color: transparent; } 50% { border-color: #e91f42; } }
    @keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

    .cta-button { background: linear-gradient(135deg, #141c2c, #e91f42, #141c2c); color: white; border: none; padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.1em; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; box-shadow: 0 8px 25px rgba(233, 31, 66, 0.3); position: relative; overflow: hidden; border: 2px solid #e91f42; animation: button-glow 2s ease-in-out infinite; }
    @keyframes button-glow { 0%, 100% { box-shadow: 0 8px 25px rgba(233, 31, 66, 0.3);} 50% { box-shadow: 0 8px 35px rgba(233, 31, 66, 0.6), 0 0 20px rgba(233, 31, 66, 0.4);} }
    .cta-button:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(233, 31, 66, 0.4); background: linear-gradient(135deg, #e91f42, #141c2c, #e91f42); animation: none; }
    .cta-button:before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transition: left .5s; }
    .cta-button:hover:before { left: 100%; }

    /* ------------ Slideshow ------------ */
    .slideshow-container { margin-top: 4rem; width: 100%; max-width: min(1200px, calc(100vw - 4rem)); position: relative; height: 500px; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(233,31,66,.2); box-sizing: border-box; animation: container-pulse 4s ease-in-out infinite; }
    @keyframes container-pulse { 0%,100%{box-shadow:0 20px 50px rgba(0,0,0,.5),0 0 30px rgba(233,31,66,.2);} 50%{box-shadow:0 20px 50px rgba(0,0,0,.5),0 0 40px rgba(233,31,66,.4);} }
    .slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; background: linear-gradient(135deg, #141c2c, #0f1419); border: 2px solid rgba(233,31,66,.3); border-radius: 15px; }
    .slide.active { opacity: 1; }
    .slide-content { display: flex; height: 100%; align-items: center; justify-content: center; padding: 2rem 1rem; gap: 2rem; box-sizing: border-box; width: 100%; overflow: hidden; }

    /* Make images fully visible (contain) and clickable */
    .slide-image { flex: 1; height: 400px; background-color: #000; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: 600; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(233,31,66,.3); transition: transform .3s ease; background-repeat:no-repeat; background-position:center; background-size: contain !important; cursor: zoom-in; }
    .slide-image:hover { transform: scale(1.02); }

    .slide-text { flex: 1; padding-left: 2rem; }
    .slide-title { font-size: 2rem; color: #e91f42; margin-bottom: 1rem; font-weight: 700; text-shadow: 0 0 20px rgba(233,31,66,.4); }
    .slide-description { font-size: 1.1rem; color: rgba(255,255,255,.8); line-height: 1.6; }
    .slideshow-indicators { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
    .indicator { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all .3s ease; }
    .indicator.active { background: #e91f42; box-shadow: 0 0 10px rgba(233,31,66,.5); animation: indicator-pulse 1.5s ease-in-out infinite; }
    @keyframes indicator-pulse { 0%,100{transform: scale(1);} 50%{transform: scale(1.3);} }
    .slideshow-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(233, 31, 66, .8); border: none; color: white; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; transition: all .3s ease; z-index: 10; }
    .slideshow-nav:hover { background: #e91f42; transform: translateY(-50%) scale(1.1); box-shadow: 0 0 20px rgba(233,31,66,.6); }
    .prev { left: 20px; } .next { right: 20px; }

    /* ------------ Lightbox Preview ------------ */
    .preview { position: fixed; inset: 0; z-index: 60; display: none; place-items: center; background: rgba(5,5,10,.9); }
    .preview.open { display: grid; animation: previewIn .18s ease-out; }
    @keyframes previewIn { from { opacity: 0; } to { opacity: 1; } }
    .preview-card { position: relative; max-width: 92vw; max-height: 86vh; border-radius: 16px; padding: 10px; background: linear-gradient(135deg,#0b0f18,#0a0a0f); border: 1px solid rgba(233,31,66,.35); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
    .preview-card img { display: block; max-width: 90vw; max-height: 80vh; border-radius: 12px; }
    .preview-close, .preview-prev, .preview-next { position: absolute; top: 8px; background: rgba(233,31,66,.9); border: none; color: #fff; width: 36px; height: 36px; border-radius: 999px; cursor: pointer; display: grid; place-items: center; }
    .preview-close { right: 8px; }
    .preview-prev { left: 8px; top: 50%; transform: translateY(-50%); }
    .preview-next { right: 8px; top: 50%; transform: translateY(-50%); }
    .preview-caption { margin-top: 8px; text-align: center; color: #ff6b8a; opacity: .9; font-weight: 600; letter-spacing: .05em; }

    /* ------------ Modal ------------ */
    .modal { position: fixed; inset: 0; z-index: 70; display: none; place-items: center; background: rgba(5,5,10,.85); backdrop-filter: blur(4px); }
    .modal.open { display: grid; animation: modalIn .2s ease-out; }
    @keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
    .modal-content { background: linear-gradient(135deg, #0b0f18, #141c2c); border: 2px solid rgba(233,31,66,.4); border-radius: 16px; padding: 2.5rem 2rem; max-width: 500px; width: 90%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(233,31,66,.25); animation: modalSlide .3s ease-out; }
    @keyframes modalSlide { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    .modal-title { font-size: 2rem; color: #e91f42; margin-bottom: 1rem; font-weight: 700; text-shadow: 0 0 20px rgba(233,31,66,.4); }
    .modal-text { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 2rem; }
    .modal-btn { background: linear-gradient(135deg, #e91f42, #ff6b8a); color: white; border: none; padding: 0.75rem 2rem; font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; box-shadow: 0 8px 25px rgba(233, 31, 66, 0.3); border: 2px solid #e91f42; }
    .modal-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(233, 31, 66, 0.5); }

    /* ------------ NOW PLAYING ------------ */
    .audio-ui { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 14px; z-index: 20; background: rgba(10,10,20,.55); backdrop-filter: blur(8px); border: 1px solid rgba(233,31,66,.35); padding: 10px 14px; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
    .now { font-weight: 700; letter-spacing:.08em; color: #ff6b8a; text-shadow: 0 0 10px rgba(233,31,66,.3); }
    .track { max-width: 42vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; opacity: .9; }
    .controls button { background: transparent; border: 1px solid rgba(233,31,66,.5); color: white; padding: 6px 10px; border-radius: 10px; cursor: pointer; }
    .controls button:hover { background: rgba(233,31,66,.2); }
    .playlist { position: fixed; right: 16px; bottom: 16px; z-index: 20; max-width: 360px; max-height: 40vh; overflow: auto; background: rgba(10,10,20,.55); border: 1px solid rgba(233,31,66,.35); border-radius: 12px; padding: 10px; }
    .playlist h4 { margin-bottom: 8px; color: #e91f42; }
    .playlist-item { padding: 8px; border-radius: 8px; cursor: pointer; }
    .playlist-item:hover { background: rgba(233,31,66,.15); }
    .playlist-item.active { background: rgba(233,31,66,.28); }

    /* ---------- Top-right icon buttons ---------- */
    .top-actions {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 80; /* above slides & cursor trail */
    display: flex;
    gap: 10px;
    align-items: center;
    }

    .icon-btn {
    --size: 42px;
    width: var(--size);
    height: var(--size);
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(233,31,66,.45);
    background: rgba(10,10,20,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px rgba(233,31,66,.25);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    opacity: .95;
    }
    .icon-btn:hover {
    transform: translateY(-1px);
    background: rgba(233,31,66,.18);
    border-color: rgba(233,31,66,.75);
    box-shadow: 0 10px 28px rgba(233,31,66,.45), 0 0 18px rgba(233,31,66,.35);
    opacity: 1;
    }
    .icon-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(233,31,66,.35);
    }

    .icon-btn svg {
    width: 22px;
    height: 22px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(233,31,66,.35));
    }

    /* Tooltips */
    .icon-btn[data-tip] {
    position: relative;
    }
    .icon-btn[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(10,10,20,.85);
    border: 1px solid rgba(233,31,66,.45);
    color: #fff;
    font-size: 11px;
    letter-spacing: .04em;
    padding: 6px 8px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    }
    .icon-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    }

    /* Smaller on mobile, bigger touch targets */
    @media (max-width: 768px) {
    .icon-btn { --size: 38px; border-radius: 10px; }
    .icon-btn svg { width: 20px; height: 20px; }
    }

    /* Keep above your gate overlay if needed */
    .gate { z-index: 50; }

    /* ------------ Responsive tweaks ------------ */
    @media (max-width: 768px) {
      .brand-name { font-size: 3rem; letter-spacing: .2em; }
      .tagline { font-size: 1.1rem; padding: 0 1rem; }
      .container { padding: 1rem .5rem; }
      .slideshow-container { height: 400px; max-width: calc(100vw - 2rem); margin-top: 2rem; }
      .slide-content { flex-direction: column; text-align: center; padding: 1rem .5rem; gap: 1rem; }
      .slide-image { height: 200px; width: 100%; }
      .slide-text { padding-left: 0; padding-top: 0; width: 100%; }
      .slide-title { font-size: 1.5rem; }
      .slide-description { font-size: 1rem; }
      .slideshow-nav { width: 40px; height: 40px; font-size: 1.2rem; }
      .prev { left: 10px; } .next { right: 10px; }
      .track { max-width: 55vw; }
      .modal-content { padding: 2rem 1.5rem; }
      .modal-title { font-size: 1.6rem; }
      .modal-text { font-size: 1rem; }
    }

    button, a, .cta-button, .slideshow-nav, .playlist-item, .modal-btn {
        cursor: pointer !important;
    }