/* ===== RESET & BASE ===== */
*{margin:0;padding:0;box-sizing:border-box}
body{background:#0A0A12;overflow-x:hidden;font-family:'Rajdhani',sans-serif;color:#E8E6F0;line-height:1.6}
#root{min-height:100vh}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#0A0A12}
::-webkit-scrollbar-thumb{background:#9146FF;border-radius:3px}

/* ===== ANIMATIONS ===== */
@keyframes floatUp{
  0%{transform:translateY(100vh) scale(0);opacity:0}
  10%{opacity:1}
  90%{opacity:1}
  100%{transform:translateY(-10vh) scale(1);opacity:0}
}
@keyframes pulse{
  0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(255,0,110,0.6)}
  50%{opacity:.8;box-shadow:0 0 0 8px rgba(255,0,110,0)}
}
@keyframes gridScroll{
  0%{background-position:0 0}
  100%{background-position:0 60px}
}
@keyframes spinSlow{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
@keyframes slideIn{
  from{transform:translateX(100%)}
  to{transform:translateX(0)}
}
@keyframes spinnerAnim{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes shake{
  0%,100%{transform:translateX(0)}
  10%,30%,50%,70%,90%{transform:translateX(-4px)}
  20%,40%,60%,80%{transform:translateX(4px)}
}

/* ===== SCANLINES OVERLAY ===== */
body::after{
  content:'';
  position:fixed;top:0;left:0;width:100%;height:100%;
  background:repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,0.03) 2px,rgba(0,0,0,0.03) 4px);
  pointer-events:none;z-index:9999;
}

a{transition:all 0.3s ease}

/* ===== NAVBAR ===== */
.navbar{
  position:fixed;top:0;left:0;width:100%;z-index:100;
  padding:16px 32px;
  background:rgba(10,10,18,0.9);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(145,70,255,0.15);
  display:flex;justify-content:space-between;align-items:center;
  transition:all 0.3s;
}
.navbar.scrolled{padding:10px 32px;background:rgba(10,10,18,0.97)}
.navbar-brand{
  font-family:'Orbitron',sans-serif;font-size:14px;font-weight:900;
  color:#B975FF;letter-spacing:2px;
  text-shadow:0 0 20px rgba(145,70,255,0.5);
  flex-shrink:0;
}
.navbar-links{display:flex;gap:24px}
.navbar-links a{
  color:#8A87A0;text-decoration:none;
  font-family:'Rajdhani',sans-serif;font-weight:600;
  font-size:14px;letter-spacing:1px;text-transform:uppercase;
  white-space:nowrap;
}
.navbar-links a:hover{color:#B975FF}

/* Hamburger */
.hamburger{
  display:none;
  background:none;border:none;cursor:pointer;
  flex-direction:column;gap:5px;padding:4px;z-index:110;
}
.hamburger span{
  display:block;width:24px;height:2px;
  background:#B975FF;border-radius:2px;
  transition:all 0.3s ease;
}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* Mobile menu overlay */
.mobile-menu{
  display:none;
  position:fixed;inset:0;z-index:105;
  background:rgba(10,10,18,0.98);
  backdrop-filter:blur(20px);
  flex-direction:column;align-items:center;justify-content:center;gap:32px;
  animation:fadeIn 0.3s ease;
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  color:#E8E6F0;text-decoration:none;
  font-family:'Orbitron',sans-serif;font-size:18px;font-weight:700;
  letter-spacing:3px;text-transform:uppercase;
}
.mobile-menu a:hover{color:#B975FF}

/* ===== HERO ===== */
.hero{
  min-height:100vh;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  position:relative;overflow:hidden;padding:24px;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%,rgba(145,70,255,0.15) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%,rgba(0,245,212,0.08) 0%,transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 20%,rgba(255,0,110,0.08) 0%,transparent 50%);
}
.hero-grid{
  position:absolute;bottom:0;left:0;width:100%;height:60%;
  background:
    linear-gradient(to top,rgba(145,70,255,0.05) 1px,transparent 1px),
    linear-gradient(to right,rgba(145,70,255,0.05) 1px,transparent 1px);
  background-size:60px 60px;
  transform:perspective(500px) rotateX(60deg);
  transform-origin:bottom center;
  -webkit-mask-image:linear-gradient(to top,rgba(0,0,0,0.6) 0%,transparent 80%);
  animation:gridScroll 8s linear infinite;
}
.hero-content{
  position:relative;z-index:2;text-align:center;
  max-width:700px;width:100%;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 18px;border-radius:50px;
  border:1px solid rgba(145,70,255,0.3);
  background:rgba(145,70,255,0.08);
  margin-bottom:24px;
  font-family:'Share Tech Mono',monospace;font-size:12px;
  color:#B975FF;letter-spacing:2px;
}
.hero-badge .live-dot{
  width:8px;height:8px;border-radius:50%;
  background:#FF006E;
  animation:pulse 1.5s ease infinite;
  display:inline-block;
}
.hero-title{
  font-family:'Orbitron',sans-serif;
  font-size:clamp(2.2rem,8vw,5.5rem);
  font-weight:900;line-height:1;margin-bottom:12px;
}
.hero-title span{
  background:linear-gradient(135deg,#B975FF 0%,#00F5D4 50%,#FF006E 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  filter:drop-shadow(0 0 30px rgba(145,70,255,0.4));
}
.hero-subtitle{
  font-family:'Rajdhani',sans-serif;
  font-size:clamp(0.95rem,2.5vw,1.3rem);
  font-weight:300;color:#8A87A0;
  max-width:560px;margin:0 auto 28px;letter-spacing:1px;
}
.hero-buttons{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 28px;border-radius:4px;
  font-family:'Rajdhani',sans-serif;font-size:15px;font-weight:700;
  text-decoration:none;text-transform:uppercase;letter-spacing:2px;
  background:#9146FF;color:#fff;border:none;cursor:pointer;
  box-shadow:0 0 20px rgba(145,70,255,0.3);
}
.btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 28px;border-radius:4px;
  font-family:'Rajdhani',sans-serif;font-size:15px;font-weight:700;
  text-decoration:none;text-transform:uppercase;letter-spacing:2px;
  background:transparent;color:#00F5D4;border:1px solid #00F5D4;
  cursor:pointer;
}

/* ===== SECTION HEADERS ===== */
.section-header{text-align:center;margin-bottom:48px}
.section-header .tag{
  font-family:'Share Tech Mono',monospace;font-size:12px;
  color:#00F5D4;letter-spacing:4px;
}
.section-header h2{
  font-family:'Orbitron',sans-serif;
  font-size:clamp(1.5rem,4vw,2rem);
  font-weight:900;letter-spacing:2px;
  background:linear-gradient(135deg,#E8E6F0,#B975FF);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.section-header .line{
  width:60px;height:3px;margin:12px auto 0;
  background:linear-gradient(90deg,#9146FF,#00F5D4);
  border-radius:2px;box-shadow:0 0 10px rgba(145,70,255,0.4);
}

/* ===== ABOUT ===== */
.section-about{padding:80px 24px}
.about-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:48px;align-items:center;max-width:1100px;margin:0 auto;
}
.about-avatar{
  width:280px;height:280px;margin:0 auto;position:relative;
}
.about-avatar .ring{
  position:absolute;inset:-10px;border-radius:50%;
  border:2px solid #9146FF;
  animation:spinSlow 6s linear infinite;opacity:0.6;
}
.about-avatar .inner{
  width:100%;height:100%;border-radius:50%;
  background:linear-gradient(135deg,rgba(145,70,255,0.2),rgba(0,245,212,0.1));
  display:flex;align-items:center;justify-content:center;
  font-family:'Orbitron',sans-serif;font-size:48px;
  color:#B975FF;text-shadow:0 0 40px rgba(145,70,255,0.6);
}
.about-title{
  font-family:'Orbitron',sans-serif;font-size:18px;
  color:#B975FF;margin-bottom:12px;
}
.about-text{color:#8A87A0;font-size:16px;line-height:1.8;margin-bottom:16px}
.about-stats{display:flex;gap:32px;margin-top:24px;flex-wrap:wrap}
.about-stat-val{
  font-family:'Orbitron',sans-serif;font-size:26px;font-weight:900;
  color:#00F5D4;text-shadow:0 0 20px rgba(0,245,212,0.4);
}
.about-stat-label{
  font-size:13px;color:#8A87A0;text-transform:uppercase;letter-spacing:1px;
}

/* ===== SCHEDULE ===== */
.section-schedule{padding:80px 24px;background:rgba(12,8,24,1)}
.schedule-grid{
  display:grid;grid-template-columns:repeat(7,1fr);
  gap:10px;max-width:900px;margin:0 auto;
}
.schedule-card{
  background:rgba(15,15,30,0.85);
  border-radius:8px;padding:20px 10px;text-align:center;
}
.schedule-card.active{border:1px solid rgba(145,70,255,0.2)}
.schedule-card.off{border:1px solid rgba(145,70,255,0.08)}
.schedule-day{
  font-family:'Orbitron',sans-serif;font-size:12px;
  color:#B975FF;letter-spacing:2px;margin-bottom:8px;
}
.schedule-time{
  font-family:'Share Tech Mono',monospace;font-size:16px;
  color:#E8E6F0;margin-bottom:4px;
}
.schedule-game{font-size:13px;color:#8A87A0}
.schedule-off{color:#8A87A0;font-size:13px;opacity:0.5}

/* ===== GAMES ===== */
.section-games{padding:80px 24px}
.games-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;max-width:1100px;margin:0 auto;
}
.game-card{
  position:relative;border-radius:12px;overflow:hidden;
  aspect-ratio:3/4;border:1px solid rgba(145,70,255,0.1);
  transition:transform 0.4s ease,box-shadow 0.4s ease;
}
.game-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 20px 60px rgba(145,70,255,0.2);
}
.game-card img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;transition:transform 0.6s ease;
}
.game-card:hover img{transform:scale(1.08)}
.game-card .overlay{position:absolute;inset:0}
.game-card .info{
  position:absolute;bottom:0;left:0;right:0;padding:20px;
}
.game-card .info .cat{
  font-family:'Share Tech Mono',monospace;font-size:11px;
  color:#00F5D4;letter-spacing:2px;
}
.game-card .info .title{
  font-family:'Orbitron',sans-serif;font-size:16px;
  font-weight:700;letter-spacing:1px;color:#E8E6F0;
}
.game-card .info .desc{font-size:13px;color:#8A87A0;margin-top:6px}

/* ===== SETUP ===== */
.section-setup{padding:80px 24px;background:rgba(10,10,18,1)}
.setup-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:16px;max-width:1100px;margin:0 auto;
}
.setup-card{
  background:rgba(15,15,30,0.85);
  border:1px solid rgba(145,70,255,0.08);
  border-radius:8px;padding:20px;
  display:flex;align-items:flex-start;gap:16px;
}
.setup-icon{
  flex-shrink:0;width:48px;height:48px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;font-size:20px;
}
.setup-name{
  font-family:'Orbitron',sans-serif;font-size:13px;
  letter-spacing:1px;color:#E8E6F0;
}
.setup-desc{color:#8A87A0;font-size:14px;margin-top:2px}
.setup-tag{
  display:inline-block;margin-top:6px;padding:3px 8px;
  border-radius:3px;font-size:11px;
  font-family:'Share Tech Mono',monospace;
  background:rgba(0,245,212,0.08);color:#00F5D4;letter-spacing:1px;
}

/* ===== SOCIAL ===== */
.section-social{padding:100px 24px;text-align:center}
.social-subtitle{
  font-size:18px;color:#8A87A0;
  max-width:500px;margin:0 auto 32px;
}
.social-links{
  display:flex;justify-content:center;gap:16px;flex-wrap:wrap;
  max-width:1100px;margin:0 auto;
}
.social-link{
  display:flex;align-items:center;gap:10px;
  padding:14px 24px;border-radius:6px;
  background:rgba(15,15,30,0.85);
  color:#E8E6F0;text-decoration:none;
  font-family:'Rajdhani',sans-serif;font-weight:600;
  font-size:15px;letter-spacing:1px;
  transition:transform 0.2s ease,box-shadow 0.2s ease;
}
.social-link:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.3)}

/* ===== FOOTER ===== */
.site-footer{
  padding:24px;text-align:center;
  border-top:1px solid rgba(145,70,255,0.08);
  background:rgba(8,8,16,1);
}
.site-footer p{
  font-family:'Share Tech Mono',monospace;
  font-size:12px;color:#8A87A0;letter-spacing:2px;
}
.site-footer .heart{color:#FF006E}

/* ===== FAB BUTTON ===== */
.fab{
  position:fixed;bottom:24px;right:24px;z-index:200;
  width:56px;height:56px;border-radius:50%;
  border:2px solid rgba(145,70,255,0.4);
  background:rgba(15,15,30,0.95);color:#B975FF;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 30px rgba(145,70,255,0.3);
  backdrop-filter:blur(10px);font-size:24px;
}
.fab .online-dot{
  position:absolute;top:2px;right:2px;
  width:10px;height:10px;border-radius:50%;
  background:#00F5D4;border:2px solid #0A0A12;
}

/* ===== TOAST ===== */
.toast{
  position:fixed;bottom:90px;right:24px;z-index:400;
  padding:12px 24px;border-radius:8px;
  background:rgba(15,15,30,0.95);
  border:1px solid rgba(0,245,212,0.3);
  color:#E8E6F0;font-family:'Rajdhani',sans-serif;
  font-weight:600;font-size:14px;
  display:flex;gap:8px;align-items:center;
  box-shadow:0 8px 30px rgba(0,0,0,0.4);
  animation:fadeIn 0.3s ease;
}

/* ===== LOGIN SCREEN ===== */
.login-overlay{
  position:fixed;inset:0;z-index:500;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:center;
  padding:24px;animation:fadeIn 0.3s ease;
}
.login-box{
  width:100%;max-width:440px;border-radius:16px;overflow:hidden;
  border:1px solid rgba(145,70,255,0.15);
  background:linear-gradient(180deg,#0F0D1E 0%,#0A0A12 100%);
  box-shadow:0 24px 80px rgba(0,0,0,0.6);
}
.login-box.shaking{animation:shake 0.4s ease}
.login-topbar{
  display:flex;align-items:center;gap:6px;
  padding:10px 16px;
  background:rgba(255,255,255,0.02);
  border-bottom:1px solid rgba(145,70,255,0.08);
}
.login-topbar .dot{width:8px;height:8px;border-radius:50%;opacity:0.7}
.login-topbar .dot.r{background:#FF006E}
.login-topbar .dot.y{background:#FFB020}
.login-topbar .dot.g{background:#00F5D4}
.login-topbar .label{
  margin-left:8px;font-family:'Share Tech Mono',monospace;
  font-size:11px;color:#8A87A0;letter-spacing:2px;
}
.login-topbar .lock-badge{
  margin-left:auto;font-size:10px;color:#FF006E;
  font-family:'Share Tech Mono',monospace;
  animation:pulse 1s ease infinite;
}
.login-body{padding:32px 28px}
.login-icon{
  width:64px;height:64px;border-radius:16px;
  background:rgba(145,70,255,0.08);
  border:1px solid rgba(145,70,255,0.15);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
}
.login-heading{
  font-family:'Orbitron',sans-serif;font-size:18px;font-weight:900;
  color:#E8E6F0;text-align:center;letter-spacing:1px;margin-bottom:6px;
}
.login-desc{
  font-size:14px;color:#8A87A0;text-align:center;
  margin-bottom:24px;line-height:1.5;
}
.login-field{margin-bottom:16px}
.login-field label{
  display:flex;align-items:center;gap:6px;
  font-size:11px;font-weight:700;color:#8A87A0;
  text-transform:uppercase;letter-spacing:1.5px;margin-bottom:6px;
}
.login-field input{
  width:100%;padding:12px 14px;border-radius:8px;
  font-size:15px;border:1px solid rgba(145,70,255,0.15);
  background:rgba(255,255,255,0.03);color:#E8E6F0;
  font-family:'Rajdhani',sans-serif;outline:none;
}
.login-field input:disabled{background:rgba(255,255,255,0.01);opacity:0.5}
.login-field .pw-wrap{position:relative}
.login-field .pw-wrap input{padding-right:44px}
.login-field .pw-toggle{
  position:absolute;right:12px;top:50%;transform:translateY(-50%);
  border:none;background:transparent;cursor:pointer;
  color:#8A87A0;font-size:18px;
}
.login-error{
  display:flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:8px;
  background:rgba(255,0,110,0.06);border:1px solid rgba(255,0,110,0.15);
  color:#FF6B9D;font-size:13px;margin-bottom:16px;
}
.login-submit{
  width:100%;padding:14px 0;border-radius:8px;border:none;
  background:linear-gradient(135deg,#9146FF,#6B2FBF);
  color:#fff;font-family:'Rajdhani',sans-serif;
  font-size:16px;font-weight:700;letter-spacing:1px;
  cursor:pointer;display:flex;align-items:center;
  justify-content:center;gap:10px;
  box-shadow:0 4px 20px rgba(145,70,255,0.3);margin-bottom:16px;
}
.login-submit:disabled{opacity:0.5;cursor:not-allowed;background:#333;box-shadow:none}
.login-submit .spinner{
  width:18px;height:18px;border-radius:50%;
  border:2px solid rgba(255,255,255,0.3);border-top-color:#fff;
  display:inline-block;animation:spinnerAnim 0.6s linear infinite;
}
.login-footer{
  display:flex;align-items:center;justify-content:center;
  gap:6px;font-size:10px;color:#8A87A0;
  font-family:'Share Tech Mono',monospace;opacity:0.7;text-align:center;
}

/* ===== CMS PANEL ===== */
.cms-overlay{
  position:fixed;inset:0;z-index:300;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(8px);
  display:flex;justify-content:flex-end;
  animation:fadeIn 0.2s ease;
}
.cms-panel{
  width:min(600px,95vw);height:100vh;
  background:linear-gradient(180deg,#0D0B1A 0%,#0A0A12 100%);
  border-left:1px solid rgba(145,70,255,0.15);
  display:flex;flex-direction:column;overflow:hidden;
  box-shadow:-10px 0 60px rgba(0,0,0,0.5);
  animation:slideIn 0.3s ease;
}
.cms-header{
  padding:16px 20px;display:flex;justify-content:space-between;
  align-items:center;border-bottom:1px solid rgba(145,70,255,0.1);
  background:rgba(15,12,30,0.8);flex-shrink:0;
}
.cms-title{
  font-family:'Orbitron',sans-serif;font-size:13px;
  font-weight:900;color:#B975FF;letter-spacing:2px;
}
.cms-user{font-size:11px;color:#8A87A0;margin-top:1px}
.cms-user strong{color:#00F5D4}
.cms-btn-save{
  padding:8px 16px;border-radius:6px;
  border:1px solid rgba(145,70,255,0.3);
  background:rgba(145,70,255,0.15);color:#B975FF;
  font-family:'Rajdhani',sans-serif;font-weight:700;
  font-size:13px;cursor:pointer;letter-spacing:1px;
}
.cms-btn-save:disabled{opacity:0.6}
.cms-btn-logout{
  width:36px;height:36px;border-radius:8px;
  border:1px solid rgba(255,0,110,0.15);
  background:rgba(255,0,110,0.05);color:#FF006E;
  cursor:pointer;display:flex;align-items:center;
  justify-content:center;font-size:16px;
}
.cms-btn-close{
  width:36px;height:36px;border-radius:8px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);color:#8A87A0;
  cursor:pointer;font-size:16px;
  display:flex;align-items:center;justify-content:center;
}
.cms-tabs{
  display:flex;gap:0;
  border-bottom:1px solid rgba(145,70,255,0.1);
  overflow-x:auto;flex-shrink:0;
}
.cms-tab{
  padding:12px 16px;border:none;
  border-bottom:2px solid transparent;
  background:transparent;color:#8A87A0;
  cursor:pointer;font-family:'Rajdhani',sans-serif;
  font-size:13px;font-weight:600;white-space:nowrap;
}
.cms-tab.active{
  border-bottom-color:#9146FF;
  background:rgba(145,70,255,0.05);color:#B975FF;
}
.cms-content{flex:1;overflow-y:auto;padding:24px}

/* CMS Form elements */
.cms-label{
  display:block;font-size:11px;font-weight:700;color:#8A87A0;
  text-transform:uppercase;letter-spacing:1.5px;
  margin-bottom:4px;margin-top:10px;
}
.cms-input{
  width:100%;padding:9px 12px;border-radius:6px;
  border:1px solid rgba(145,70,255,0.15);
  background:rgba(255,255,255,0.03);color:#E8E6F0;
  font-family:'Rajdhani',sans-serif;font-size:14px;outline:none;
}
.cms-textarea{
  width:100%;padding:9px 12px;border-radius:6px;
  min-height:72px;resize:vertical;
  border:1px solid rgba(145,70,255,0.15);
  background:rgba(255,255,255,0.03);color:#E8E6F0;
  font-family:'Rajdhani',sans-serif;font-size:14px;
  outline:none;line-height:1.6;
}
.cms-select{
  width:100%;padding:9px 12px;border-radius:6px;
  border:1px solid rgba(145,70,255,0.15);
  background:#0D0B1A;color:#E8E6F0;
  font-family:'Rajdhani',sans-serif;font-size:14px;
  outline:none;cursor:pointer;
}
.cms-card{
  padding:16px;border-radius:8px;
  border:1px solid rgba(145,70,255,0.1);
  background:rgba(255,255,255,0.02);margin-bottom:12px;
}
.cms-card-header{
  display:flex;justify-content:space-between;
  align-items:center;margin-bottom:12px;
}
.cms-card-title{
  font-family:'Orbitron',sans-serif;font-size:11px;
  color:#B975FF;letter-spacing:2px;
}
.cms-card-remove{
  border:none;background:rgba(255,0,110,0.08);color:#FF006E;
  width:30px;height:30px;border-radius:6px;cursor:pointer;font-size:14px;
}
.cms-add-btn{
  width:100%;padding:12px 0;margin-top:4px;border-radius:8px;
  border:1px dashed rgba(145,70,255,0.25);
  background:transparent;color:#B975FF;
  font-family:'Rajdhani',sans-serif;font-weight:700;
  font-size:14px;cursor:pointer;letter-spacing:1px;
}
.cms-section-title{
  font-family:'Orbitron',sans-serif;font-size:16px;
  font-weight:700;color:#E8E6F0;margin-bottom:12px;
}

/* ===== PARTICLES ===== */
.particles{position:absolute;inset:0;z-index:1;pointer-events:none}

/* ================================================================
   RESPONSIVE — TABLET (≤ 900px)
   ================================================================ */
@media(max-width:900px){
  .navbar{padding:12px 20px}
  .navbar.scrolled{padding:8px 20px}
  .navbar-links{display:none}
  .hamburger{display:flex}

  .about-grid{
    grid-template-columns:1fr;
    gap:32px;text-align:center;
  }
  .about-avatar{width:200px;height:200px}
  .about-stats{justify-content:center}

  .schedule-grid{
    grid-template-columns:repeat(4,1fr);
    gap:8px;
  }

  .games-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }

  .setup-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .social-link{
    padding:12px 18px;font-size:14px;
  }

  .cms-panel{width:100vw}
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ================================================================ */
@media(max-width:600px){
  .navbar{padding:10px 16px}
  .navbar-brand{font-size:12px;letter-spacing:1px}

  .hero{padding:16px;min-height:90vh}
  .hero-badge{font-size:10px;padding:6px 14px}
  .hero-title{font-size:clamp(1.8rem,10vw,3rem);margin-bottom:8px}
  .hero-subtitle{font-size:14px;margin-bottom:20px}
  .hero-buttons{flex-direction:column;align-items:center;gap:10px}
  .hero-buttons a,.hero-buttons button{width:100%;max-width:260px;justify-content:center}

  .section-about,.section-schedule,.section-games,.section-setup,.section-social{
    padding:48px 16px;
  }
  .section-header{margin-bottom:32px}
  .section-header h2{font-size:clamp(1.2rem,5vw,1.6rem)}

  .about-avatar{width:160px;height:160px}
  .about-avatar .inner{font-size:32px}
  .about-title{font-size:16px}
  .about-text{font-size:14px}
  .about-stats{gap:20px}
  .about-stat-val{font-size:20px}

  .schedule-grid{
    grid-template-columns:repeat(2,1fr);
    gap:8px;
  }
  .schedule-card{padding:14px 8px}
  .schedule-day{font-size:11px}
  .schedule-time{font-size:14px}
  .schedule-game{font-size:12px}

  .games-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .game-card .info{padding:14px}
  .game-card .info .title{font-size:13px}
  .game-card .info .cat{font-size:10px}
  .game-card .info .desc{font-size:11px}

  .setup-grid{
    grid-template-columns:1fr;
    gap:10px;
  }
  .setup-card{padding:16px;gap:12px}

  .social-links{gap:10px}
  .social-link{
    padding:12px 16px;font-size:13px;
    flex:1 1 calc(50% - 10px);min-width:140px;justify-content:center;
  }

  .fab{width:48px;height:48px;bottom:16px;right:16px;font-size:20px}
  .toast{bottom:72px;right:16px;font-size:13px;padding:10px 18px}

  .login-box{max-width:100%;border-radius:12px}
  .login-body{padding:24px 20px}
  .login-heading{font-size:16px}

  .cms-panel{width:100vw}
  .cms-content{padding:16px}
  .cms-header{padding:12px 16px}
  .cms-tabs{-webkit-overflow-scrolling:touch}
}

/* ================================================================
   RESPONSIVE — VERY SMALL (≤ 380px)
   ================================================================ */
@media(max-width:380px){
  .hero-title{font-size:1.6rem}
  .schedule-grid{grid-template-columns:repeat(2,1fr)}
  .games-grid{grid-template-columns:1fr}
  .social-link{flex:1 1 100%}
}