* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #02110c;
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "Result Games Result Games Result Games ";
  position: fixed;
  inset: 0;
  opacity: 0.04;
  font-size: 48px;
  line-height: 80px;
  color: #2affb3;
  pointer-events: none;
  transform: rotate(-20deg);
}

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

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

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

.btn {
  background: #063528;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  border-radius: 10px;
  color: #c8fff0;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
}

.btn:hover {
  background: #0a4d3a;
}

.btn.primary {
  background: #19e38c;
  color: #003d2b;
  font-weight: 600;
  border: none;
}

.hero .btn.primary {
  padding: 14px 36px;
  font-size: 18px;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(25, 227, 140, 0.3);
  transition: transform 0.15s ease, background 0.2s;
}

.hero .btn.primary:hover {
  transform: scale(1.02);
  background: #2afc9a;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  gap: 40px;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-text p {
  color: #8fb3a6;
  margin-bottom: 30px;
  font-size: 15px;
}

.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
}

.highlight {
  margin-top: 60px;
  background: linear-gradient(135deg, #19e38c, #0a7c59);
  padding: 30px 40px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #003d2b;
  box-shadow: 0 20px 80px rgba(25, 227, 140, 0.25);
}

.section {
  margin-top: 120px;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-sub {
  text-align: center;
  color: #8fb3a6;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.5;
  font-size: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: linear-gradient(145deg, #04231b, #02110c);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #19e38c22, transparent 60%);
  opacity: 0.6;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.card p {
  line-height: 1.55;
  color: #c0dfd3;
  font-size: 0.9rem;
}

.cta {
  margin-top: 100px;
  background: #041a14;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6fa596;
  font-size: 13px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-nav a {
  color: #6fa596;
  text-decoration: none;
  transition: 0.2s;
}

.footer-nav a:hover {
  color: #c8fff0;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  color: #6fa596;
}

.dropdown-menu {
  position: absolute;
  bottom: 28px;
  left: 0;
  background: #06261d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 190px;
}

.dropdown-menu a {
  color: #c8fff0;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 6px;
  display: block;
}

.dropdown-menu a:hover {
  background: #0a4d3a;
}

.dropdown.open .dropdown-menu {
  display: flex;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 38px;
  }
  .hero .btn.primary {
    padding: 12px 28px;
    font-size: 16px;
  }
}