:root{
  --bg: #0b0c10;
  --text: #f2f2f2;
  --muted: rgba(242,242,242,0.72);
  --line: rgba(255,255,255,0.08);

  --red: #e11d2e;
  --redGlow: rgba(225,29,46,0.18);

  --font-display: 'Oxanium', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow: 0 12px 40px rgba(0,0,0,0.55);
  --radius: 18px;

  /* Platform brand colors */
  --twitch: #9146FF;
  --kick: #53FC18;
  --tiktokCyan: #25F4EE;
  --tiktokRed: #FE2C55;
  --youtube: #FF0000;
  --instagram: #E1306C;
}

html, body {
  background: radial-gradient(1200px 700px at 20% 0%, rgba(225,29,46,0.12), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(225,29,46,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
  margin: 0;
  font-family: var(--font-body);
}

p { font-size: 16px; line-height: 1.6; color: var(--muted); }
h2, h3 { margin: 0.6rem 0; }

.row { display:flex; flex-wrap:wrap; gap: 14px; padding: 14px; }

.box{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 220px;
  overflow: hidden;
  position: relative;
}

.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    width:100%;
}

.brand-left{
    display:flex;
    align-items:center;
    gap:16px;
}

.box-content { padding: 18px; }

.row-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11,12,16,0.75);
  backdrop-filter: blur(14px);
}

.spotify-header{
    width:340px;
    border-radius:14px;
    overflow:hidden;

    box-shadow:
        0 0 0 1px rgba(255,255,255,.05),
        0 10px 30px rgba(0,0,0,.6),
        0 0 20px rgba(225,29,46,.15);
}

/* Blend it into your dark theme */
.spotify-header iframe{
    filter: brightness(.9) contrast(1.1);
}


/* Header tweaks */
.header-wide{ flex: 1; }

.brand{
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 6px 6px;
}

p{
  font-family: var(--font-body);
  font-weight: 400;
}

.muted{
  font-family: var(--font-body);
  font-weight: 400;
}

/* DISPLAY FONT */

h1, h2, h3, h4,
.brand-name,
.hero-title,
.panel-title,
.btn,
.chip,
.stat-number,
.stat-platform,
.merch-title {
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}


.brand-logo{
  width: 84px;
  height: 74px;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
}

.brand-name{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 30px;
}


.brand-tag{
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.hero-title{
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.hero-sub{ margin-top: 8px; }

.panel-title{
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}

.cta-row{ display:flex; gap: 12px; margin-top: 14px; flex-wrap:wrap; }
.mini-row{ display:flex; gap: 10px; margin-top: 14px; flex-wrap:wrap; }

.btn, .chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration:none;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.btn.primary{
  background: linear-gradient(135deg, rgba(225,29,46,0.95), rgba(225,29,46,0.72));
  border-color: rgba(225,29,46,0.6);
  box-shadow: 0 10px 30px rgba(225,29,46,0.18);
}

.btn.ghost{ background: rgba(255,255,255,0.03); }
.btn.full{ width: 100%; }

.btn:hover, .chip:hover{
  transform: translateY(-1px);
  border-color: rgba(225,29,46,0.6);
  box-shadow: 0 0 0 4px var(--redGlow);
}

/* Social list */
.social-links{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}


.social-links a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.social-links a:hover{
  transform: translateY(-1px);
  border-color: rgba(225,29,46,0.6);
  box-shadow: 0 0 0 4px var(--redGlow);
}

.social-links .left{ display:flex; align-items:center; gap: 10px; }
.social-links .right{ color: rgba(255,255,255,0.55); }

/* Kick "K" badge */
.kick-badge{
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  font-size: 12px;
  background: rgba(83,252,24,0.18);
  border: 1px solid rgba(83,252,24,0.55);
  color: var(--kick);
}

/* Brand color icons */
.icon-twitch{ color: var(--twitch); }
.icon-kick{ color: var(--kick); }
.icon-tiktok{
  background: linear-gradient(90deg, var(--tiktokCyan), var(--tiktokRed));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.icon-instagram{
  background: linear-gradient(90deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.icon-youtube{ color: var(--youtube); }

/* Stats carousel */
.carousel{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 100%;
  width: 100%;
  background: rgba(255,255,255,0.02);
}

.arrow{
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 14px;
}

.arrow i{
  font-size: 2rem;
  color: rgba(255,255,255,0.75);
  transition: transform 0.15s ease, color 0.15s ease;
}

.arrow:hover i{
  transform: scale(1.1);
  color: var(--text);
}

.carousel-content{
  flex: 1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 16px;
  gap: 8px;
}

.stat-platform{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.stat-platform .platform-icon{ font-size: 22px; }
.stat-number{
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.95);
}
.stat-label{ color: var(--muted); }

.muted{ color: var(--muted); font-size: 13px; }

/* Merch carousel */
.merch-sub{ margin-top: -4px; margin-bottom: 12px; }

.merch-carousel{
  display:flex;
  align-items:center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  padding: 10px;
}

.merch-stage{
  flex: 1;
  min-height: 240px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.merch-image{
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.06);
}

.merch-title{
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.merch-footer{
  margin-top: 12px;
}

/* Contact */
.contact-quick-box{ cursor:pointer; }
.contact-callout{ margin-top: 10px; }

/* Modals */
.modal{
  display:none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0,0,0,0.55);
  overflow-y:auto;
  padding: 24px 14px;
}



.modal-content{
  background: linear-gradient(180deg, rgba(17,19,26,0.98), rgba(15,17,23,0.98));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
  margin: 2% auto;
  padding: 20px;
  width: min(920px, 92vw);
}

.close{
  color: rgba(255,255,255,0.65);
  float:right;
  font-size: 30px;
  font-weight: 700;
  cursor:pointer;
}

.modal-title{ margin-top: 6px; }
.modal-sub{ margin-top: 6px; margin-bottom: 18px; }

/* ✅ Affiliate Modal — restored to previous layout */
.affiliate-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.affiliate-category{
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.02);
}

.affiliate-category h4{
  margin: 0 0 12px 0;
  font-size: 16px;
  letter-spacing: 0.3px;
}

.affiliate-items{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.affiliate-card{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.affiliate-logo{
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
}

/* These 3 are what got dropped and changed the look */
.affiliate-meta{ flex: 1; text-align:left; }
.affiliate-name{ font-weight: 800; }
.affiliate-blurb{ font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Contact form */
.contact-form{
  display:grid;
  gap: 12px;
}

.contact-form label{
  display:grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: rgba(225,29,46,0.55);
  box-shadow: 0 0 0 4px rgba(225,29,46,0.16);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0% { transform: translateY(22px); opacity: 0; }
  60% { transform: translateY(-6px); opacity: 1; }
  80% { transform: translateY(3px); }
  100% { transform: translateY(0); opacity: 1; }
}

.fade-in { opacity: 0; animation: fadeIn 1s ease forwards; }
.bounce { animation: bounce 1s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }

@media (max-width: 900px){
  .brand-logo { width: 60px; height: 60px; }
  .brand-name { font-size: 24px; }
  .hero-title{ font-size: 24px; }
  .stat-number{ font-size: 38px; }
  .merch-stage{ min-height: 220px; }
  .header-flex{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .spotify-header{
        width:100%;
    }
}
