:root{
  --black:#000000;
  --white:#FFFFFF;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.56);
  --gold:#E4B637;
  --border2:rgba(255,255,255,.16);

  --container:1320px;

  --space-1:8px;
  --space-2:12px;
  --space-3:16px;
  --space-4:24px;
  --space-5:32px;
  --space-6:44px;
  --space-7:64px;
  --space-8:92px;
  --space-9:120px;

  --font-display:"DM Serif Display", serif;
  --font-body:"Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --focus:0 0 0 3px rgba(228,182,55,.24), 0 0 0 1px rgba(228,182,55,.20);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0; padding:0; background:var(--black); color:var(--white)}
body{
  font-family:var(--font-body);
  line-height:1.55;
  letter-spacing:.01em;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,video{display:block; max-width:100%; height:auto}
a{color:inherit; text-decoration:none}
button,input,select,textarea{font:inherit; color:inherit}
audio{width:100%}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
}
.skip-link:focus{
  left:16px;
  top:16px;
  z-index:9999;
  background:#111;
  border:1px solid var(--border2);
  color:#fff;
  border-radius:12px;
  padding:10px 14px;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding-left:var(--space-4);
  padding-right:var(--space-4);
}

/* DEBUG GUIDES */
.debug-guides::before,
.debug-guides::after{
  content:"";
  position:fixed;
  pointer-events:none;
  z-index:9999;
}
.debug-guides::before{
  top:0;
  bottom:0;
  left:50%;
  width:1px;
  transform:translateX(-0.5px);
  background:rgba(228,182,55,.26);
}
.debug-guides::after{
  left:0;
  right:0;
  top:50%;
  height:1px;
  transform:translateY(-0.5px);
  background:rgba(228,182,55,.14);
}

/* ENTER PAGE BACKGROUND: POSTER + VIDEO */
.enter-bg-poster-layer,
.enter-bg-video-layer{
  position:absolute;
  inset:0;
}
.enter-bg-poster-layer{ z-index:0; }
.enter-bg-video-layer{ z-index:1; }

.enter-bg-poster{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.34) contrast(.98) saturate(.82);
}

.enter-bg-video{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity: 0.85;
}

.enter-bg-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    radial-gradient(900px 420px at 50% 48%, rgba(255,255,255,.02), rgba(0,0,0,0) 52%),
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.58) 38%, rgba(0,0,0,.82));
}

/* HOME PAGE BACKGROUND */
.home-bg-poster-layer{
  position:fixed;
  inset:0;
  z-index:0;
}
.home-bg-poster{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.07) contrast(.92) saturate(.26);
}
.home-bg-overlay{
  position:fixed;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.95)),
    radial-gradient(1200px 600px at 50% 10%, rgba(255,255,255,.008), rgba(0,0,0,0) 55%);
}

.site-main,
.site-footer,
.enter-screen{
  position:relative;
  z-index:3;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:20;
  background:#000000;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.site-main{
  padding-top:108px;
}

.nav-container{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  min-height:84px;
  padding:10px 0;
  gap:var(--space-4);
}
.nav-left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  z-index:2;
}
.nav-center{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  display:flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  z-index:1;
}
.nav-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:var(--space-3);
  z-index:2;
}
.brand-left{
  display:inline-flex;
  align-items:center;
}
.brand-logo{
  height:54px;
  width:auto;
  object-fit:contain;
}
.menu-wordmark{
  font-family:var(--font-display);
  font-size:clamp(30px, 2.9vw, 46px);
  line-height:1;
  letter-spacing:.06em;
  color:rgba(255,255,255,.98);
  text-shadow:
    0 0 20px rgba(0,0,0,.34),
    0 0 1px rgba(228,182,55,.14);
}
.menu-wordmark:hover{
  color:#fff;
}
.primary-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.menu{
  display:flex;
  gap:24px;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center;
}
.menu a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 4px;
  font-weight:600;
  color:#ffffff;
  border-bottom:1px solid transparent;
}
.menu a:hover{
  color:#ffffff;
  border-bottom-color:rgba(228,182,55,.24);
}
.menu a:focus-visible{
  outline:none;
  box-shadow:var(--focus);
  border-radius:10px;
  padding-inline:8px;
}
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:#000;
  cursor:pointer;
}
.hamburger{
  position:relative;
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  margin:0 auto;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
}
.hamburger::before{top:-6px}
.hamburger::after{top:6px}

/* ENTER */
.enter-page{
  min-height:100vh;
  background:#000;
}
.enter-screen{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.enter-content{
  position:relative;
  z-index:4;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:24px;
}
.enter-kicker{
  margin:0 0 34px 0;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.20em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.98);

  /* Elegant outline */
  -webkit-text-stroke:0.4px rgba(0,0,0,0.9);

  /* Soft glow for readability */
  text-shadow:
    0 0 6px rgba(255,255,255,0.18),
    0 0 14px rgba(255,255,255,0.08),
    0 1px 0 rgba(0,0,0,0.75),
    0 2px 6px rgba(0,0,0,0.6);
}
.enter-title{
  margin:0 0 56px 0;
  font-family:var(--font-display);
  font-size:clamp(58px, 9vw, 118px);
  line-height:1;
  letter-spacing:.06em;
  color:rgba(255,255,255,.98);
  text-shadow:
    0 0 20px rgba(0,0,0,.34),
    0 0 1px rgba(228,182,55,.14);
}
.enter-sub{
  margin:10px 0 0 0;
  color:rgba(255,255,255,.98);
  font-size:15px;
  font-weight:700;
  text-shadow:
    0 0 6px rgba(255,255,255,.16),
    0 0 14px rgba(255,255,255,.08),
    0 1px 0 rgba(0,0,0,.78);
}

/* FLOATING SECTIONS */
.floating-section{
  padding:var(--space-8) 0;
}
.section-heading{
  display:flex;
  justify-content:center;
  margin-bottom:var(--space-6);
}
.section-heading-featured{
  justify-content:center;
  text-align:center;
  margin-bottom:var(--space-7);
}
.floating-label{
  margin:0;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
}
.featured-section-title{
  margin:0;
  font-family:var(--font-body);
  font-size:clamp(18px, 1.7vw, 24px);
  font-weight:600;
  line-height:1;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--gold);
}

/* INTERACTIVE SURFACES */
.interactive-surface{
  transition:transform .16s ease, filter .16s ease, opacity .16s ease, box-shadow .16s ease;
}
.interactive-surface:hover,
.interactive-surface:focus{
  transform:translateY(-2px);
  filter:brightness(1.03);
}

/* FEATURED */
.featured-band{
  background:#000000;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:48px 44px 40px 44px;
  box-shadow:0 28px 60px rgba(0,0,0,.30);
}
.featured-slider{
  display:block;
}
.featured-stage{
  position:relative;
}
.featured-single{
  display:block;
}
.featured-layout{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:var(--space-8);
  align-items:stretch;
}
.featured-stage-wrap{
  display:flex;
  align-items:stretch;
  justify-content:center;
}
.featured-stage-component{
  width:100%;
  max-width:560px;
  aspect-ratio:1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.featured-stage-square{
  aspect-ratio:1 / 1;
}
.featured-stage-media{
  width:100%;
  height:100%;
}
.featured-stage-image{
  object-fit:contain;
}

.featured-info-shell{
  display:flex;
  align-items:stretch;
  min-height:0;
}
.featured-info-box{
  width:100%;
  height:100%;
  max-height:560px;
  min-height:560px;
  display:grid;
  grid-template-rows:1fr auto auto;
  gap:var(--space-6);
  padding:38px 38px 32px 38px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  background:rgba(255,255,255,.02);
}
.featured-box-top{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:24px;
}
.featured-box-middle{
  display:flex;
  justify-content:flex-start;
}
.featured-box-bottom{
  display:flex;
  align-items:end;
}
.featured-track-title{
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(30px, 3.2vw, 46px);
  line-height:1.02;
  text-align:left;
}
.featured-description{
  margin:0;
  color:var(--muted);
  max-width:34ch;
}
.featured-player-wrap{
  width:100%;
  max-width:100%;
}
.featured-cta-row{
  justify-content:flex-start;
}
.featured-dots,
.featured-nav{
  display:none;
}

/* MUSIC */
.music-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:var(--space-7);
}
.music-item{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
}
.music-item-title{
  margin:0;
  font-family:var(--font-display);
  font-size:22px;
  text-align:center;
}
.music-cover{
  width:100%;
  max-width:320px;
  aspect-ratio:1 / 1;
  object-fit:contain;
}
.music-item audio{
  width:100%;
  max-width:320px;
}
.music-item-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}
.section-bridge{
  margin-top:var(--space-6);
  display:flex;
  justify-content:center;
}

/* VISUALS */
.visuals-player-shell{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}
.visuals-player-frame{
  width:100%;
  max-width:980px;
}
.visuals-video{
  width:100%;
  aspect-ratio:16 / 9;
  background:#000;
}
.visuals-controls{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.visual-thumb{
  min-width:160px;
  height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid transparent;
  background:rgba(255,255,255,.02);
  color:rgba(255,255,255,.82);
  cursor:pointer;
  transition:transform .12s ease, background-color .12s ease, border-color .12s ease;
}
.visual-thumb:hover{
  transform:translateY(-1px);
  border-color:rgba(228,182,55,.22);
  background:rgba(228,182,55,.05);
}
.visual-thumb.is-active{
  background:rgba(228,182,55,.11);
  border-color:rgba(228,182,55,.22);
  color:var(--white);
}

/* IDENTITY */
.identity-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:var(--space-8);
}
.identity-item{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:flex-start;
}
.identity-image{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:contain;
}
.identity-copy{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.identity-title{
  margin:0;
  font-family:var(--font-display);
  font-size:24px;
}

/* SOCIAL */
.social-strip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:var(--space-7);
}
.social-preview{
  width:100%;
  aspect-ratio:1 / 1.06;
  object-fit:cover;
}
.social-note{
  margin:var(--space-5) auto 0 auto;
  max-width:72ch;
  text-align:center;
  color:var(--muted2);
  font-size:14px;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:172px;
  height:48px;
  padding:0 20px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.02);
  color:var(--white);
  font-weight:600;
  letter-spacing:.01em;
  cursor:pointer;
  transition:transform .12s ease, background-color .12s ease, border-color .12s ease, opacity .12s ease;
  white-space:nowrap;
}
.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(228,182,55,.24);
  background:rgba(228,182,55,.06);
}
.btn:focus-visible{
  outline:none;
  box-shadow:var(--focus);
}
.btn-primary{
  background:rgba(228,182,55,.11);
  border-color:rgba(228,182,55,.22);
}
.btn-secondary{
  background:rgba(255,255,255,.02);
  border-color:rgba(255,255,255,.12);
}
.btn-small{
  min-width:132px;
  height:42px;
  padding:0 16px;
  font-size:14px;
}
.btn-enter{
  min-width:188px;
  height:54px;
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:18px;
}

/* FOOTER */
.site-footer{
  padding:40px 0 34px 0;
}
.traylil-footer-layout{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  text-align:center;
}
.footer-brand-block{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.footer-logo{
  height:28px;
  width:auto;
  object-fit:contain;
}
.footer-social-icons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.social-icon-link{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:.78;
  transition:opacity .12s ease, transform .12s ease;
}
.social-icon-link:hover{
  opacity:1;
  transform:translateY(-1px);
}
.social-icon-link img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.footer-copy{
  margin:0;
  color:rgba(255,255,255,.54);
  font-size:13px;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .5s ease, transform .5s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{transition:none !important; animation:none !important}
  .reveal{opacity:1; transform:none}
}

@media (max-width: 1100px){
  .nav-container{
    grid-template-columns:auto auto;
    justify-content:space-between;
  }
  .nav-center{
    display:none;
  }
}

@media (max-width: 980px){
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .primary-nav{
    position:fixed;
    top:95px;
    left:0;
    right:0;
    display:none;
    padding:var(--space-3);
    background:#000000;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .primary-nav.is-open{
    display:block;
  }
  .menu{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .menu a{
    width:100%;
    justify-content:space-between;
    border-radius:18px;
    padding:12px 14px;
    background:rgba(255,255,255,.02);
    border:1px solid rgba(255,255,255,.10);
  }

  .featured-layout,
  .music-grid,
  .identity-grid,
  .social-strip{
    grid-template-columns:1fr;
  }

  .featured-info-box{
    min-height:auto;
    max-height:none;
    height:auto;
  }

  .site-main{
    padding-top:96px;
  }
}

@media (max-width: 640px){
  .floating-section{
    padding:72px 0;
  }
  .container{
    padding-left:20px;
    padding-right:20px;
  }
  .brand-logo{
    height:43px;
  }
  .featured-band{
    padding:36px 22px 28px 22px;
  }
  .btn{
    width:100%;
    min-width:unset;
  }
  .btn-small{
    width:auto;
    min-width:120px;
  }
  .featured-player-wrap,
  .music-cover,
  .music-item audio{
    max-width:none;
  }
  .music-item-actions{
    width:100%;
  }
  .enter-kicker{
    margin-bottom:28px;
  }
  .enter-title{
    margin-bottom:48px;
    font-size:clamp(44px, 16vw, 76px);
  }
  .visuals-controls{
    flex-direction:column;
    align-items:stretch;
  }
  .visual-thumb{
    width:100%;
  }
}