:root {
  --navy: #0a0f1e;
  --black: #000011;
  --blue: #00d4ff;
  --green: #00ff88;
  --white: #ffffff;
  --whatsapp: #25D366;
  --shadow-light: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-wa: 0 4px 16px rgba(37,211,102,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
  font-family: system-ui, -apple-system, sans-serif; 
  line-height: 1.6; 
  color: var(--white); 
  background: var(--navy); 
  overflow-x: hidden; 
}

.hero-wa-sticky {
  position: fixed;
  bottom: -365px;
  right: -205px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-wa);
  transition: all 0.2s ease;
  text-decoration: none;
  color: white;
}

.hero-wa-sticky:hover { 
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4); 
}

.trust-bar { 
  background: rgba(0,0,0,0.5); 
  padding: 10px 16px; 
  text-align: center; 
  color: var(--white); 
  font-size: 12px; 
  letter-spacing: 0.5px; 
}

.navbar { 
  background: rgba(10,15,30,0.9); 
  padding: 12px 16px; 
  position: relative;
}

.nav-container { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.nav-logo { 
  font-size: clamp(18px, 5vw, 24px); 
  font-weight: 700; 
  color: var(--green); 
}

.nav-links { 
  display: flex; 
  gap: 24px; 
  list-style: none; 
}

.nav-links a { 
  color: var(--white); 
  text-decoration: none; 
  font-weight: 500; 
  font-size: 15px; 
  transition: color 0.3s; 
}

.nav-links a:hover { color: var(--green); }

.hamburger { 
  display: flex; 
  flex-direction: column; 
  gap: 3px; 
  cursor: pointer; 
}

.hamburger span { 
  width: 24px; 
  height: 2px; 
  background: var(--white); 
  transition: 0.3s; 
}

.nav-open .hamburger span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

.hero {
  height: 100vh;
  background: url('../esports.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(10,15,30,0.5) 0%, rgba(0,0,0,0.8) 80%);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-logo {
  position: absolute;
  top: 25px;
  left: 20px;
  font-size: clamp(20px, 6vw, 28px);
  color: var(--green);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.hero-cta {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--whatsapp);
  color: white;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.hero-cta:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  background: #128C7E;
}

section { 
  padding: 60px 20px; 
  max-width: 1000px; 
  margin: 0 auto; 
}

h2 { 
  font-size: clamp(2rem, 5vw, 3rem); 
  text-align: center; 
  margin-bottom: 50px; 
  color: var(--green); 
  font-weight: 600; 
}

.grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 30px; 
  max-width: 900px;
  margin: 0 auto;
}

.card { 
  background: rgba(255,255,255,0.08); 
  padding: 40px 30px; 
  border-radius: 24px; 
  backdrop-filter: blur(20px); 
  border: 1px solid rgba(255,255,255,0.12); 
  text-align: center; 
  transition: all 0.3s ease; 
}

.card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); 
}

.card h3 { 
  color: var(--green); 
  margin-bottom: 20px; 
  font-size: 1.6rem; 
  font-weight: 600; 
}

.card p { 
  opacity: 0.92; 
  line-height: 1.8; 
  font-size: 16px; 
}

ul, ol { list-style: none; padding-left: 0; text-align: left; }

ul li, ol li { 
  padding: 12px 0; 
  padding-left: 36px; 
  position: relative; 
  opacity: 0.92; 
  font-size: 16px; 
}

ul li::before { 
  content: '▶'; 
  color: var(--green); 
  position: absolute; 
  left: 0; 
  font-size: 1.2rem; 
}

ol { counter-reset: step-counter; }
ol li::before { 
  content: counter(step-counter) "."; 
  counter-increment: step-counter; 
  color: var(--blue); 
  font-weight: 700; 
  position: absolute; 
  left: 0; 
}

.identity-block {
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,255,136,0.1));
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
}

.identity-block h3 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 20px;
}

.identity-block p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.identity-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.identity-contacts a {
  padding: 12px 24px;
  background: var(--whatsapp);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  box-shadow: var(--shadow-wa);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.identity-contacts a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.disclaimer-section { 
  background: rgba(255,80,80,0.1); 
  border: 2px solid rgba(255,120,120,0.4); 
  border-radius: 24px; 
  padding: 50px; 
  margin: 40px 0; 
}

.faq-item { 
  border: 1px solid rgba(255,255,255,0.15); 
  border-radius: 20px; 
  overflow: hidden; 
  margin-bottom: 25px;
}

.faq-question { 
  background: rgba(0,212,255,0.2); 
  padding: 25px 30px; 
  cursor: pointer; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  font-weight: 600; 
  font-size: 16px; 
  transition: background 0.3s; 
}

.faq-answer { 
  padding: 0 30px; 
  max-height: 0; 
  overflow: hidden; 
  transition: all 0.4s; 
  background: rgba(255,255,255,0.05); 
}

.faq-open .faq-answer { padding: 30px; max-height: 300px; }

form .grid input, form .grid textarea { 
  width: 100%; 
  padding: 18px; 
  border-radius: 16px; 
  border: 1px solid rgba(255,255,255,0.25); 
  background: rgba(255,255,255,0.08); 
  color: var(--white); 
  font-size: 16px; 
  margin-bottom: 18px; 
  font-family: inherit; 
  transition: all 0.3s; 
}

form input:focus, form textarea:focus { 
  border-color: var(--green); 
  box-shadow: 0 0 0 3px rgba(0,255,136,0.2); 
  background: rgba(255,255,255,0.12); 
}

form button { 
  background: var(--whatsapp); 
  color: white; 
  border: none; 
  padding: 18px 36px; 
  border-radius: 30px; 
  font-weight: 600; 
  font-size: 16px; 
  cursor: pointer; 
  transition: all 0.3s; 
  width: 100%; 
  box-shadow: var(--shadow-wa);
}

form button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }

footer { 
  background: var(--black); 
  padding: 60px 20px 30px; 
  text-align: center; 
}

.footer-links { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 28px; 
  justify-content: center; 
  margin-bottom: 35px; 
}

.footer-links a { 
  color: var(--blue); 
  text-decoration: none; 
  font-weight: 500; 
  font-size: 15px; 
}

.footer-links a:hover { color: var(--green); }

.footer-identity {
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) { 
  .grid { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 40px; }
  .nav-links { display: flex !important; gap: 35px; }
  .hamburger { display: none; }
  .nav-logo { font-size: 28px; }
  .hero-logo { top: 30px; left: 50px; font-size: 36px; }
  section { padding: 100px 30px; }
}

@media (max-width: 768px) {
  .nav-open .nav-links { 
    display: flex !important; 
    flex-direction: column; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: rgba(10,15,30,0.98); 
    padding: 30px; 
    gap: 20px; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  }
  .hero-cta { bottom: 90px; padding: 12px 28px; font-size: 15px; }
  section { padding: 55px 18px; }
}
