/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Loading */
@font-face {
    font-family: 'Work Sans';
    src: url('/fonts/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('/fonts/WorkSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('/fonts/WorkSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('/fonts/WorkSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Original Color Palette - Mineral Tones, Soft Greens, Warm Neutrals */
:root {
    --color-bg-primary: #F5F7F4;
    --color-bg-secondary: #FBFCFA;
    --color-bg-tertiary: #E8EDE6;
    --color-text-primary: #2C3A2F;
    --color-text-secondary: #5A6B5F;
    --color-text-tertiary: #7A8A7D;
    --color-accent-primary: #6B8E7A;
    --color-accent-secondary: #8FA89A;
    --color-accent-tertiary: #A5B8AD;
    --color-accent-violet: #9B8FA8;
    --color-accent-graphite: #4A5A52;
    --color-border: #D4DDD0;
    --color-border-light: #E8EDE6;
    --color-highlight: #7FA68E;
    --color-warning: #B89A7A;
    --color-error: #C49A8A;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    min-height: 100vh;
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
}

/* Age Verification Modal - Completely Redesigned */
.modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 58, 47, 0.85);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--color-bg-secondary);
    border-radius: 12px;
    padding: 48px 56px;
    max-width: 640px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(44, 58, 47, 0.12);
}

.age-modal p {
    margin-bottom: 24px;
    color: var(--color-text-primary);
    font-size: 17px;
    line-height: 1.75;
}

.age-question {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    letter-spacing: -0.3px;
}

.age-support {
    font-size: 15px;
    margin-bottom: 32px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.age-support a {
    color: var(--color-accent-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.age-support a:hover {
    border-bottom-color: var(--color-accent-primary);
}

.age-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-age-yes,
.btn-age-no {
    padding: 14px 32px;
    border: 1.5px solid;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Work Sans', sans-serif;
    min-width: 200px;
}

.btn-age-yes {
    background-color: var(--color-accent-primary);
    border-color: var(--color-accent-primary);
    color: var(--color-bg-secondary);
}

.btn-age-yes:hover {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
    transform: translateY(-1px);
}

.btn-age-no {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text-secondary);
}

.btn-age-no:hover {
    border-color: var(--color-accent-graphite);
    color: var(--color-text-primary);
    background-color: var(--color-bg-tertiary);
}

/* Denied Access Modal */
.denied-modal {
    text-align: center;
    max-width: 500px;
}

.denied-icon-container {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.denied-age-icon {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.denied-icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-error);
    font-family: 'Space Grotesk', sans-serif;
}

.denied-icon-plus {
    position: absolute;
    top: -8px;
    right: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-error);
    font-family: 'Space Grotesk', sans-serif;
}

.denied-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.denied-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Cookie Banner - Redesigned */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: var(--color-bg-secondary);
    border-radius: 8px;
    padding: 24px 32px;
    max-width: 720px;
    width: calc(100% - 40px);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 24px rgba(44, 58, 47, 0.1);
}

.cookie-content p {
    color: var(--color-text-primary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cookie-link {
    color: var(--color-accent-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.cookie-link:hover {
    border-bottom-color: var(--color-accent-primary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn-cookie-reject,
.btn-cookie-accept {
    padding: 10px 20px;
    border: 1.5px solid;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Work Sans', sans-serif;
}

.btn-cookie-reject {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text-secondary);
}

.btn-cookie-accept {
    background-color: var(--color-accent-primary);
    border-color: var(--color-accent-primary);
    color: var(--color-bg-secondary);
}

.btn-cookie-reject:hover {
    border-color: var(--color-accent-graphite);
    color: var(--color-text-primary);
    background-color: var(--color-bg-tertiary);
}

.btn-cookie-accept:hover {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
}

/* Header - Editorial Style */
.header {
    background-color: var(--color-bg-secondary);
    padding: 24px 0;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--color-border-light);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.header-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.1px;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg-secondary);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: -4px 0 16px rgba(44, 58, 47, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border-light);
        font-size: 16px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        color: var(--color-accent-primary);
        background-color: transparent;
    }
    
    .header-container {
        position: relative;
    }
}

/* Overlay for mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 58, 47, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section - Editorial Layout */
.hero {
    padding: 80px 40px 60px;
    text-align: left;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
}

/* Platform Offers Section - 2x2 Grid Layout */
.platforms-section {
    padding: 60px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.platforms-intro {
    margin-bottom: 64px;
}

.platforms-intro h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.platforms-intro p {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 700px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Platform Item - Grid Card Style */
.platform-item {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.platform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(44, 58, 47, 0.08);
    border-color: var(--color-border);
}

.platform-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.platform-logo-container {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-tertiary);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--color-border-light);
}

.platform-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.platform-info {
    flex: 1;
    min-width: 280px;
}

.platform-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.platform-rating-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* Custom Rating System - Rings */
.rating-rings {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-ring {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.rating-ring-bg {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 3;
}

.rating-ring-fill {
    fill: none;
    stroke: var(--color-accent-primary);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease;
}

.rating-value {
    position: absolute;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.rating-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--color-accent-primary);
    letter-spacing: -0.3px;
}

.platform-offer {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.platform-actions {
    margin-top: auto;
    padding-top: 20px;
}

.btn-platform {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    border: 1.5px solid var(--color-accent-primary);
    border-radius: 6px;
    color: var(--color-accent-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
    letter-spacing: 0.1px;
}

.btn-platform:hover {
    background-color: var(--color-accent-primary);
    color: var(--color-bg-secondary);
    transform: translateY(-1px);
}

/* Footer - Editorial Style */
.footer {
    background-color: var(--color-bg-tertiary);
    padding: 80px 40px 48px;
    border-top: 1px solid var(--color-border);
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-column p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 16px;
}

.footer-regulatory {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.reg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-size: 11px;
    text-align: center;
    font-weight: 400;
}

.reg-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: opacity 0.2s;
}

.reg-link:hover {
    opacity: 0.7;
}

.reg-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 4px;
}

.reg-logo.age-logo {
    width: 52px;
    height: 52px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    font-weight: 500;
}

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

.separator {
    color: var(--color-border);
    font-size: 14px;
}

.footer-copyright {
    text-align: center;
    color: var(--color-text-tertiary);
    font-size: 13px;
    margin-top: 0;
    font-weight: 400;
}

/* Responsible Gaming Notice */
.responsible-notice {
    background-color: var(--color-bg-tertiary);
    padding: 32px 40px;
    margin: 60px 40px;
    border-radius: 8px;
    border-left: 3px solid var(--color-accent-primary);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.responsible-notice p {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.responsible-notice p:last-child {
    margin-bottom: 0;
}

.responsible-notice a {
    color: var(--color-accent-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.responsible-notice a:hover {
    border-bottom-color: var(--color-accent-primary);
}

/* Page Styles - About, Privacy, Terms, Responsible */
.about-page,
.privacy-page,
.terms-page,
.responsible-page {
    min-height: 100vh;
    padding: 0;
    background: var(--color-bg-primary);
}

.about-header,
.privacy-header,
.terms-header,
.responsible-header {
    background-color: var(--color-bg-secondary);
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.about-header-container,
.privacy-header-container,
.terms-header-container,
.responsible-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-content,
.privacy-content,
.terms-content,
.responsible-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

.about-title,
.privacy-title,
.terms-title,
.responsible-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.about-update,
.privacy-update,
.terms-update,
.responsible-update {
    color: var(--color-text-tertiary);
    font-size: 14px;
    margin-bottom: 56px;
    font-weight: 400;
}

.about-section,
.privacy-section,
.terms-section,
.responsible-section {
    margin-bottom: 48px;
}

.about-section h2,
.privacy-section h2,
.terms-section h2,
.responsible-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--color-accent-primary);
    margin-bottom: 20px;
    margin-top: 48px;
    letter-spacing: -0.4px;
}

.about-section h2:first-of-type,
.privacy-section h2:first-of-type,
.terms-section h2:first-of-type,
.responsible-section h2:first-of-type {
    margin-top: 0;
}

.about-section h3,
.privacy-section h3,
.terms-section h3,
.responsible-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    margin-top: 32px;
}

.about-section p,
.privacy-section p,
.terms-section p,
.responsible-section p {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 400;
}

.about-section ul,
.privacy-section ul,
.terms-section ul,
.responsible-section ul {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 28px;
}

.about-section li,
.privacy-section li,
.terms-section li,
.responsible-section li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.about-section strong,
.privacy-section strong,
.terms-section strong,
.responsible-section strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.about-section a,
.privacy-section a,
.terms-section a,
.responsible-section a {
    color: var(--color-accent-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.about-section a:hover,
.privacy-section a:hover,
.terms-section a:hover,
.responsible-section a:hover {
    border-bottom-color: var(--color-accent-primary);
}

.about-info-box,
.privacy-info-box,
.terms-info-box,
.responsible-info-box {
    background-color: var(--color-bg-tertiary);
    border-left: 3px solid var(--color-accent-primary);
    padding: 24px 32px;
    margin: 32px 0;
    border-radius: 6px;
}

.about-info-box p,
.privacy-info-box p,
.terms-info-box p,
.responsible-info-box p {
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

.about-info-box p:last-child,
.privacy-info-box p:last-child,
.terms-info-box p:last-child,
.responsible-info-box p:last-child {
    margin-bottom: 0;
}

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

.contact-list li {
    margin-bottom: 12px;
    padding-left: 0;
}

.resource-item {
    margin-bottom: 24px;
    padding-left: 0;
}

.resource-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-accent-primary);
    margin-bottom: 8px;
}

.resource-item p {
    margin-bottom: 6px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .platforms-intro h2 {
        font-size: 32px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .platform-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .platform-logo-container {
        width: 140px;
        height: 70px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content,
    .privacy-content,
    .terms-content,
    .responsible-content {
        padding: 60px 30px 80px;
    }
    
    .about-title,
    .privacy-title,
    .terms-title,
    .responsible-title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 30px 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .header-container,
    .about-header-container,
    .privacy-header-container,
    .terms-header-container,
    .responsible-header-container {
        flex-direction: column;
        gap: 16px;
        padding: 0 30px;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .platforms-section {
        padding: 40px 30px 70px;
    }
    
    .platforms-intro h2 {
        font-size: 28px;
    }
    
    .platform-name {
        font-size: 28px;
    }
    
    .platform-offer {
        font-size: 18px;
    }
    
    .footer {
        padding: 60px 30px 40px;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-age-yes,
    .btn-age-no {
        width: 100%;
        min-width: auto;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-cookie-reject,
    .btn-cookie-accept {
        width: 100%;
    }
    
    .about-content,
    .privacy-content,
    .terms-content,
    .responsible-content {
        padding: 50px 30px 70px;
    }
    
    .about-title,
    .privacy-title,
    .terms-title,
    .responsible-title {
        font-size: 32px;
    }
    
    .about-section h2,
    .privacy-section h2,
    .terms-section h2,
    .responsible-section h2 {
        font-size: 24px;
    }
    
    .about-section h3,
    .privacy-section h3,
    .terms-section h3,
    .responsible-section h3 {
        font-size: 20px;
    }
    
    .responsible-notice {
        margin: 40px 30px;
        padding: 24px 28px;
    }
}
