/* ========================================
   CSS Variables - Merkur Slots Brand Colors
======================================== */
:root {
    --primary-green: #16c784;
    --primary-green-hover: #12a86e;
    --primary-green-light: #33e6a0;
    --primary-gold: #f5c542;
    --primary-gold-hover: #e0b030;
    --bg-dark: #020b08;
    --bg-dark2: #061d16;
    --bg-dark3: #0a2a1e;
    --bg-card: #0d2619;
    --text-white: #ffffff;
    --text-muted: #b7c4bd;
    --text-dark: #000000;
    --border-color: #1a3d2a;
    --border-hover: #2a5e42;
    --hero-gradient: linear-gradient(135deg, #061d16 0%, #0d3524 50%, #061d16 100%);
    --shadow-green: 0 0 30px rgba(22, 199, 132, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 30px;
    --transition: all 0.3s ease;
    --footer-bg: #020b08;
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-white);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-green-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Container
======================================== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-dark);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--primary-green-light);
    border-color: var(--primary-green-light);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 199, 132, 0.4);
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--text-dark);
    border-color: var(--primary-gold);
}

.btn-gold:hover {
    background: var(--primary-gold-hover);
    border-color: var(--primary-gold-hover);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--bg-dark3);
    color: var(--primary-green-light);
    border-color: var(--primary-green-light);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    border-color: rgba(255,255,255,0.7);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

/* ========================================
   Header
======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 11, 8, 0.97);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

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

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-gold);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
    background: var(--bg-dark3);
}

.nav-icon {
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   Breadcrumbs
======================================== */
.breadcrumbs {
    background: var(--bg-dark2);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.breadcrumbs-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumbs-item a {
    color: var(--primary-green);
}

.breadcrumbs-item:not(:last-child)::after {
    content: '›';
    color: var(--border-hover);
}

.breadcrumbs-item.active {
    color: var(--text-white);
}

/* ========================================
   Main
======================================== */
.main {
    min-height: calc(100vh - 68px);
}

/* ========================================
   Hero Sections
======================================== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-home {
    background: var(--hero-gradient);
    padding: 80px 0 70px;
    border-bottom: 1px solid var(--border-color);
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 60% 50%, rgba(22, 199, 132, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-home-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-bonus-badge {
    display: inline-block;
    background: rgba(245, 197, 66, 0.15);
    border: 1px solid rgba(245, 197, 66, 0.4);
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-home-title-styled {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-feature svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-disclaimer {
    font-size: 12px;
    color: rgba(183, 196, 189, 0.6);
}

/* Compact Hero for inner pages */
.hero-compact {
    background: var(--bg-dark2);
    border-bottom: 1px solid var(--border-color);
    padding: 48px 0;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(22, 199, 132, 0.1);
    border: 1px solid rgba(22, 199, 132, 0.3);
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-title span {
    color: var(--primary-green);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ========================================
   Trust Badges
======================================== */
.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 38, 25, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.trust-badge::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 800;
}

/* ========================================
   Content Sections
======================================== */
.content-section {
    padding: 64px 0;
}

.content-section-sm {
    padding: 40px 0;
}

.content-section-dark {
    background: var(--bg-dark2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 64px 0;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
}

.content-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    margin-top: 32px;
    line-height: 1.3;
}

.content-title:first-child {
    margin-top: 0;
}

h1 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

h2.content-title,
.content-card h2 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--text-white);
    margin-top: 36px;
    margin-bottom: 14px;
}

h3.qa-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 24px;
    margin-bottom: 10px;
}

.content-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-btn-wrap {
    margin: 24px 0;
}

.content-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-green);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.content-btn:hover {
    background: var(--primary-green-light);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 199, 132, 0.35);
}

/* ========================================
   Section Headings
======================================== */
.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
}

.section-label {
    display: inline-block;
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.divider {
    height: 1px;
    background: var(--border-color);
    margin: 48px 0;
}

/* ========================================
   Info Cards / Feature Cards
======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.info-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Icon Row Cards */
.icon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.icon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--transition);
}

.icon-card:hover {
    border-color: var(--border-hover);
}

.icon-card-ico {
    font-size: 26px;
    flex-shrink: 0;
}

.icon-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.icon-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   Tables
======================================== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

thead th {
    background: var(--bg-dark3);
    color: var(--primary-green);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

tbody td {
    padding: 13px 18px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    vertical-align: top;
}

tbody tr:hover td {
    background: rgba(22, 199, 132, 0.03);
}

tbody td:first-child {
    color: var(--text-white);
    font-weight: 500;
}

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

td.neutral {
    color: var(--primary-gold);
    font-weight: 600;
}

/* ========================================
   Steps
======================================== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: var(--transition);
}

.step-item:hover {
    border-color: var(--border-hover);
}

.step-number {
    background: var(--primary-green);
    color: var(--text-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Info Blocks
======================================== */
.info-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 20px 0;
}

.info-block.warning {
    border-color: rgba(245, 197, 66, 0.3);
    background: rgba(245, 197, 66, 0.04);
}

.info-block.warning h3,
.info-block.warning .block-title {
    color: var(--primary-gold);
}

.info-block.success {
    border-color: rgba(22, 199, 132, 0.3);
    background: rgba(22, 199, 132, 0.04);
}

.block-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 14px;
}

/* ========================================
   Lists
======================================== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.check-list li {
    padding: 5px 0;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.arrow-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.arrow-list li {
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.arrow-list li::before {
    content: '›';
    color: var(--primary-green);
    font-weight: 800;
    flex-shrink: 0;
}

/* ========================================
   Pro/Con
======================================== */
.pro-con-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.pro-box,
.con-box {
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid;
}

.pro-box {
    background: rgba(22, 199, 132, 0.05);
    border-color: rgba(22, 199, 132, 0.25);
}

.pro-box .box-title {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.con-box {
    background: rgba(245, 197, 66, 0.05);
    border-color: rgba(245, 197, 66, 0.25);
}

.con-box .box-title {
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.con-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.con-list li {
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.con-list li::before {
    content: '△';
    color: var(--primary-gold);
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 2px;
}

/* ========================================
   Blog Cards
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 20px 0;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.blog-tag {
    display: inline-block;
    background: rgba(22, 199, 132, 0.1);
    color: var(--primary-green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    border: 1px solid rgba(22, 199, 132, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more:hover {
    color: var(--primary-green-light);
}

/* ========================================
   FAQ Accordion
======================================== */
.faq-block {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 20px 0;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    user-select: none;
    transition: background 0.2s;
    background: var(--bg-card);
    list-style: none;
}

.faq-question:hover {
    background: var(--bg-dark3);
}

.faq-arrow {
    color: var(--primary-green);
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    background: rgba(6, 29, 22, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    padding-top: 16px;
}

.faq-answer a {
    color: var(--primary-green);
}

/* ========================================
   Pill / Badge
======================================== */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22, 199, 132, 0.1);
    border: 1px solid rgba(22, 199, 132, 0.25);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.pill:hover {
    background: rgba(22, 199, 132, 0.2);
    color: var(--primary-green-light);
}

/* ========================================
   CTA Section
======================================== */
.bonus-cta-new {
    background: linear-gradient(135deg, #061d16 0%, #0d3a24 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 56px 0;
    text-align: center;
}

.bonus-cta-new h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.bonus-cta-new p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Responsible Gaming Note
======================================== */
.rg-note {
    background: var(--bg-dark2);
    border-top: 1px solid var(--border-color);
    padding: 14px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.rg-note strong {
    color: var(--primary-gold);
}

.rg-note a {
    color: var(--primary-green);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    padding: 52px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 12px;
    display: block;
}

.footer-logo-text span {
    color: var(--primary-gold);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--text-white);
}

.footer-disclaimer {
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(183, 196, 189, 0.55);
    line-height: 1.7;
    max-width: 700px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.badge-icon {
    height: 36px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(20%);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-copyright {
    font-size: 12px;
    color: rgba(183, 196, 189, 0.4);
    margin-top: 12px;
}

.age-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 6px;
    margin-top: 8px;
}

/* ========================================
   Payments
======================================== */
.footer-payments {
    margin: 24px 0;
}

.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 12px;
}

.payment-icon {
    height: 28px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(30%);
    transition: var(--transition);
}

.payment-icon:hover {
    opacity: 1;
    filter: none;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(2, 11, 8, 0.99);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .hero-home {
        padding: 56px 0 48px;
    }

    .pro-con-grid {
        grid-template-columns: 1fr;
    }

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

    .cards-grid,
    .cards-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .content-card {
        padding: 24px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }
}
