:root {
  --bg: #07111F;
  --block: rgba(14, 28, 47, 0.7);
  /* glassmorphism base */
  --block2: #12243a;
  --primary: #00C853;
  --secondary: #64DD17;
  --accent: #FFD600;
  --btn: #00B248;
  --text: #FFFFFF;
  --muted: #B9C7D8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --glow: 0 0 15px rgba(0, 200, 83, 0.5);
  /* Neon accent */
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% 0%, rgba(0, 200, 83, 0.14), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(255, 214, 0, 0.11), transparent 30%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* prevent bottom margin on images */
}

.container {
  width: min(100% - 32px, var(--max));
  margin: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.logo img {
  width: 150px;
  height: auto;
}

.logo span {
  font-size: 22px;
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu a {
  font-weight: 700;
  color: #dfefff;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.menu a:hover {
  color: var(--text);
  background: rgba(0, 200, 83, 0.15);
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
}

.hamb {
  display: none;
  border: 1px solid var(--line);
  background: rgba(14, 28, 47, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text);
  padding: 9px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--btn), var(--primary));
  color: #02140a;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  box-shadow: var(--glow);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 200, 83, 0.7);
}

.btn.alt {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.alt:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.hero {
  padding: 64px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(100, 221, 23, 0.35);
  background: rgba(100, 221, 23, 0.08);
  border-radius: 999px;
  color: #d9ffc8;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 0 10px rgba(100, 221, 23, 0.2);
}

h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.04;
  margin: 18px 0 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.14;
  margin: 0 0 16px;
}

h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead {
  font-size: 19px;
  color: #e8f5ee;
}

.hero-card,
.card,
.rank-card {
  background: var(--block);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover,
.rank-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 200, 83, 0.15);
  border-color: rgba(0, 200, 83, 0.3);
}

.hero-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.mine-visual {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.18), rgba(255, 214, 0, 0.12));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 18px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.tile {
  border-radius: 16px;
  background: #163252;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 28px;
  transition: transform 0.2s, background 0.3s;
}

.tile:hover {
  transform: scale(1.05);
}

.tile.win {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #05220d;
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.5);
  border-color: transparent;
}

.tile.gold {
  background: linear-gradient(135deg, #ffd600, #ffec70);
  color: #271f00;
  box-shadow: 0 0 15px rgba(255, 214, 0, 0.5);
  border-color: transparent;
}

.section {
  padding: 70px 0;
}

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.card .btn {
  margin-top: auto;
  /* Push button to bottom */
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 200, 83, 0.15);
  border: 1px solid rgba(0, 200, 83, 0.4);
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: inset 0 0 10px rgba(0, 200, 83, 0.2);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 28, 47, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  margin-top: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #eaffdc;
  background: rgba(0, 200, 83, 0.1);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  color: #dce8f6;
}

.rating {
  color: var(--accent);
  font-weight: 900;
  text-shadow: 0 0 5px rgba(255, 214, 0, 0.3);
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  background: rgba(255, 214, 0, 0.08);
  border-radius: 16px;
  color: #fff;
}

.steps {
  counter-reset: s;
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.step {
  position: relative;
  padding: 24px 24px 24px 80px;
  background: rgba(14, 28, 47, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.2s;
}

.step:hover {
  transform: translateX(5px);
  border-color: rgba(0, 200, 83, 0.3);
}

.step:before {
  counter-increment: s;
  content: counter(s);
  position: absolute;
  left: 20px;
  top: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #04150b;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

.faq details {
  background: rgba(14, 28, 47, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  transition: background 0.3s, border-color 0.3s;
}

.faq details[open] {
  background: rgba(0, 200, 83, 0.05);
  border-color: rgba(0, 200, 83, 0.3);
}

.faq summary {
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq p {
  margin-top: 16px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(5, 13, 24, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer .logo {
  margin-bottom: 10px;
}

.footer h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
}

.footer a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--primary);
}

.small {
  font-size: 13px;
  color: #9fb0c5;
}

.copyright {
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: rgba(11, 23, 40, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-box {
  width: 100%;
  max-width: 620px;
  background: #0E1C2F;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.2);
}

.screen {
  background: rgba(14, 28, 47, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.phone {
  max-width: 330px;
  margin: auto;
  border: 12px solid #182f4c;
  border-radius: 40px;
  padding: 20px;
  background: #07111F;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.phonebar {
  height: 6px;
  width: 80px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.app-list {
  display: grid;
  gap: 12px;
}

.app-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
  color: #dff;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 200, 83, 0.15);
  color: #baffc7;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.toc a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 999px;
  color: #d7e8fb;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

.toc a:hover {
  background: rgba(0, 200, 83, 0.2);
  border-color: rgba(0, 200, 83, 0.5);
  color: #fff;
}

.cta-band {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.23), rgba(255, 214, 0, 0.12));
  border: 1px solid rgba(100, 221, 23, 0.28);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: 40px 0;
  box-shadow: inset 0 0 20px rgba(0, 200, 83, 0.1);
}

@media (max-width: 900px) {

  .hero-grid,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hamb {
    display: block;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    background: rgba(8, 20, 38, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    text-align: center;
    padding: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding-top: 30px;
  }

  .hero-card {
    padding: 16px;
  }

  .mine-visual {
    gap: 6px;
    padding: 12px;
  }

  .tile {
    border-radius: 10px;
    font-size: 20px;
  }

  .btn,
  .btn.alt {
    width: 100%;
    margin-bottom: 12px;
  }

  .nav {
    padding: 12px 0;
  }

  .logo span {
    font-size: 20px;
  }

  .step {
    padding: 20px 20px 20px 60px;
  }

  .step:before {
    left: 12px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}