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

:root {
    --bg-body: #0b0d12;
    --bg-shell: linear-gradient(180deg, #0f1216 0%, #0b0d12 100%);
    --bg-core: #0b0d12;
    --bg-card: #141821;
    --bg-card-alt: #1a1f2b;
    --stroke-soft: #242a36;
    --stroke-strong: #353c4a;
    --text-primary: #f2f5f9;
    --text-secondary: #a8b2c3;
    --text-muted: #6c7687;
    --accent-start: #00D084;
    --accent-end: #00C7BE;
    --accent-highlight: #4DFFC7;
    --radius-xl: 34px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
    --shadow-hero: 0 36px 90px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    background: var(--bg-body);
}

body {
    font-family: 'Manrope', 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: radial-gradient(108% 120% at 100% 0%, rgba(0, 208, 132, 0.12) 0%, rgba(11, 13, 18, 0) 60%),
        radial-gradient(108% 140% at 0% 0%, rgba(0, 199, 190, 0.12) 0%, rgba(11, 13, 18, 0) 62%),
        linear-gradient(180deg, #0b0d12 0%, #0d1117 60%, #0b0d12 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

.page-frame {
    min-height: 100vh;
    position: relative;
    background: var(--bg-core);
}

.core-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(16, 45, 35, 0.92) 0%, rgba(8, 31, 24, 0.88) 100%);
}

.masthead {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 36px;
    background: rgba(15, 18, 22, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(36, 42, 54, 0.9);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

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

.brand-lockup {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.brand-badge {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 150px;
}

.brand-emblem {
    width: 72px;
    height: auto;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.35));
}

.brand-wordmark {
    width: 150px;
    height: auto;
}

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

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.action-button--primary {
    background: linear-gradient(94deg, var(--accent-start) 0%, var(--accent-end) 100%);
    color: #fff7f0;
    box-shadow: 0 18px 38px rgba(255, 118, 80, 0.32);
}

.action-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(255, 118, 80, 0.42);
}

.action-button--ghost {
    background: transparent;
    color: var(--text-primary);
}

.action-button--ghost:hover {
    color: var(--accent-start);
    background: rgba(0, 208, 132, 0.08);
}

.action-button--outline {
    background: transparent;
    color: var(--accent-start);
    border: 1px solid rgba(0, 208, 132, 0.3);
}

.action-button--outline:hover {
    background: rgba(0, 208, 132, 0.1);
    border-color: rgba(0, 208, 132, 0.45);
}

.textual-link {
    background: transparent;
    color: var(--accent-start);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 13px;
}

.textual-link::after {
    content: ' →';
}

.chip-button {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid var(--stroke-soft);
    transition: border 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.chip-button:hover {
    color: var(--text-primary);
    border-color: rgba(0, 208, 132, 0.4);
    box-shadow: 0 12px 24px rgba(110, 133, 255, 0.18);
}

.main-stage {
    flex: 1;
    padding: 36px 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.hero-banner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 48px 46px;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 380px);
    gap: 38px;
    background: linear-gradient(114deg, rgba(16, 45, 35, 0.9) 0%, rgba(24, 61, 48, 0.9) 42%, rgba(32, 77, 64, 0.9) 100%);
    box-shadow: var(--shadow-hero);
    border: 1px solid rgba(0, 199, 190, 0.3);
    align-items: center;
    min-height: 520px;
}

.hero-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-dialogue {
    position: relative;
    background: rgba(15, 18, 22, 0.45);
    border-radius: 32px;
    padding: 34px 36px;
    border: 1px solid rgba(0, 208, 132, 0.28);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.35);
    max-width: 480px;
}

.hero-dialogue::after {
    content: '';
    position: absolute;
    right: -28px;
    bottom: 48px;
    width: 46px;
    height: 46px;
    background: rgba(15, 18, 22, 0.45);
    border: 1px solid rgba(0, 208, 132, 0.28);
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    border-top-right-radius: 18px;
    box-shadow: 18px 18px 32px rgba(0, 0, 0, 0.25);
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 199, 190, 0.2);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-start);
    margin-bottom: 22px;
}

.hero-heading-desktop {
    font-size: clamp(32px, 3.4vw, 44px);
    line-height: 1.18;
    margin-bottom: 18px;
}

.hero-copy-desktop {
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-illustration {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../assets/hero-images/coin.png'), url('../assets/hero-images/casino-coin.png');
    background-position: right center, center;
    background-size: contain, cover;
    background-repeat: no-repeat, no-repeat;
    pointer-events: none;
}

.hero-portrait {
    display: none;
}

.hero-heading-mobile,
.hero-copy-mobile {
    display: none;
}

.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 26px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
}

.feature-card:nth-child(1)::before { background-image: url('../assets/hero-grid/casino-coin.png'); }
.feature-card:nth-child(2)::before { background-image: url('../assets/hero-grid/coin.png'); }
.feature-card:nth-child(3)::before { background-image: url('../assets/hero-grid/faq-coin.png'); }

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(129, 150, 255, 0.2);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.12) 0%, rgba(0, 199, 190, 0.18) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.feature-icon--treasure::before { content: '🏴‍☠️'; }
.feature-icon--fleet::before { content: '⛵'; }
.feature-icon--compass::before { content: '🧭'; }

.feature-title {
    font-size: 18px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.content-module {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.module-header > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-module h2 {
    font-size: 28px;
}

.content-module p {
    color: var(--text-secondary);
    font-size: 15px;
}

.gallery-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gallery-grid--wide {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-grid--hot {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-grid--instant {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gallery-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--stroke-soft);
    background: var(--bg-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 148, 96, 0.24) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 208, 132, 0.35);
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpot-strip {
    display: flex;
    justify-content: center;
}

.jackpot-core {
    padding: 22px 46px;
    border-radius: 999px;
    background: linear-gradient(98deg, rgba(0, 208, 132, 0.2) 0%, rgba(0, 199, 190, 0.2) 100%);
    border: 1px solid rgba(53, 60, 74, 0.8);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.jackpot-headline {
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.jackpot-amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-primary);
}

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

.benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(129, 150, 255, 0.24);
}

.benefit-card--primary::before { background-image: url('../assets/hero-grid/casino-coin.png'); }
.benefit-card--secure::before { background-image: url('../assets/hero-grid/coin.png'); }
.benefit-card--shield::before { background-image: url('../assets/hero-grid/faq-coin.png'); }
.benefit-card--vip::before { background-image: url('../assets/hero-grid/casino-coin.png'); }

.benefit-chip {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(0, 208, 132, 0.12);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--accent-highlight);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.live-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.live-tile {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--stroke-soft);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-tile span {
    padding: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.live-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(129, 150, 255, 0.22);
}

.studios {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.studio-card {
    padding: 24px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.studio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(129, 150, 255, 0.2);
}

.studio-name {
    font-weight: 700;
    font-size: 18px;
}

.studio-amount {
    color: var(--text-secondary);
    font-size: 14px;
}

.gallery-card.is-focused,
.feature-card.is-focused,
.studio-card.is-focused,
.benefit-card.is-focused,
.live-tile.is-focused {
    outline: 2px solid var(--accent-end);
    outline-offset: 4px;
}

.site-footer {
    margin-top: auto;
    background: var(--bg-card);
    border-top: 1px solid var(--stroke-soft);
    padding: 32px 40px 46px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

.footer-branding .brand-badge {
    width: 140px;
}

.footer-branding p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-navigation a {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.footer-warning p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.article-section {
    padding: 60px 0;
    background: var(--bg-core);
}

.article-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.article-content h1 {
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.article-content h2 {
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.25;
    color: var(--text-primary);
    margin: 34px 0 16px;
    position: relative;
}

.article-content h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(96deg, var(--accent-start) 0%, var(--accent-end) 100%);
}

.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: var(--text-primary);
    margin: 26px 0 12px;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin: 14px 0;
}

.article-content a {
    color: var(--accent-start);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--accent-end);
}

.article-content ul,
.article-content ol {
    margin: 14px 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.article-content ul li,
.article-content ol li {
    position: relative;
    padding-left: 22px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 8px 0;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(96deg, var(--accent-start) 0%, var(--accent-end) 100%);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    margin: 22px 0;
}

.article-content th,
.article-content td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--stroke-soft);
    text-align: left;
    color: var(--text-secondary);
}

.article-content th {
    background: linear-gradient(96deg, rgba(0, 208, 132, 0.12) 0%, rgba(0, 199, 190, 0.12) 100%);
    color: var(--text-primary);
    font-weight: 700;
}

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

@media (max-width: 1280px) {
    .main-stage {
        padding: 32px 28px 70px;
    }

    .masthead {
        padding: 20px 28px;
    }

    .hero-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-body {
        justify-content: center;
    }

    .hero-dialogue {
        margin: 0 auto;
    }

    .hero-illustration {
        min-height: 340px;
        background-position: 80% center, center;
        background-size: 90%, cover;
    }
}

@media (max-width: 1100px) {
    .masthead {
        position: sticky;
        top: 0;
    }

    .brand-lockup {
        display: inline-flex;
    }

    .main-stage {
        padding-left: 24px;
        padding-right: 24px;
    }

    .brand-badge {
        width: 140px;
    }

    .brand-wordmark {
        width: 140px;
    }

    .brand-emblem {
        width: 64px;
    }
}

@media (max-width: 820px) {
    .masthead {
        gap: 16px;
    }

    .brand-lockup {
        position: static;
        left: auto;
        transform: none;
    }

    .masthead-cta {
        flex: 0 0 auto;
        gap: 10px;
    }

    .masthead-cta .action-button {
        width: auto;
        padding: 10px 18px;
    }

    .main-stage {
        gap: 44px;
    }

    .hero-container {
        padding: 36px 28px;
        border-radius: 28px;
        min-height: 460px;
    }

    .hero-dialogue::after {
        content: none;
    }

    .hero-dialogue {
        width: 100%;
        background: rgba(15, 18, 22, 0.4);
        border: 1px solid rgba(0, 208, 132, 0.26);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .action-button {
        width: 100%;
        justify-content: center;
    }

    .hero-illustration {
        min-height: 420px;
        background-position: 85% center, center;
        background-size: 100%, cover;
    }

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

    .module-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .chip-button {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .masthead {
        padding: 16px 18px;
        gap: 14px;
    }

    .masthead-start {
        gap: 12px;
    }

    .brand-badge {
        width: 120px;
    }

    .brand-wordmark {
        width: 120px;
    }

    .brand-emblem {
        width: 56px;
    }

    .masthead-cta {
        display: inline-flex;
        gap: 8px;
    }

    .masthead-cta .action-button {
        padding: 9px 16px;
        font-size: 11px;
        letter-spacing: 0.04em;
    }

    .main-stage {
        padding: 28px 20px 60px;
    }

    .hero-container {
        padding: 0;
        border-radius: 26px;
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 420px;
    }

    .hero-body {
        padding: 26px 22px 24px;
        text-align: center;
    }

    .hero-dialogue {
        padding: 26px 22px;
        border-radius: 24px;
        background: rgba(15, 18, 22, 0.38);
        border: 1px solid rgba(0, 208, 132, 0.24);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
        margin: 0 auto 18px;
    }

    .hero-portrait {
        display: none;
    }

    .hero-heading-desktop,
    .hero-copy-desktop {
        display: none;
    }

    .hero-heading-mobile,
    .hero-copy-mobile {
        display: block;
    }

    .hero-heading-mobile {
        font-size: clamp(20px, 6vw, 28px);
        line-height: 1.3;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 18px;
    }

    .hero-copy-mobile {
        font-size: 14px;
        color: var(--text-secondary);
        max-width: 520px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-chip {
        font-size: 11px;
    }

    .hero-illustration {
        display: block;
        min-height: 380px;
        background-position: 90% center, center;
        background-size: 120%, cover;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .gallery-grid--wide,
    .gallery-grid--hot,
    .gallery-grid--instant {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .jackpot-core {
        flex-direction: column;
        text-align: center;
        padding: 18px 26px;
    }

    .site-footer {
        padding: 28px 20px 40px;
    }

    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .masthead {
        padding: 12px 16px;
    }

    .brand-badge {
        width: 100px;
    }

    .brand-wordmark {
        width: 100px;
    }

    .brand-emblem {
        width: 48px;
    }

    .main-stage {
        padding: 20px 16px 50px;
    }

    .hero-container {
        border-radius: 22px;
        min-height: 380px;
    }

    .hero-body {
        padding: 20px 16px 18px;
    }

    .hero-dialogue {
        padding: 20px 16px;
        font-size: 13px;
        background: rgba(15, 18, 22, 0.36);
        border: 1px solid rgba(0, 208, 132, 0.22);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    }

    .hero-heading-mobile {
        font-size: clamp(18px, 7vw, 24px);
    }

    .hero-copy-mobile {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .feature-card,
    .benefit-card {
        padding: 22px;
    }

    .article-section {
        padding: 30px 0;
    }

    .article-wrapper {
        padding: 0 16px;
    }

    .article-content p {
        font-size: 14px;
    }
}
