:root {
    --primary: #0ea5e9;
    --secondary: #22c55e;
    --bg-light: #e0f2fe;
    --bg-dark: #0c4a6e;
    --divider: #0284c7;
    --text-dark: #0f172a;
    --text-muted: #475569;
  }

* { box-sizing: border-box; }

body {
    overflow-x: clip;
    width: 100%;
    font-family: 'Hind Siliguri', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0; padding: 0;
  }

a { color: var(--primary); text-decoration: none; }

a:hover { color: var(--secondary); }

/* HERO */
  .hero-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 55%, #0ea5e9 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
  }

.hero-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

.hero-section h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }

.hero-section p.lead {
    font-size: 1.12rem;
    opacity: 0.92;
    max-width: 620px;
  }

.hero-badge {
    display: inline-block;
    background: rgba(34,197,94,0.2);
    border: 1px solid var(--secondary);
    color: #bbf7d0;
    border-radius: 20px;
    padding: 0.25rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

.btn-hero-primary {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(34,197,94,0.35);
    transition: all 0.2s;
  }

.btn-hero-primary:hover { background: #16a34a; color: #fff; transform: translateY(-2px); }

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 0.72rem 1.8rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
  }

.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

.hero-stat-item { text-align: center; }

.hero-stat-item .stat-num { font-size: 1.8rem; font-weight: 700; color: #bbf7d0; }

.hero-stat-item .stat-label { font-size: 0.82rem; opacity: 0.8; }

/* SECTION HEADINGS */
  .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bg-dark);
    position: relative;
    padding-bottom: 0.6rem;
    margin-bottom: 0.5rem;
  }

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
  }

.section-title.left-align::after { left: 0; transform: none; }

.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; }

/* ADVANTAGE CARDS */
  .adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem 1.4rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(14,165,233,0.10);
    border-top: 3px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
  }

.adv-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(14,165,233,0.18); }

.adv-card .adv-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: #fff;
  }

.adv-card h5 { font-weight: 700; color: var(--bg-dark); margin-bottom: 0.5rem; }

.adv-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* GAME CARDS */
  .game-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(14,165,233,0.13);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    height: 100%;
  }

.game-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(14,165,233,0.22); }

.game-card img { width: 100%; height: 200px; object-fit: cover; display: block; }

.game-card-body {
    overflow-x: clip;
    width: 100%; padding: 1rem 1.2rem 1.2rem; }

.game-card-body h5 { font-weight: 700; color: var(--bg-dark); margin-bottom: 0.3rem; }

.game-card-body p { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 0.8rem; }

.btn-play {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 0.35rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s;
  }

.btn-play:hover { background: var(--secondary); color: #fff; }

/* COMPARISON TABLE */
  .compare-section { background: #fff; }

.compare-table { border-collapse: separate; border-spacing: 0; width: 100%; border-radius: 14px; overflow: hidden; }

.compare-table thead th { background: var(--bg-dark); color: #fff; padding: 1rem 1.2rem; font-size: 1rem; }

.compare-table thead th:first-child { border-radius: 14px 0 0 0; }

.compare-table thead th:last-child { border-radius: 0 14px 0 0; }

.compare-table tbody tr:nth-child(even) td { background: #f0f9ff; }

.compare-table tbody td { padding: 0.85rem 1.2rem; border-bottom: 1px solid #bae6fd; font-size: 0.93rem; color: var(--text-dark); }

.compare-table tbody tr:last-child td { border-bottom: none; }

.icon-yes { color: var(--secondary); font-size: 1.1rem; }

.icon-no { color: #ef4444; font-size: 1.1rem; }

/* STEPS */
  .steps-section { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

.step-num {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 12px rgba(14,165,233,0.30);
  }

.step-content h5 { font-weight: 700; color: var(--bg-dark); margin-bottom: 0.3rem; }

.step-content p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

/* PRICING */
  .pricing-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 18px rgba(14,165,233,0.10);
    border: 2px solid transparent;
    transition: all 0.2s;
    height: 100%;
    position: relative;
  }

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(14,165,233,0.22);
    transform: scale(1.04);
  }

.pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    padding: 0.2rem 1.1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
  }

.pricing-card h4 { font-weight: 700; color: var(--bg-dark); margin-bottom: 0.5rem; }

.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--primary); }

.pricing-price span { font-size: 0.9rem; color: var(--text-muted); }

.pricing-features { list-style: none; padding: 0; margin: 1.2rem 0; text-align: left; }

.pricing-features li { padding: 0.4rem 0; color: var(--text-dark); font-size: 0.92rem; }

.pricing-features li i { color: var(--secondary); margin-right: 0.5rem; }

.btn-pricing {
    display: block;
    background: var(--primary);
    color: #fff;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    transition: background 0.2s;
    margin-top: auto;
  }

.btn-pricing:hover { background: var(--secondary); color: #fff; }

.btn-pricing.secondary { background: #e0f2fe; color: var(--bg-dark); }

.btn-pricing.secondary:hover { background: var(--primary); color: #fff; }

/* RESPONSIBLE GAMING */
  .rg-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
    color: #fff;
  }

.rg-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(4px);
  }

.rg-card i { font-size: 2rem; color: #bbf7d0; margin-bottom: 0.8rem; }

.rg-card h5 { font-weight: 700; color: #e0f2fe; margin-bottom: 0.4rem; }

.rg-card p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin: 0; }

/* PRIVACY NOTICE */
  .privacy-notice {
    background: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 10px rgba(14,165,233,0.10);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

.privacy-notice i { color: var(--primary); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.privacy-notice p { margin: 0; color: var(--text-dark); font-size: 0.92rem; line-height: 1.6; }

.privacy-notice a { color: var(--primary); font-weight: 600; }

/* TESTIMONIALS */
  .testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 14px rgba(14,165,233,0.10);
    border-top: 3px solid var(--secondary);
  }

.testimonial-card .stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.7rem; }

.testimonial-card p { color: var(--text-dark); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1rem; }

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.author-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem;
  }

.author-info .name { font-weight: 700; color: var(--bg-dark); font-size: 0.9rem; }

.author-info .role { color: var(--text-muted); font-size: 0.8rem; }

/* ARTICLE TEXT */
  .article-section { background: #fff; }

.article-text { max-width: 820px; margin: 0 auto; color: var(--text-dark); font-size: 0.97rem; line-height: 1.85; }

.article-text h2 { font-size: 1.5rem; font-weight: 700; color: var(--bg-dark); margin-top: 2rem; margin-bottom: 0.8rem; }

.article-text h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-top: 1.5rem; margin-bottom: 0.6rem; }

.article-text p { margin-bottom: 1rem; }

/* MAP */
  .map-section { background: var(--bg-light); }

.map-container { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(14,165,233,0.15); border: 3px solid var(--divider); }

/* DIVIDER */
  .ocean-divider { height: 4px; background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent); }

/* ALERT BANNER */
  .age-alert {
    background: #fef3c7;
    border: 1.5px solid #f59e0b;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: #78350f;
  }

.age-alert i { font-size: 1.2rem; color: #f59e0b; flex-shrink: 0; }

/* IMAGE DISPLAY */
  .content-img {
    display: block;
    margin: 1.5rem auto;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(14,165,233,0.15);
  }

/* UTILITIES */
  .bg-ocean { background-color: var(--bg-light); }

.bg-white-section { background: #fff; }

.text-primary-custom { color: var(--primary) !important; }

.text-secondary-custom { color: var(--secondary) !important; }

section { padding: 60px 0; }

@media (max-width: 768px) {
.hero-section { padding: 50px 0 40px; }

.hero-section h1 { font-size: 1.6rem; }

.pricing-card.featured { transform: scale(1); }

.hero-stats { gap: 1.5rem; }

.hero-stat-item .stat-num { font-size: 1.4rem; }

section { padding: 40px 0; }
}
