/* Theme variables */
:root {
  --bg-0: #0a0b10;
  --bg-1: #0f1220;
  --text: #e6e9f3;
  --muted: #a0a6c0;
  --primary: #fb3600; /* orange-red */
  --secondary: #1e3a8a; /* dark blue */
  --accent: #fbbf24; /* amber accent */
  --card: #121526;
  --success: #24d27b;
  --danger: #ff4d6d;
  --warning: #ffd166;
  --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-0); color: var(--text); font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* Containers */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: linear-gradient(180deg, rgba(10,11,16,0.9), rgba(10,11,16,0.4)); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(108,159,255,0.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-logo { width: 52px; height: 52px;}
.brand-text { font-family: "Orbitron", sans-serif; font-weight: 700; letter-spacing: 1px; }

/* Glitch Text Animation */
.glitch-text {
  position: relative;
  transition: opacity 0.1s ease;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text1);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch-text::before {
  color: var(--primary);
  z-index: -1;
  text-shadow: -2px 0 var(--primary);
}

.glitch-text::after {
  color: var(--accent);
  z-index: -2;
  text-shadow: 2px 0 var(--accent);
}

/* Active glitching state */
.glitch-text.glitching::before {
  animation: glitch-anim-1 0.15s steps(3, end) 4;
  opacity: 0.8;
}

.glitch-text.glitching::after {
  animation: glitch-anim-2 0.15s steps(3, end) 4;
  opacity: 0.8;
}

.glitch-text.glitching {
  animation: glitch-shake 0.4s ease-out;
}

@keyframes glitch-shake {
  0%, 100% {
    transform: translate(0);
  }
  10% {
    transform: translate(-2px, 2px);
  }
  20% {
    transform: translate(2px, -2px);
  }
  30% {
    transform: translate(-2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  50% {
    transform: translate(1px, -1px);
  }
  60% {
    transform: translate(-1px, 1px);
  }
  70% {
    transform: translate(1px, 1px);
  }
  80% {
    transform: translate(-1px, -1px);
  }
  90% {
    transform: translate(2px, 0px);
  }
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%);
  }
  100% {
    clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%);
    opacity: 0.8;
  }
}

.nav { position: relative; }
.nav-list { display: flex; align-items: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav-list a { color: var(--muted); text-decoration: none; font-weight: 500; transition: color .2s ease, text-shadow .2s ease; }
.nav-list a:hover { color: var(--text); text-shadow: 0 0 8px var(--primary); }
.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* Sections */
.section { padding: 80px 0; position: relative; }
.section-title { font-family: "Orbitron", sans-serif; font-weight: 800; letter-spacing: 0.5px; margin: 0 0 18px; }
.section-text { color: var(--muted); max-width: 900px; }

/* Hero */
.hero { min-height: calc(100vh - 64px); display: grid; place-items: center; overflow: clip; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05) brightness(0.9); }
.hero-bg { position: absolute; inset: 0; background:
  linear-gradient(90deg, transparent 50%, rgba(10,11,16,0.4) 100%),
  url('assets/logo.png') right center / contain no-repeat,
  radial-gradient(1200px 500px at 10% 20%, rgba(108,159,255,0.2), transparent 60%),
  radial-gradient(600px 400px at 90% 20%, rgba(176,103,255,0.16), transparent 60%),
  linear-gradient(180deg, rgba(10,11,16,0.2), rgba(10,11,16,0.8)),
  transparent;
  filter: saturate(1.05) contrast(1.05);
  opacity: 0.6;
}
.hero-inner { position: relative; text-align: center; padding: 40px 0; }
.hero-title { 
  font-family: "Orbitron", sans-serif; 
  font-size: clamp(32px, 6vw, 72px); 
  line-height: 1.05; 
  margin: 0 0 12px; 
  position: relative;
  display: inline-block;
  color: transparent;
  text-shadow: 0 0 24px rgba(108,159,255,0.35);
}
.hero-title span:nth-child(1) {
  position: absolute;
  top: 0; left: 0;
  color: var(--text);
  transition: 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  overflow: hidden;
}
.hero-title:hover span:nth-child(1) {
  transform: translateY(-18px);
}
.hero-title span:nth-child(2) {
  position: absolute;
  top: 0; left: 0;
  color: var(--text);
  transition: 0.5s;
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  overflow: hidden;
}
.hero-title:hover span:nth-child(2) {
  transform: translateY(18px);
}
.hero-title span:nth-child(3) {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scaleY(0);
  width: auto;
  max-width: 90%;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 0.22em;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 6px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  white-space: nowrap;
}
.hero-title:hover span:nth-child(3) {
  transform: translate(-50%, -50%) scaleY(1);
}
.hero-tagline { color: var(--muted); font-size: clamp(16px, 2vw, 22px); margin: 0 0 28px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border-radius: 10px; border: 1px solid transparent; font-weight: 600; letter-spacing: .3px; cursor: pointer; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn-primary { background: linear-gradient(135deg, rgba(108,159,255,0.15), rgba(176,103,255,0.15)); border-color: rgba(108,159,255,0.35); color: var(--text); box-shadow: 0 6px 24px rgba(108,159,255,0.25), inset 0 0 12px rgba(176,103,255,0.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(108,159,255,0.4), inset 0 0 16px rgba(176,103,255,0.25); border-color: rgba(176,103,255,0.55); }

/* About */
.about .section-text { font-size: 18px; }

/* Tournaments */
.tournaments .section-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; }
.filters { display: flex; align-items: center; gap: 12px; }
.filters select { background: #0f1324; color: var(--text); border: 1px solid rgba(255,255,255,0.12); padding: 10px 12px; border-radius: 10px; }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { background: linear-gradient(180deg, rgba(18,21,38,0.9), rgba(18,21,38,0.7)); border: 1px solid rgba(108,159,255,0.12); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(176,103,255,0.35); box-shadow: 0 14px 40px rgba(176,103,255,0.18); }
.card-media { position: relative; aspect-ratio: 16/9; background: #101321; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 16px; display: grid; gap: 10px; }
.card-title { font-weight: 700; margin: 0; }
.meta { display: flex; flex-wrap: wrap; gap: 10px 14px; color: var(--muted); font-size: 14px; }
.prize-pool-highlight {
  color: var(--accent);
  font-weight: 700;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 54, 0, 0.1));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
  transition: all 0.3s ease;
}
.prize-pool-highlight:hover {
  color: #ffd700;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(251, 54, 0, 0.15));
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.25);
  transform: translateY(-2px);
}
.badge { padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .3px; border: 1px solid rgba(255,255,255,0.16); }
.badge.open { color: var(--success); border-color: rgba(36,210,123,0.45); box-shadow: inset 0 0 10px rgba(36,210,123,0.12); }
.badge.coming-soon { color: var(--warning); border-color: rgba(255,209,102,0.55); box-shadow: inset 0 0 10px rgba(255,209,102,0.18); }
.badge.closed { color: var(--danger); border-color: rgba(255,77,109,0.45); box-shadow: inset 0 0 10px rgba(255,77,109,0.12); }
.card-actions { display: flex; gap: 10px; margin-top: 6px; }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.18); color: var(--text); }
.btn-secondary:hover { border-color: rgba(108,159,255,0.45); box-shadow: 0 6px 20px rgba(108,159,255,0.2); }

.card-coming-soon .card-media img {
  filter: blur(2px) brightness(0.75);
  transform: scale(1.02);
}

.card-coming-soon .card-body {
  opacity: 0.9;
}

.upcoming-strip {
  position: absolute;
  top: 12px;
  left: -36px;
  z-index: 2;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #1b1200;
  font-weight: 800;
  letter-spacing: 0.9px;
  font-size: 11px;
  padding: 6px 48px;
  transform: rotate(-25deg);
  border: 1px solid rgba(255, 226, 173, 0.5);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

/* Form */
.form { background: linear-gradient(180deg, rgba(18,21,38,0.9), rgba(18,21,38,0.7)); border: 1px solid rgba(108,159,255,0.12); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); overflow: hidden; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: 100%; }
.form-field { display: grid; gap: 6px; min-width: 0; }
.form-field-full { grid-column: 1/-1; }
label { font-weight: 600; color: var(--text); }
input, select, textarea { background: #0f1324; color: var(--text); border: 1px solid rgba(255,255,255,0.12); padding: 12px; border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
textarea { resize: vertical; min-height: 80px; }
input:focus, select:focus, textarea:focus { border-color: rgba(108,159,255,0.6); box-shadow: 0 0 0 4px rgba(108,159,255,0.15); }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.form-status { min-height: 22px; color: var(--muted); font-size: 14px; }
.form-note { margin-top: 14px; }
.form-note summary { cursor: pointer; }

/* WhatsApp Link */
.whatsapp-link-container {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(108,159,255,0.1);
    text-align: center;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.08));
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Contact */
.contact-cards-container { 
    display: flex; 
    gap: 24px; 
    margin-top: 32px; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.contact-card { 
    background: #1A1A2E; 
    border-radius: 12px; 
    padding: 24px; 
    min-width: 280px; 
    flex: 1; 
    max-width: 320px; 
    text-align: left; 
}
.contact-name { 
    color: var(--text); 
    font-weight: 700; 
    font-size: 18px; 
    margin: 0 0 16px 0; 
    font-family: "Poppins", sans-serif; 
}
.contact-phone { 
    color: var(--text); 
    font-size: 16px; 
    margin: 0 0 12px 0; 
    font-weight: 400; 
}
.contact-email { 
    color: var(--text); 
    font-size: 16px; 
    margin: 0; 
    font-weight: 400; 
}
.contact-form-embed iframe { width: 100%; min-height: 380px; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; background: #0f1324; }

/* Footer */
.site-footer { border-top: 1px solid rgba(108,159,255,0.12); background: linear-gradient(180deg, rgba(10,11,16,0.4), rgba(10,11,16,0.8)); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 10px; min-height: 72px; }
.socials a { color: var(--muted); font-size: 20px; margin-left: 10px; transition: color .2s ease, text-shadow .2s ease; }
.socials a:hover { color: var(--text); text-shadow: 0 0 10px var(--secondary); }

/* Modal */
.modal { position: fixed; inset: 0; display: none; z-index: 100; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(3px); }
.modal-dialog { position: relative; z-index: 1; width: min(720px, 92vw); margin: 6vh auto; background: linear-gradient(180deg, rgba(18,21,38,0.97), rgba(18,21,38,0.9)); border: 1px solid rgba(108,159,255,0.2); border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); max-height: 88vh; overflow: hidden; display: flex; flex-direction: column; }
.modal-header { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.modal-title { margin: 0; font-family: "Orbitron", sans-serif; }
.modal-body { padding: 16px 18px; color: var(--muted); overflow-y: auto; }
.modal-footer { padding: 16px 18px; display: flex; justify-content: flex-end; border-top: 1px solid rgba(255,255,255,0.08); }
.modal-close { position: absolute; top: 8px; right: 12px; background: transparent; color: var(--text); border: none; font-size: 28px; cursor: pointer; }
.modal-content { display: grid; gap: 10px; }
.highlight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(251, 54, 0, 0.08));
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.12);
}
.highlight-block {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
}
.highlight-label {
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: 12px;
}
.highlight-value {
  font-weight: 700;
  color: var(--text);
}
.per-kill-controls {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(108,159,255,0.25);
  background: rgba(108,159,255,0.08);
}
.per-kill-controls.disabled {
  opacity: .55;
}
.per-kill-header,
.per-kill-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--text);
}
.per-kill-controls input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}
.per-kill-controls input[type="range"]:disabled {
  cursor: not-allowed;
}

/* Modal Sections Layout */
.modal-sections {
  display: grid;
  gap: 16px;
}

.modal-section {
  background: linear-gradient(135deg, rgba(18, 21, 38, 0.5), rgba(15, 18, 32, 0.5));
  border: 1px solid rgba(108, 159, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.modal-section:hover {
  border-color: rgba(108, 159, 255, 0.3);
  box-shadow: 0 8px 20px rgba(108, 159, 255, 0.1);
}

.section-title {
  margin: 0;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(108, 159, 255, 0.12), rgba(176, 103, 255, 0.08));
  border-bottom: 1px solid rgba(108, 159, 255, 0.2);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title i {
  color: var(--accent);
  font-size: 16px;
}

.section-content {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}

.info-row strong {
  color: var(--text);
  font-weight: 600;
}

.info-row a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-row a:hover {
  color: var(--accent);
}

.info-row.notes {
  border-top: 1px solid rgba(108, 159, 255, 0.15);
  padding-top: 10px;
  margin-top: 4px;
}

/* Prize Breakdown Styling */
.prize-breakdown-box {
  padding: 14px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108, 159, 255, 0.08), rgba(176, 103, 255, 0.06));
  border: 1px solid rgba(108, 159, 255, 0.25);
  box-shadow: inset 0 0 20px rgba(108, 159, 255, 0.08);
}

.prize-list {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.prize-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-left: 4px solid #fb3600;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.prize-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.prize-place {
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3px;
  min-width: 80px;
}

.prize-reward {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  text-align: right;
}

/* Responsive */
@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cards-container { 
    flex-direction: column; 
    align-items: center; 
    gap: 16px; 
  }
  .contact-card { 
    max-width: 100%; 
    width: 100%; 
  }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-list { position: absolute; right: 0; top: 60px; width: 240px; background: rgba(10,11,16,0.98); border: 1px solid rgba(108,159,255,0.12); border-radius: 10px; padding: 12px; display: none; flex-direction: column; }
  .nav-list.open { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* Popup Modal Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.popup-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-content {
  background: linear-gradient(135deg, rgba(18, 21, 38, 0.98), rgba(15, 18, 32, 0.98));
  border: 1px solid rgba(108, 159, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(108, 159, 255, 0.1);
  animation: slideUp 0.4s ease-out;
  text-align: center;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-header {
  margin-bottom: 20px;
}

.popup-icon {
  font-size: 60px;
  color: var(--success);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-body {
  margin-bottom: 30px;
}

.popup-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--text);
}

.popup-message {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 15px;
}

.popup-channels {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}

.channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(108, 159, 255, 0.08);
  border: 1px solid rgba(108, 159, 255, 0.2);
  border-radius: 12px;
  flex: 1;
  max-width: 140px;
  transition: all 0.3s ease;
}

.channel:hover {
  background: rgba(108, 159, 255, 0.15);
  border-color: rgba(108, 159, 255, 0.4);
  transform: translateY(-2px);
}

.channel i {
  font-size: 28px;
  color: var(--primary);
}

.channel span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.popup-footer {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  font-style: italic;
}

.popup-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.popup-close-btn {
  min-width: 140px;
}

/* Utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }



