@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0A0E1A;
  --bg2: #111827;
  --bg3: #1a2235;
  --accent: #00E5A0;
  --accent2: #7B2FFF;
  --accent3: #FF6B35;
  --text: #F0F4FF;
  --muted: #8A9BBE;
  --border: #1e2d4a;
  --card-bg: #111827;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

h1, h2, h3 {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: #c8d4ee;
}

ul, ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.4rem;
  color: #c8d4ee;
}

strong {
  color: var(--text);
  font-weight: 600;
}

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

.site-header {
  background: rgba(10, 14, 26, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-ghost {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.logo-text span:first-child {
  color: var(--accent);
}

.logo-text span:last-child {
  color: var(--text);
}

.header-badge {
  background: var(--accent2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bonus-banner {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a1040 50%, #0f1f3d 100%);
  border-bottom: 2px solid var(--accent);
  padding: 18px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0,229,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (min-width: 600px) {
  .bonus-banner-inner {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.bonus-label {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: var(--text);
}

.bonus-label strong {
  color: var(--accent);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.btn {
  display: inline-block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #00c47a);
  color: #0A0E1A;
  box-shadow: 0 4px 20px rgba(0, 229, 160, 0.4);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 229, 160, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent2), #5a18d4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 47, 255, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(123, 47, 255, 0.6);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 229, 160, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(0, 229, 160, 0.7); }
}

.main-content {
  padding: 48px 0 60px;
}

.hero-section {
  margin-bottom: 48px;
}

.hero-tag {
  display: inline-block;
  background: rgba(0,229,160,0.12);
  border: 1px solid rgba(0,229,160,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--accent);
}

.hero-intro {
  font-size: 1.05rem;
  color: #c8d4ee;
  max-width: 720px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}

.rating-chip {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-icon {
  font-size: 1.3rem;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating-value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.rating-value.green { color: var(--accent); }

.content-section {
  margin-bottom: 44px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 40px 0;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 20px 0;
}

table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

thead {
  background: var(--bg3);
}

th {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: #c8d4ee;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) {
  background: rgba(255,255,255,0.025);
}

.td-label {
  font-weight: 600;
  color: var(--text);
}

.td-green {
  color: var(--accent);
  font-weight: 600;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

@media (min-width: 600px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.2s;
}

.card:hover {
  border-color: rgba(0,229,160,0.4);
  transform: translateY(-3px);
}

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

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.banner-mid {
  background: linear-gradient(135deg, #13092e 0%, #0e1f3a 50%, #13092e 100%);
  border: 1px solid var(--accent2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin: 44px 0;
  position: relative;
  overflow: hidden;
}

.banner-mid::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(123,47,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.banner-mid h2 {
  margin-bottom: 8px;
}

.banner-mid p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.banner-mid .bonus-amount {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.faq-section {
  margin: 44px 0;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  transition: color 0.15s;
  gap: 12px;
}

.faq-item label:hover {
  color: var(--accent);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.25s, border-color 0.25s;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.faq-item input[type="checkbox"]:checked ~ label {
  color: var(--accent);
}

.faq-item input[type="checkbox"]:checked ~ label .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--accent);
}

.faq-item input[type="checkbox"]:checked ~ .faq-body {
  max-height: 320px;
  padding-bottom: 16px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px 0;
}

@media (min-width: 600px) {
  .pros-cons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pros-box, .cons-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
}

.pros-box {
  border: 1px solid rgba(0,229,160,0.3);
}

.cons-box {
  border: 1px solid rgba(255,107,53,0.3);
}

.pros-box h3 {
  color: var(--accent);
}

.cons-box h3 {
  color: var(--accent3);
}

.pros-box li::before {
  color: var(--accent);
}

.list-check li {
  list-style: none;
  padding-left: 0;
  position: relative;
}

.list-check li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

.list-x li {
  list-style: none;
  padding-left: 0;
}

.list-x li::before {
  content: '✗ ';
  color: var(--accent3);
  font-weight: 700;
}

.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 32px 0 24px;
  text-align: center;
}

.footer-logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-warning {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: #a0b0cc;
  max-width: 680px;
  margin: 12px auto 16px;
  line-height: 1.6;
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
}

.steps-list {
  counter-reset: steps;
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.steps-list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.steps-list li::before {
  content: counter(steps);
  background: var(--accent);
  color: #0A0E1A;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.badge {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

@media (max-width: 599px) {
  .rating-row {
    gap: 10px;
  }
  .rating-chip {
    padding: 8px 12px;
  }
  .banner-mid {
    padding: 24px 16px;
  }
  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}
