/* assets/css/style.css - VOXZ EMPIRE OFFICIAL v4 */
:root{
  --bg-start: #07101a;
  --bg-end: #0b1220;
  --card: rgba(255,255,255,0.03);
  --muted: #bfc7d6;
  --primary: #2563eb;
  --accent: #3aa0ff;
  --glass: rgba(255,255,255,0.04);
  --white: #ffffff;
  --maxw: 1200px;
  --radius: 14px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Inter", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(circle at 10% 10%, rgba(37,99,235,0.03), transparent 10%), linear-gradient(180deg,var(--bg-start),var(--bg-end));
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  transition: background 0.45s ease, color 0.35s ease;
}

/* layout container */
.container{ max-width:var(--maxw); margin:0 auto; padding:0 20px; }

/* header */
.header{
  position:sticky; top:0; z-index:1200;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(5,8,12,0.6), rgba(5,8,12,0.35));
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.header .inner{ display:flex; align-items:center; justify-content:space-between; height:84px; max-width:var(--maxw); margin:0 auto; padding:0 20px; }
.nav-left, .nav-right{ display:flex; gap:16px; align-items:center; }
.nav-item{ color:var(--muted); text-decoration:none; font-weight:600; padding:8px 10px; border-radius:10px; transition: all .18s ease; cursor:pointer; }
.nav-item:hover{ color:var(--accent); transform:translateY(-3px); }
.brand{ display:flex; flex-direction:column; align-items:center; gap:4px; }
.brand img{ width:68px; height:68px; object-fit:contain; border-radius:12px; padding:6px; background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border:1px solid rgba(255,255,255,0.02); box-shadow:0 8px 30px rgba(37,99,235,0.06); }
.brand .title{ font-weight:800; letter-spacing:2px; font-family:"Poppins",sans-serif; font-size:14px; }

/* dropdown fix */
.has-dropdown{ position:relative; }
.dropdown{ position:absolute; top:52px; left:0; display:none; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); padding:8px; border-radius:10px; box-shadow:0 12px 40px rgba(0,0,0,0.6); border:1px solid rgba(255,255,255,0.03); min-width:180px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{ display:block; animation: slideDown .18s ease; }
.dropdown a{ display:block; color:var(--muted); padding:8px 10px; text-decoration:none; border-radius:8px; }
.dropdown a:hover{ color:var(--accent); background:rgba(255,255,255,0.01); }

/* 🎯 Butonlar */
.cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.3rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg,#00eaff,#0078ff);
  color: #fff;
  box-shadow: 0 0 25px rgba(0,255,255,0.5);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(0,255,255,0.8);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: #00eaff;
  text-shadow: 0 0 15px #00eaff;
  transform: scale(1.05);
}

/* 🪩 Neon Orbs */
.neon-orbs span {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,255,0.4) 0%, transparent 70%);
  filter: blur(60px);
  animation: orbFloat 10s ease-in-out infinite alternate;
  z-index: 1;
}
.neon-orbs span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.neon-orbs span:nth-child(2) { bottom: 15%; right: 20%; animation-delay: 2s; }
.neon-orbs span:nth-child(3) { top: 50%; left: 70%; animation-delay: 4s; }

/* 🔁 Animations */
@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px) scale(1.03); }
}

@keyframes gradientMove {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes glowText {
  0% { text-shadow: 0 0 20px rgba(0,255,255,0.4); }
  100% { text-shadow: 0 0 50px rgba(0,255,255,1); }
}

@keyframes glowPulse {
  0%,100% { opacity: 0.9; text-shadow: 0 0 20px rgba(0,255,255,0.5); }
  50% { opacity: 1; text-shadow: 0 0 40px rgba(0,255,255,0.8); }
}

@keyframes orbFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-40px) scale(1.2); }
}

/* cta */
.cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:10px; }
.btn{ padding:12px 16px; border-radius:12px; text-decoration:none; font-weight:700; display:inline-flex; gap:8px; align-items:center; justify-content:center; border:1px solid transparent; transition: transform .18s ease, box-shadow .18s ease; }
.btn.primary{ background: linear-gradient(90deg,var(--primary),var(--accent)); color:white; box-shadow:0 12px 40px rgba(37,99,235,0.14); }
.btn.ghost{ background:transparent; border:1px solid rgba(255,255,255,0.06); color:var(--muted); }
.btn:hover{ transform:translateY(-4px); }

/* sections and cards */
.section{ padding:48px 0; }
.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin-top:18px; }
.card{ background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01)); border-radius:12px; padding:16px; border:1px solid rgba(255,255,255,0.02); transition: transform .18s ease, box-shadow .18s ease; display:flex; gap:12px; align-items:center; }
.card:hover{ transform:translateY(-6px); box-shadow: 0 20px 60px rgba(2,6,23,0.6); }

/* ekibimiz grid style (discord-like cards) */
.grid-cats{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:22px; align-items:stretch; }
.cat{
  border-radius:14px; padding:24px; min-height:160px;
  background: linear-gradient(180deg, rgba(255,255,255,0.016), rgba(0,0,0,0.02));
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center; gap:12px;
  transition: transform .18s ease, box-shadow .18s ease, background .3s ease;
  cursor:pointer;
}
.cat h4{ margin:0; font-family:"Poppins",sans-serif; }
.cat:hover{ transform:translateY(-8px); box-shadow:0 30px 80px rgba(37,99,235,0.08); background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(58,160,255,0.03)); }

/* category page header */
.cat-hero{ padding:40px 0; text-align:center; background: linear-gradient(180deg, rgba(37,99,235,0.02), rgba(0,0,0,0)); border-bottom:1px solid rgba(255,255,255,0.02); }
.cat-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; margin-top:18px; }

/* profile card */
.profile{
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(0,0,0,0.02));
  border-radius:12px; padding:12px; display:flex; gap:12px; align-items:center; border:1px solid rgba(255,255,255,0.02);
}
.avatar{ width:64px; height:64px; border-radius:12px; background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); display:flex; align-items:center; justify-content:center; font-weight:700; color:var(--white); font-family:"Poppins",sans-serif; }

/* footer centered vertical */
.site-footer{ padding:40px 20px; background: linear-gradient(180deg, rgba(2,6,23,0.95), rgba(5,8,12,1)); color:var(--muted); }
.footer-inner{ max-width:900px; margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; }
.footer-inner .logo-wrap{ padding:12px; border-radius:12px; background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); position:relative; }
.footer-inner .brand{ font-family:"Poppins",sans-serif; font-weight:800; letter-spacing:2px; font-size:16px; color:var(--white); }
.footer-inner p{ color:var(--muted); max-width:680px; margin:0; }
.footer-inner .menu{ display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-top:8px; }
.footer-inner .menu a{ color:var(--muted); text-decoration:none; font-weight:600; padding:6px 8px; border-radius:8px; }
.footer-inner .menu a:hover{ color:var(--accent); transform:translateY(-3px); }

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  position: relative;
  z-index: 10;
}

.socials a {
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
}

.socials a:hover {
  color: #00e0ff;
  transform: scale(1.2);
  text-shadow: 0 0 10px #00e0ff;
}

/* Kartın tıklama olayını sosyal ikonlarda devre dışı bırak */
.team-card .socials a {
  pointer-events: auto; /* linkleri aktif eder */
}

.team-card {
  position: relative;
  cursor: pointer;
}

.team-card * {
  pointer-events: none; /* her şeyi tıklanamaz yap */
}

.team-card .socials,
.team-card .socials a,
.team-card .socials i {
  pointer-events: auto !important; /* sadece sosyal linkler tıklanabilir */
}


/* === VOXZ EMPIRE - Mobil Alt Menü FIX (FINAL) === */

/* ===== VOXZ - FORCE mobile bottom bar (ezme garanti) ===== */
/* PUT THIS AT THE *END* OF assets/css/style.css */

.mobile-nav {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 72px !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  background: rgba(10,14,20,0.92) !important;
  backdrop-filter: blur(18px) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.45) !important;
  z-index: 2147483647 !important; /* en üst */
  padding-bottom: env(safe-area-inset-bottom) !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: transform .18s ease, opacity .18s ease !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* icon + label */
.mobile-nav a {
  color: #d0d6e0 !important;
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  font-size: 12px !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 12px !important;
  transition: transform .16s ease, background .16s ease, color .16s ease !important;
}

.mobile-nav a i {
  font-size: 20px !important;
  line-height: 1 !important;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #00c3ff; /* mavili parlak ana renk */
}

.mobile-nav a.active i {
  color: #00c3ff;
}


/* kesin gizle (masaüstü) */
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* mobilde üstteki nav'ı kapat (force) */
@media (max-width: 768px) {
  /* header içindeki sol/sağ menüleri zorla gizle */
  .nav-left, .nav-right, .nav-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  /* header'ın yüksekliği mobilde küçülsün ama logo ortada kalsın */
  .nav-container {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* içerik en alt mobilden etkilenmesin */
  main, .container, footer {
    padding-bottom: calc(90px + env(safe-area-inset-bottom)) !important;
  }
}

/* küçük dokunuşlar: kayboluyorsa yeniden görünmeye zorla */
html.mobile-nav-force .mobile-nav {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}


/* theme button */
.theme-toggle{ display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:12px; background: rgba(255,255,255,0.02); color:var(--muted); border:1px solid rgba(255,255,255,0.02); cursor:pointer; transition: all .18s; }
.theme-toggle:hover{ color:var(--accent); transform:translateY(-3px); }

/* animations */
@keyframes slideDown{ from{ transform:translateY(-6px); opacity:0 } to{ transform:translateY(0); opacity:1 } }
.fade-in-up{ opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.in-view{ opacity:1; transform: translateY(0); }

/* responsive */
@media (max-width:1024px){ .cards{ grid-template-columns: repeat(2,1fr); } .cat-grid{ grid-template-columns: repeat(2,1fr); } .cat{ padding:18px; } }
@media (max-width:768px){
  .nav-left, .nav-right{ display:none; }
  .brand img{ display:none; }
  .brand .title{ display:none; }
  .mobile-nav{ display:flex; }
  .grid-cats{ grid-template-columns: repeat(2,1fr); }
  .cat-grid{ grid-template-columns: repeat(2,1fr); }
  .cat{ min-height:120px; }
}
@media (max-width:420px){
  .grid-cats{ grid-template-columns: 1fr; }
  .cat-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(15, 20, 30, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

html[data-theme="light"] .header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 2rem;
}

.nav-section {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-item {
  color: #cfd8e3;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #00bfff;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00bfff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:hover::after {
  width: 100%;
}

/* --- Logo --- */
.nav-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.nav-logo {
  height: 90px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 0 25px rgba(0,191,255,0.3));
}

.nav-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 40px rgba(0,191,255,0.6));
}

/* --- Dropdown --- */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  display: none;
  flex-direction: column;
  background: rgba(10, 15, 25, 0.9);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.has-dropdown:hover .dropdown {
  display: flex;
}

.dropdown a {
  color: #ccc;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.dropdown a:hover {
  color: #00bfff;
}

/* --- Tema Butonu --- */
.theme-toggle {
  background: none;
  border: none;
  color: #cfd8e3;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.theme-toggle:hover {
  color: #00bfff;
  transform: rotate(25deg);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  .nav-section {
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-logo {
    height: 70px;
  }
}
/* === GLOBAL === */
body {
  background: #0b0e14;
  color: #d3dae3;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* === HEADER === */
.header {
  background: rgba(10, 14, 20, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: center;   /* ortala */
  align-items: center;
  height: 90px;
  padding: 0 60px;
  gap: 40px;                 /* menü elemanları arası boşluk */
  transform: translateX(-30px); /* az sola kaydır, 20-40px arası dene */
}


.nav-section {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  color: #d3dae3;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s ease;
}

.nav-item:hover {
  color: #1e90ff;
}

.nav-brand {
  text-align: center;
}

.nav-logo {
  height: 85px;
  filter: drop-shadow(0 0 15px rgba(30,144,255,0.4));
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

/* === DROPDOWN === */
.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #121721;
  border-radius: 10px;
  padding: 10px 0;
}

.has-dropdown:hover .dropdown {
  display: flex;
  flex-direction: column;
}

.dropdown a {
  padding: 8px 20px;
  color: #d3dae3;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown a:hover {
  color: #1e90ff;
}

/* === ULTRA HERO - VOXZ EMPIRE (sade + sabit logo sürümü) === */
.hero-neon {
  position: relative;
  text-align: center;
  padding: 120px 20px 100px;
  background: linear-gradient(180deg, #0b0f17 0%, #070b12 100%); /* sade koyu ton */
  overflow: hidden;
}

.hero-neon .hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,191,255,0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(50px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero-neon .hero-inner {
  position: relative;
  z-index: 2;
}

.hero-neon .hero-logo {
  width: 280px;
  margin: 0 auto 25px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0,191,255,0.6));
  animation: none;
}

.hero-neon .hero-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-shadow: 0 0 25px rgba(0,191,255,0.4);
  line-height: 1.3;
}

.hero-neon .hero-title span {
  background: linear-gradient(90deg, #00bfff, #4facfe, #00bfff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 3s infinite linear;
}

.hero-neon .hero-subtext {
  font-size: 24px !important;
  line-height: 2 !important;
  max-width: 850px !important;
  margin: 0 auto 40px !important;
  color: #e6f0ff !important;
  font-weight: 400 !important;
  text-shadow: 0 0 25px rgba(0,191,255,0.25);
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(90deg, #00bfff, #0077ff);
  color: white;
  box-shadow: 0 0 25px rgba(0,191,255,0.4);
}

.btn.primary:hover {
  box-shadow: 0 0 40px rgba(0,191,255,0.8);
  transform: translateY(-3px);
}

.btn.ghost {
  color: #00bfff;
  border: 1px solid rgba(0,191,255,0.3);
  background: rgba(0,191,255,0.04);
}

.btn.ghost:hover {
  background: rgba(0,191,255,0.1);
  transform: translateY(-3px);
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes energyFlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

.site-footer {
  text-align: center;
  background: #0d1118;
  padding: 60px 20px;
}

.site-footer .logo-wrap img {
  height: 80px;
  filter: drop-shadow(0 0 20px rgba(30,144,255,0.5));
}

.site-footer .brand {
  font-size: 22px;
  margin-top: 10px;
  color: #fff;
}

.site-footer p {
  max-width: 700px;
  margin: 10px auto;
  color: #9aa6bd;
}

.site-footer .menu {
  margin-top: 25px;
}

.site-footer .menu a {
  color: #9aa6bd;
  text-decoration: none;
  margin: 0 10px;
}

.site-footer .menu a:hover {
  color: #1e90ff;
}

.socials {
  margin-top: 20px;
}

.socials a {
  color: #9aa6bd;
  margin: 0 6px;
  font-size: 18px;
}

.socials a:hover {
  color: #1e90ff;
}

.copyright {
  margin-top: 12px;
  color: #9aa6bd;
  font-size: 13px;
}

@media (max-width: 768px) {
  .nav-section,
  .nav-left,
  .nav-right {
    display: none !important;
  }

  .nav-brand {
    display: flex;
    justify-content: center;
  }

  .nav-logo {
    height: 80px;
  }
}

main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section, .hero, .sponsors, .features, .featured-streamers, .join-us {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 12px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(2,6,23,0.6);
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 160px;
}
.feature-card i {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 10px;
}
.feature-card h3 { margin: 6px 0 8px; font-size: 18px; color: var(--white); }
.feature-card p { color: var(--muted); line-height: 1.45; }

.streamer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 12px;
}
.streamer-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(0,0,0,0.02));
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.streamer-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.streamer-card h4 { margin: 6px 0; color: var(--white); font-size: 16px; }
.streamer-card p { color: var(--muted); font-size: 14px; }

.join-us {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
  background: transparent !important;
}

.join-us .energy-bg {
  display: none;
}

.join-us .join-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease both;
}

.join-us .section-title {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow:
    0 0 20px rgba(0,191,255,0.5),
    0 0 40px rgba(0,191,255,0.2),
    0 0 80px rgba(0,191,255,0.1);
  animation: glowPulse 3s ease-in-out infinite;
}

.join-us .section-title span {
  background: linear-gradient(90deg, #00bfff, #3aa0ff, #2563eb, #00bfff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 5s linear infinite;
  font-weight: 900;
  letter-spacing: 1px;
}

.join-us p {
  color: #cfd6e3;
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 36px;
  opacity: 0.9;
  animation: fadeUp 1.5s ease both;
}

.join-us .cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeUp 1.8s ease both;
}

.join-us .btn {
  padding: 12px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.join-us .btn.primary {
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: #fff;
  box-shadow: 0 0 25px rgba(0,191,255,0.4);
}
.join-us .btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 40px rgba(0,191,255,0.7);
}

.join-us .btn.ghost {
  border: 1px solid rgba(0,191,255,0.4);
  color: #00bfff;
  background: transparent;
}
.join-us .btn.ghost:hover {
  background: rgba(0,191,255,0.1);
  color: #fff;
  box-shadow: 0 0 25px rgba(0,191,255,0.5);
  transform: translateY(-3px);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 20px rgba(0,191,255,0.4), 0 0 60px rgba(0,191,255,0.15); }
  50% { text-shadow: 0 0 40px rgba(0,191,255,0.8), 0 0 90px rgba(0,191,255,0.4); }
}

.featured-streamers {
  text-align: center;
  padding: 100px 20px;
  background: transparent;
  position: relative;
}

.featured-streamers .section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 0 0 20px rgba(0,191,255,0.3);
}

.featured-streamers .section-title span {
  background: linear-gradient(90deg,#00bfff,#3aa0ff,#2563eb,#00bfff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s linear infinite;
}

.streamer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.streamer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.streamer-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 60px rgba(0,191,255,0.4);
}

.streamer-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(0,191,255,0.25);
  margin-bottom: 16px;
  border: 2px solid rgba(0,191,255,0.4);
}

.streamer-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0;
}

.streamer-info p {
  color: #bfc7d6;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
  padding: 0 10px;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-links a {
  color: #00bfff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.2);
  text-shadow: 0 0 15px rgba(0,191,255,0.8);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.features {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  background: transparent;
}

.features .section-title {
  font-size: 36px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-bottom: 50px;
}

.features .section-title span {
  background: linear-gradient(90deg, #2563eb, #00bfff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease infinite alternate;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 35px 25px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,191,255,0.15), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(0,191,255,0.25);
  border-color: rgba(0,191,255,0.25);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(0,191,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00bfff;
  font-size: 30px;
  position: relative;
  box-shadow: inset 0 0 25px rgba(0,191,255,0.2);
  transition: all 0.4s ease;
}

.feature-card:hover .icon-wrap {
  box-shadow: 0 0 25px rgba(0,191,255,0.4), inset 0 0 25px rgba(0,191,255,0.2);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0.4px;
  text-align: center;
}

.feature-card p {
  font-size: 15px;
  color: #bfc7d6;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.feature-card {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.about {
  background: transparent;
  color: #d0d6e0;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.about .container {
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.about .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00bfff, #007bff, #00bfff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}

.about p {
  font-size: 17px;
  line-height: 1.9;
  color: #bfc7d6;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease both;
}

.about p strong {
  color: #00bfff;
  font-weight: 700;
}

.signature {
  margin-top: 50px;
  font-size: 18px;
  color: #9aa6bd;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about, .mission {
  background: transparent;
  color: #d0d6e0;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00bfff, #007bff, #00bfff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}

.about p, .mission p, .mission li {
  font-size: 17px;
  line-height: 1.9;
  color: #bfc7d6;
  margin-bottom: 22px;
}

.mission-list {
  list-style: none;
  margin: 40px auto;
  padding: 0;
  max-width: 800px;
  text-align: left;
}

.mission-list li {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid #00bfff;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.mission-list li:hover {
  background: rgba(0,191,255,0.08);
  transform: translateX(4px);
}

.signature {
  margin-top: 50px;
  font-size: 18px;
  color: #9aa6bd;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.vision {
  background: transparent;
  color: #d0d6e0;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.vision p {
  font-size: 17px;
  line-height: 1.9;
  color: #bfc7d6;
  margin-bottom: 22px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.vision-list {
  list-style: none;
  margin: 50px auto;
  padding: 0;
  max-width: 850px;
  text-align: left;
}

.vision-list li {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid #007bff;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.vision-list li:hover {
  background: rgba(0,123,255,0.08);
  transform: translateX(4px);
}

.vision strong {
  color: #fff;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #007bff, #00bfff, #007bff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.signature {
  margin-top: 50px;
  font-size: 18px;
  color: #9aa6bd;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.contact {
  background: transparent;
  padding: 100px 20px;
  color: #d3dae3;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #007bff, #00bfff, #007bff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
  background-size: 200% auto;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.contact-subtitle {
  color: #9aa6bd;
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  outline: none;
  transition: all .25s ease;
}

.contact-form select {
  color: #b5bed1;
  background: rgba(0,0,0,0.4);
}

.contact-form option {
  background-color: #0b0f19;
  color: #e5e8ef;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #00bfff;
  box-shadow: 0 0 15px rgba(0,191,255,0.25);
}

.btn-send {
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0,191,255,0.15);
}

.btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0,191,255,0.3);
}

.btn-send i {
  margin-right: 8px;
}

.contact-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aeb7c7;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-item i {
  color: #00bfff;
  font-size: 17px;
  transition: all 0.3s ease;
}

.contact-item a {
  color: #d3dae3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  transform: scale(1.2);
  color: #fff;
}

.contact-item:hover a {
  color: #00bfff;
}

.team-hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: transparent;
  color: #d8e0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-hero .section-title {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, #007bff, #00bfff, #007bff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientFlow 5s linear infinite;
  letter-spacing: 1px;
  text-align: center;
}

.team-hero .section-title span {
  color: #00bfff;
}

.subtitle {
  font-size: 18px;
  color: #a4b1c6;
  margin-top: 10px;
  letter-spacing: 0.4px;
  max-width: 650px;
  text-align: center;
}

.center-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.team-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 40px 0 100px;
  width: 100%;
  max-width: 1200px;
}

.team-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 191, 255, 0.1);
  border-radius: 18px;
  padding: 50px 30px;
  text-align: center;
  color: #cfd8e3;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(3px);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,191,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0,191,255,0.25);
  border-color: rgba(0,191,255,0.3);
}

.team-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(0,191,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00bfff;
  font-size: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0,191,255,0.2);
}

.team-card:hover .icon {
  background: rgba(0,191,255,0.2);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 35px rgba(0,191,255,0.4);
}

.team-card h4 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  text-align: center;
}

.team-card p {
  color: #a9b6c9;
  font-size: 15px;
  line-height: 1.7;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.team-card:hover h4 {
  color: #00bfff;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}

.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,191,255,0.4);
  box-shadow: 0 10px 40px rgba(0,191,255,0.15);
}

.avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid rgba(0,191,255,0.5);
  box-shadow: 0 0 20px rgba(0,191,255,0.15);
}

.team-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 4px;
}

.team-card .role {
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.team-card .bio {
  color: #aab4c3;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.team-card .socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-card .socials a {
  color: #9aa6bd;
  font-size: 18px;
  transition: all 0.3s ease;
}

.team-card .socials a:hover {
  color: #00bfff;
  transform: scale(1.2);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 25, 0.85);
  backdrop-filter: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px 40px;
  text-align: center;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 40px rgba(0,191,255,0.2);
  animation: fadeInUp 0.4s ease;
}

.modal-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,191,255,0.5);
  margin-bottom: 15px;
}

.modal-content h3 {
  color: #fff;
  font-size: 22px;
  margin: 10px 0 6px;
}

.modal-content p {
  color: #bfc7d6;
  font-size: 15px;
  line-height: 1.6;
}

.modal .socials {
  margin-top: 15px;
  justify-content: center;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #00bfff;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.ticket-image-container {
  text-align: center;
  margin-bottom: 30px;
}

.ticket-image {
  width: 200px;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

html, body, * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

img, svg, video {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

::selection { background: transparent; color: inherit; }

body { -webkit-user-drag: none; }

.team-section {
  text-align: center;
  padding: 60px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00ffcc33;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.pagination button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.25s ease;
}

.pagination button:hover {
  background: rgba(138, 43, 226, 0.5);
  transform: scale(1.1);
}

.pagination button.active {
  background: linear-gradient(90deg, #8a2be2, #00ffff);
  color: #000;
  font-weight: bold;
  transform: scale(1.15);
}

.lang-switch {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 999;
}

.lang-option {
  cursor: pointer;
  transition: all 0.25s ease;
  opacity: 0.6;
}

.lang-option:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lang-option.active {
  color: #00aaff;
  opacity: 1;
}

.divider {
  opacity: 0.4;
  user-select: none;
}

@media (max-width: 768px) {
  .lang-switch {
    left: 10px;
    font-size: 12px;
    padding: 5px 10px;
  }
}

.mobile-lang-switch {
  position: fixed;
  top: 12px;
  left: 15px;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-lang-option {
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.25s ease;
}

.mobile-lang-option:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.mobile-lang-option.active {
  color: #00aaff;
  opacity: 1;
}

.mobile-lang-switch .divider {
  opacity: 0.4;
  user-select: none;
}

@media (max-width: 768px) {
  .mobile-lang-switch {
    display: flex;
    top: 8px;
    left: 10px;
    font-size: 12px;
    padding: 4px 8px;
  }
}

::-webkit-scrollbar {
  width: 10px;
  background: rgba(15, 15, 25, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00eaff, #0077ff);
  border-radius: 10px;
  box-shadow: 0 0 10px #00eaff, 0 0 20px #0077ff;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00ffff, #00aaff);
  box-shadow: 0 0 15px #00ffff, 0 0 30px #00aaff;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #00eaff rgba(0, 0, 0, 0.4);
}
:root{
  --bg:#0a0a0c;
  --card:#101116;
  --muted:#9aa3b2;
  --text:#e9ecf1;
  --soft:#161822;
  --line:#2a2d36;
  --accent:#ff1a2d;
  --accent-2:#ff3b6b;
  --glow:0 0 24px rgba(255,26,45,.35),0 0 6px rgba(255,26,45,.45) inset;
  --radius:18px;
  --shadow:0 8px 30px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.03);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans";
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,26,45,.08), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255,59,107,.06), transparent 55%),
    linear-gradient(180deg, #0b0c11 0%, #090a0d 100%);
  color:var(--text);
}

.container{max-width:1200px;margin:0 auto;padding:48px 20px 96px}

.vxz-header{display:flex;align-items:center;justify-content:space-between;padding:20px;gap:16px;border-bottom:1px solid var(--line);background:rgba(12,12,15,.4);backdrop-filter:saturate(130%) blur(8px);position:sticky;top:0;z-index:10}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg, var(--accent), var(--accent-2));box-shadow:var(--glow)}
.brand-title{font-weight:800;font-size:20px;letter-spacing:.6px}
.brand-title span{color:var(--accent)}
.toolbar{display:flex;gap:10px;flex-wrap:wrap}
.search{background:var(--soft);border:1px solid var(--line);border-radius:12px;height:42px;padding:0 14px;color:var(--text);min-width:240px;outline:none}
.search::placeholder{color:#7d8596}
.chip{background:var(--soft);border:1px solid var(--line);color:var(--text);border-radius:12px;height:42px;padding:0 14px;cursor:pointer}
.chip:hover{border-color:var(--accent)}

.section{margin-top:34px}
.section-head,.sub-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.section-title{font-size:22px;font-weight:800;letter-spacing:.3px}
.sub-head h3{font-size:16px;font-weight:700;color:#e2e6ee}
.count-badge{font-size:12px;color:#c6cfdb;background:#12131a;border:1px solid var(--line);padding:6px 10px;border-radius:999px}

.team-grid{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));gap:14px}
@media (min-width:520px){.team-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:900px){.team-grid{grid-template-columns:repeat(3,1fr)}}
.team-card{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)) , var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.team-card::after{
  content:"";
  position:absolute;inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,26,45,.35), transparent 40%);
  opacity:.0; transition:opacity .25s ease;
}
.team-card:hover{transform:translateY(-4px);border-color:#3a3f4c;box-shadow:0 18px 40px rgba(0,0,0,.6)}
.team-card:hover::after{opacity:.6}
.avatar-img{width:64px;height:64px;border-radius:14px;object-fit:cover;border:1px solid #2d303a;box-shadow:inset 0 0 0 1px rgba(255,255,255,.03)}
.team-card h3{margin:10px 0 2px;font-size:18px}
.role{margin:0 0 8px;color:#cfd7e6;font-size:13px}
.bio{margin:0 0 12px;color:#9aa3b2;font-size:13px;line-height:1.4}
.more{
  height:36px;padding:0 12px;border-radius:10px;border:1px solid #3a3f4c;background:#151822;color:#e9ecf1;cursor:pointer
}
.more:hover{border-color:var(--accent);box-shadow:var(--glow)}

.placeholder{display:grid;place-items:center;border-style:dashed}
.placeholder .placeholder-inner{opacity:.7;color:#9aa3b2}

.modal{border:none;padding:0;background:transparent}
.modal::backdrop{background:rgba(0,0,0,.65);backdrop-filter:blur(2px)}
.modal-card{
  width:min(720px, 92vw);
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.modal-body{display:flex;gap:16px;padding:18px}
.modal-avatar{width:96px;height:96px;border-radius:16px;border:1px solid #2d303a;object-fit:cover}
.modal-info h3{margin:6px 0 4px;font-size:20px}
.modal-info p{margin:4px 0;color:#cfd7e6}
.modal-role{color:#ff9aa7}
.modal-close{
  position:absolute;right:14px;top:6px;
  font-size:28px;line-height:1;background:transparent;border:none;color:#cfd7e6;cursor:pointer
}

:root{
  --bg:#0b0c10;
  --card:#111317;
  --line:#1f2330;
  --text:#e8ecf3;
  --muted:#a7b0be;
  --accent:#ff2436;
}

body{ background:#0b0c10; }

.section { text-align:center; }
.section-title{
  color:#e8ecf3;
  letter-spacing:.3px;
}
.section-title::after{
  content:""; display:block; width:64px; height:2px;
  background:var(--accent); margin:8px auto 0; opacity:.9;
}

.team-grid{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:24px; margin-top:20px;
}
.team-card{
  width:260px;
  background:#111317;
  border:1px solid #1f2330;
  border-radius:18px;
  padding:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.45);
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-card::after{ display:none; }
.team-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(0,0,0,.55);
  border-color:#2a3140;
}

.avatar-img{
  width:80px; height:80px; object-fit:cover; border-radius:50%;
  border:1px solid #252a36; box-shadow:none; margin-bottom:10px;
}

.team-card h3{ margin:10px 0 2px; font-size:18px; color:#e8ecf3; }
.role{ margin:6px 0; font-weight:600; color:#f0b3b9; }
.bio{ font-size:14px; color:#a7b0be; }

.placeholder{ border-style:dashed; }
.placeholder .placeholder-inner{ color:#8b93a3; opacity:.9; }
.section-title {
  position: relative;
  font-size: 28px;
  font-weight: 800;
  color: #00aaff;
  text-shadow:
    0 0 3px rgba(0,170,255,0.7),
    0 0 8px rgba(0,140,255,0.4),
    0 0 14px rgba(0,140,255,0.3);
  letter-spacing: 1px;
  animation: softBlueNeon 3s ease-in-out infinite;
}

@keyframes softBlueNeon {
  0%, 100% {
    text-shadow:
      0 0 3px rgba(0,170,255,0.6),
      0 0 8px rgba(0,140,255,0.3),
      0 0 14px rgba(0,140,255,0.2);
  }
  50% {
    text-shadow:
      0 0 6px rgba(0,200,255,0.8),
      0 0 16px rgba(0,180,255,0.5),
      0 0 26px rgba(0,180,255,0.4);
  }
}

.avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.avatar-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(0,170,255,0.8);
  box-shadow:
    0 0 6px rgba(0,170,255,0.4),
    0 0 14px rgba(0,170,255,0.2);
  object-fit: cover;
  background-color: #0d1117;
  transition: all 0.3s ease;
}

.avatar-img:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 10px rgba(0,200,255,0.6),
    0 0 20px rgba(0,200,255,0.3);
}

.avatar-wrapper::after {
  content: "✔";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 26px;
  height: 26px;
  background-color: #00aaff;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0d1117;
  box-shadow: 0 0 6px rgba(0,170,255,0.6);
}

.role.strobe-blue {
  color: #00bfff;
  text-shadow:
    0 0 6px rgba(0, 180, 255, 0.9),
    0 0 16px rgba(0, 180, 255, 0.8),
    0 0 30px rgba(0, 180, 255, 0.6);
  animation: blueStrobe 0.18s infinite;
}

@keyframes blueStrobe {
  0%, 30% {
    opacity: 1;
    text-shadow:
      0 0 10px rgba(0, 180, 255, 1),
      0 0 25px rgba(0, 180, 255, 0.9),
      0 0 45px rgba(0, 180, 255, 0.8);
  }
  31%, 60% {
    opacity: 0.3;
    text-shadow: none;
  }
  61%, 100% {
    opacity: 1;
    text-shadow:
      0 0 6px rgba(0, 180, 255, 1),
      0 0 20px rgba(0, 180, 255, 0.9),
      0 0 40px rgba(0, 180, 255, 0.8);
  }
}
:root {
  --vxz-blue: #00aaff;
  --vxz-dark: #0b0e13;
}

.vxz-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, #00aaff 0%, #0066cc 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 0 20px rgba(0,170,255,0.5),
    inset 0 0 10px rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  z-index: 9999;
  animation: btnPulse 2.2s infinite;
}

.vxz-contact-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 30px rgba(0,170,255,0.9),
    inset 0 0 10px rgba(255,255,255,0.2);
}

.vxz-contact-btn i {
  font-size: 30px;
}

.vxz-contact-panel {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 260px;
  background: rgba(15, 20, 30, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,170,255,0.3);
  border-radius: 16px;
  box-shadow:
    0 0 25px rgba(0,170,255,0.35),
    inset 0 0 12px rgba(255,255,255,0.04);
  padding: 18px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9998;
}

.vxz-contact-panel.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.vxz-contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #e8ecf3;
  font-weight: 600;
  font-size: 18px;
}

.vxz-contact-header i {
  cursor: pointer;
  transition: color 0.3s ease;
}

.vxz-contact-header i:hover {
  color: var(--vxz-blue);
}

.vxz-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vxz-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #e8ecf3;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,170,255,0.1);
  transition: all 0.25s ease;
}

.vxz-link:hover {
  background: rgba(0,170,255,0.08);
  border-color: rgba(0,170,255,0.4);
  transform: translateY(-2px);
  color: var(--vxz-blue);
}

.vxz-link.tg i { color: #29a9eb; }
.vxz-link.dc i { color: #5865f2; }
.vxz-link.wa i { color: #25d366; }

@keyframes btnPulse {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(0,170,255,0.4),
      inset 0 0 10px rgba(255,255,255,0.1);
  }
  50% {
    box-shadow:
      0 0 35px rgba(0,170,255,0.8),
      inset 0 0 12px rgba(255,255,255,0.2);
  }
}
:root{
  --vxz-blue: #00aaff;
  --vxz-blue-2:#32c5ff;
  --vxz-bg: #0b0e13;
  --vxz-panel: rgba(15,20,30,.78);
  --vxz-line: rgba(0,170,255,.28);
  --vxz-soft: rgba(255,255,255,.06);
  --vxz-soft-2: rgba(255,255,255,.1);
  --vxz-radius:18px;
}

.vxz-contact-btn{
  position: fixed; bottom: 28px; right: 28px;
  width: 72px; height: 72px; border: none; border-radius: 50%;
  color:#fff; background: radial-gradient(35% 35% at 30% 30%, var(--vxz-blue) 0%, #0460bf 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 34px rgba(0,170,255,.45), inset 0 0 10px rgba(255,255,255,.12);
  cursor:pointer; z-index: 10010; isolation:isolate;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.vxz-contact-btn:hover{ transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 44px rgba(0,170,255,.6), inset 0 0 12px rgba(255,255,255,.18); }
.vxz-contact-btn:active{ transform: scale(.98); }
.vxz-contact-btn i{ font-size: 28px; }
.vxz-btn-glow{
  content:""; position:absolute; inset:-2px; border-radius:50%;
  pointer-events:none;
  background: conic-gradient(from 210deg, var(--vxz-blue), var(--vxz-blue-2), var(--vxz-blue));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  opacity:.75; filter: blur(.5px);
}
.vxz-pulse-dot{
  position:absolute; top:10px; right:10px; width:10px; height:10px; border-radius:50%;
  background: var(--vxz-blue);
  box-shadow: 0 0 10px rgba(0,170,255,.9), 0 0 18px rgba(0,170,255,.7);
  animation: vxzDot 1.4s infinite;
}
@keyframes vxzDot{
  0%,100%{ transform: scale(1); opacity:1 }
  50%{ transform: scale(.7); opacity:.6 }
}

.vxz-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  z-index: 10000;
}

.vxz-contact-panel{
  position: fixed; bottom: 110px; right: 28px; z-index: 10005;
  width: 320px; max-width: calc(100vw - 32px);
  border-radius: calc(var(--vxz-radius) + 2px);

  background:
    linear-gradient(var(--vxz-panel), var(--vxz-panel)) padding-box,
    linear-gradient(135deg, rgba(0,170,255,.65), rgba(50,197,255,.35)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 48px rgba(0,0,0,.55), 0 0 28px rgba(0,170,255,.18);
  transform: translateY(16px) scale(.98);
  opacity: 0; pointer-events: none;
  transition: transform .3s cubic-bezier(.22,.9,.26,1), opacity .25s ease;
}
.vxz-contact-panel[hidden]{ display: block }
.vxz-contact-panel.active{
  transform: translateY(0) scale(1); opacity:1; pointer-events:auto;
}
.vxz-contact-shell{ padding:16px; backdrop-filter: blur(14px); border-radius: var(--vxz-radius); }

.vxz-contact-header{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:10px; border-bottom:1px solid var(--vxz-soft);
}
.vxz-contact-header h3{
  margin:0; display:flex; align-items:center; gap:10px;
  font-size:18px; color:#e8ecf3; font-weight:700;
}
.vxz-icon-btn{
  width:36px; height:36px; border-radius:10px; border:1px solid var(--vxz-soft-2);
  background: rgba(255,255,255,.04); color:#e8ecf3; display:grid; place-items:center; cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.vxz-icon-btn:hover{ transform: rotate(90deg); border-color: var(--vxz-line); color: var(--vxz-blue); }

.vxz-contact-body{ display:flex; flex-direction:column; gap:12px; padding-top:12px; }
.vxz-link{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px; border-radius:12px;
  text-decoration:none; color:#e8ecf3; font-weight:600;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.vxz-link:hover{
  transform: translateY(-2px);
  border-color: var(--vxz-line);
  background: rgba(0,170,255,.09);
  color: var(--vxz-blue);
}
.vxz-link-left{ display:flex; align-items:center; gap:10px; }
.vxz-link i{ font-size:18px; }
.vxz-link.tg i{ color:#29a9eb; }
.vxz-link.dc i{ color:#5865f2; }
.vxz-link.wa i{ color:#25d366; }
.vxz-ext{ opacity:.8 }

.vxz-contact-footer{
  margin-top:12px; padding-top:10px; border-top:1px solid var(--vxz-soft);
  display:flex; justify-content:center;
}
.vxz-contact-footer small{ color:#aeb6c5 }

@media (max-width: 540px){
  .vxz-contact-panel{ right: 16px; left: 16px; width: auto; bottom: 96px; }
  .vxz-contact-btn{ bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce){
  .vxz-contact-btn, .vxz-contact-panel, .vxz-pulse-dot{ animation: none; transition: none; }
}

/* Sponsor Bölümü */
.sponsor-section {
  padding: 60px 0;
}

/* Üst Açıklama */
.sponsor-desc {
  max-width: 650px;
  margin: 0 auto 35px;
  font-size: 16px;
  color: #dde7ff; /* MAVİ TEMA UYUMLU */
  opacity: 0.9;
  line-height: 1.6;
  text-align: center;
}

/* GRID – Mükemmel hizalı */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
  justify-items: center;
}

/* Sponsor Kutu */
.sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: .25s ease;
  height: 95px;        /* TÜM KUTULAR AYNI HİZADA */
  padding: 0 15px;     /* YATAY BOŞLUK */
}

/* LOGO – EŞİT BOY, SIFIR KAYMA */
.sponsor img {
  height: 60px;        /* TÜM LOGOLAR EŞİT YÜKSEK */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hover */
.sponsor:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}


.vxz-footer__about {
  font-size: 15px;
  color: #cbe7f9;
  line-height: 1.9;
  max-width: 750px;
  margin: 20px auto;
  text-align: center;
  letter-spacing: 0.3px;
  opacity: 0.9;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: none;
}

.vxz-footer__about:hover {
  opacity: 1;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}
.brand.neon-blue {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00aaff;
  text-align: center;
  margin: 15px 0;
  text-transform: uppercase;
  text-shadow:
    0 0 5px #00aaff,
    0 0 10px #00aaff,
    0 0 20px #00ccff,
    0 0 40px #00ccff,
    0 0 80px rgba(0, 170, 255, 0.6);
  transition: all 0.3s ease;
  animation: neonPulse 3s infinite ease-in-out;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 6px #00aaff,
      0 0 15px #00ccff,
      0 0 30px #00e0ff,
      0 0 60px rgba(0, 200, 255, 0.6);
    color: #00ccff;
  }
  50% {
    text-shadow:
      0 0 2px #0099dd,
      0 0 8px #00bbff,
      0 0 15px #00ffff,
      0 0 30px rgba(0, 255, 255, 0.3);
    color: #99eaff;
  }
}
.copyright {
  position: relative;
  padding: 24px 0 38px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #d8ecfa;
  background: transparent;
}

.copyright span,
.copyright strong {
  font-size: 14px;
  letter-spacing: 0.5px;
}
.copyright strong {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 200, 255, 0.4);
}

.copyright::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 82%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 190, 255, 0.8) 25%,
    rgba(0, 255, 255, 1) 50%,
    rgba(0, 190, 255, 0.8) 75%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(0, 210, 255, 0.5),
    0 0 30px rgba(0, 210, 255, 0.25);
  opacity: 0.95;
}

.copyright::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 220, 255, 0.25) 0%,
    rgba(0, 220, 255, 0.1) 50%,
    transparent 100%
  );
  filter: blur(8px);
  opacity: 0.75;
}

.copyright:hover::after {
  box-shadow:
    0 0 14px rgba(0, 255, 255, 0.6),
    0 0 40px rgba(0, 255, 255, 0.3);
}

#heroTitle {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  text-align: center;
  letter-spacing: 5px;
  color: #00eaff;

  text-shadow:
    0 0 5px #00eaff,
    0 0 10px #00eaff,
    0 0 20px #00eaff,
    0 0 40px #00bfff,
    0 0 80px #00bfff,
    0 0 160px #00bfff;

  animation: flickerGlow 3s infinite;
}

@keyframes flickerGlow {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #00eaff,
      0 0 15px #00eaff,
      0 0 30px #00ffff,
      0 0 60px #00bfff,
      0 0 120px #00bfff;
  }

  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow:
      0 0 2px #0099cc,
      0 0 6px #00bfff,
      0 0 12px #00bfff;
  }

  70%, 90% {
    opacity: 0.85;
    text-shadow:
      0 0 10px #00ccff,
      0 0 25px #00eaff,
      0 0 50px #33ffff,
      0 0 90px #66ffff;
  }
}
.team-card { position: relative; }
.team-card .social-links { display:flex; justify-content:center; gap:10px; margin-top:10px; }
.team-card .social-links a {
  pointer-events: auto;
  color:#00bfff; font-size:1.4rem; transition:.25s;
}
.team-card .social-links a:hover {
  color:#fff; text-shadow:0 0 10px #00eaff, 0 0 25px #00bfff; transform:translateY(-2px);
}


.team-card::before,
.team-card::after { pointer-events: none; }
.hero-neon {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.hero-neon .container{
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-neon .hero-inner{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}


.hero-neon .hero-subtext{
  font-size: 18.5px;
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto 32px;
  color: #d8e5f6;
}


.hero-neon .cta{
  display: inline-flex;
  gap: 14px;
}
.hero-neon .cta a{
  padding: 12px 20px;
  font-size: 15.5px;
}


.hero-neon .hero-glow{ z-index: 1; pointer-events: none; }


@media (max-width: 640px){
  .hero-neon .container{ min-height: calc(100vh - 80px); }
  .hero-neon .hero-subtext{ font-size: 16.5px; line-height: 1.8; }
  .hero-neon .cta a{ padding: 11px 18px; font-size: 15px; }
}

html, body { user-select: none; }
img { -webkit-user-drag: none; user-drag: none; }
.contact-footer.pro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 900px){
  .contact-footer.pro { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .contact-footer.pro { grid-template-columns: 1fr; }
}

.contact-item.card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 16px 18px;
  border-radius: 14px;
  background: rgba(12,16,24,0.6);
  border: 1px solid rgba(120,160,255,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25) inset, 0 8px 24px rgba(0,0,0,0.18);
  overflow: hidden;
}

.contact-item.card::after{
  content:"";
  position:absolute; inset:-1px;
  border-radius:14px;
  background: radial-gradient(120px 80px at 15% 20%, rgba(0,180,255,.10), transparent 60%),
              radial-gradient(120px 80px at 85% 80%, rgba(120,160,255,.08), transparent 60%);
  pointer-events:none;
  mix-blend-mode:screen;
}

.contact-icon{
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0,190,255,.18), rgba(0,120,200,.14));
  border: 1px solid rgba(0,180,255,.3);
  box-shadow: 0 8px 18px rgba(0,180,255,.18);
  color: #bfe6ff;
  flex-shrink: 0;
}

.contact-body .label{
  display:block; font-size:12px; letter-spacing:.4px;
  color:#8fa6c6; margin-bottom:2px;
}
.contact-body .value{
  font-size:15.5px; color:#eaf2ff; text-decoration:none;
  word-break: break-all;
}
.contact-body .value:hover{ text-decoration: underline; }

.copy-btn, .map-btn{
  margin-left: auto;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(140,170,255,.28);
  background: rgba(20,26,38,.6);
  color:#dce6ff;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.copy-btn:hover, .map-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(0,190,255,.6);
  box-shadow: 0 10px 20px rgba(0,190,255,.18), 0 0 0 3px rgba(0,190,255,.08);
}

.contact-map{
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(120,160,255,0.2);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.contact-map iframe{
  width: 100%;
  height: 360px;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 600px){
  .contact-map iframe{ height: 300px; }
}
.social-only {
  text-align: center;
}

.social-contact-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  transition: all .25s ease;
}

.social-card i {
  font-size: 28px;
  margin-bottom: 10px;
}

.social-card span {
  font-weight: 600;
  font-size: 15px;
}

.social-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.contact-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.sponsor-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

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

.sponsor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all .25s ease;
}

.sponsor-card img {
  max-height: 60px;
  margin-bottom: 18px;
  opacity: .9;
}

.sponsor-card span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.sponsor-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
}
