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


@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: 'Space Grotesk';
    src: url('fonts/SpaceGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    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-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Editorial Deep Plum & Silver-Gray Palette */
:root {
    --color-bg-primary: #1F1F1F;
    --color-bg-secondary: #2A2A2A;
    --color-bg-tertiary: #353535;
    --color-bg-alt: #252525;
    --color-surface: #2D2D2D;
    --color-surface-muted: #383838;
    --color-text-primary: #E8E8E8;
    --color-text-secondary: #C0C0C0;
    --color-text-tertiary: #909090;
    --color-accent-primary: #6B4C7A;
    --color-accent-secondary: #8B6B9A;
    --color-accent-plum: #4A2C5A;
    --color-accent-copper: #B87333;
    --color-accent-silver: #D0D0D0;
    --color-border: #404040;
    --color-border-light: #353535;
    --color-highlight: #8B6B9A;
    --color-warning: #B87333;
    --color-error: #C85A5A;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 56px;
    --space-10: 64px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.25);
}

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.8;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.01em;
}

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

.modal-content {
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
    max-width: 640px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-hover);
}

.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: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.age-support {
    font-size: 15px;
    margin-bottom: 32px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.age-support a {
    color: var(--color-accent-copper);
    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-copper);
}

.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: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 200px;
    letter-spacing: 0.02em;
}

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

.btn-age-yes:hover {
    background-color: var(--color-accent-secondary);
    border-color: var(--color-accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 76, 122, 0.4);
}

.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-primary);
    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: 3px solid var(--color-error);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-error);
    font-family: 'Space Grotesk', sans-serif;
    transform: rotate(45deg);
}

.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;
    transform: rotate(-45deg);
}

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

.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: var(--radius-lg);
    padding: 24px 32px;
    max-width: 720px;
    width: calc(100% - 40px);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-hover);
}

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

.cookie-link {
    color: var(--color-accent-copper);
    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-copper);
}

.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: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.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: #FFFFFF;
}

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

.btn-cookie-accept:hover {
    background-color: var(--color-accent-secondary);
    border-color: var(--color-accent-secondary);
    box-shadow: 0 6px 20px rgba(107, 76, 122, 0.4);
}

/* Header - Minimal Dark Blue */
.header {
    background-color: var(--color-bg-secondary);
    padding: var(--space-7) 0;
    position: relative;
    z-index: 100;
    border-bottom: 3px solid var(--color-border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

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

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

.header-nav {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
    letter-spacing: 0.18px;
    position: relative;
    padding-bottom: 6px;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent-copper);
    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(0, 0, 0, 0.3);
        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-copper);
        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(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Hero Section - Editorial Layout */
.hero {
    padding: var(--space-10) var(--space-7) var(--space-10);
    text-align: left;
    background: var(--color-bg-primary);
    position: relative;
    border-bottom: 2px solid var(--color-border);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero::after {
    display: none;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-5);
    line-height: 1.1;
    letter-spacing: -1.2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-7);
    font-weight: 400;
    line-height: 1.65;
    max-width: 700px;
    letter-spacing: 0.01em;
}

/* Platform Offers Section - Minimal Cards */
.platforms-section {
    padding: var(--space-10) var(--space-7) var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-bg-primary);
}

.platforms-intro {
    margin-bottom: var(--space-9);
    padding-bottom: var(--space-7);
    border-bottom: 1px solid var(--color-border);
}

.platforms-intro h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
    letter-spacing: -0.8px;
    line-height: 1.2;
}

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

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

/* Platform Item - Editorial Varied Card Design */
.platform-item {
    position: relative;
    background-color: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: var(--space-9) var(--space-8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Varied card shapes - alternating styles */
.platform-item:nth-child(odd) {
    border-radius: 0;
    border-left: 5px solid var(--color-accent-plum);
    padding-left: var(--space-9);
}

.platform-item:nth-child(even) {
    border-radius: 0;
    border-top: 4px solid var(--color-accent-copper);
    padding-top: var(--space-10);
}

.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-plum), var(--color-accent-copper));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-item:hover::before {
    opacity: 1;
}

.platform-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 32px rgba(107, 76, 122, 0.25);
    border-color: var(--color-accent-primary);
    background-color: var(--color-surface-muted);
}

.platform-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-7);
    margin-bottom: 0;
    position: relative;
}

.platform-logo-container {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-secondary);
    border-radius: 0;
    padding: var(--space-4);
    border: 2px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.platform-item:nth-child(even) .platform-logo-container {
    border-radius: 0;
    border: 2px solid var(--color-accent-copper);
    border-top-width: 3px;
}

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

.platform-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.platform-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--space-3) 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.platform-name::after {
    display: none;
}

.platform-rating-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

/* Editorial Rating Bar System */
.rating-rings {
    display: none;
}

.rating-ring {
    display: none;
}

.rating-ring svg {
    display: none;
}

.rating-ring-bg {
    display: none;
}

.rating-ring-fill {
    display: none;
}

.rating-value {
    display: none;
}

.rating-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent-copper);
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
}

/* Horizontal Rating Bar */
.rating-bar-container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
}

.rating-bar-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    min-width: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-bar-wrapper {
    flex: 1;
    height: 8px;
    background-color: var(--color-bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-plum), var(--color-accent-primary));
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.rating-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
}

.rating-meter {
    display: none;
}

.platform-offer {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin: var(--space-4) 0;
    line-height: 1.75;
    letter-spacing: 0.02em;
    padding-left: var(--space-4);
    border-left: 3px solid var(--color-accent-copper);
}

.platform-actions {
    margin-top: var(--space-2);
}

.btn-platform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5) var(--space-8);
    background-color: transparent;
    border: 2px solid var(--color-accent-primary);
    border-radius: 0;
    color: var(--color-accent-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent-primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-platform:hover {
    color: var(--color-text-primary);
    border-color: var(--color-accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 76, 122, 0.4);
}

.btn-platform:hover::before {
    left: 0;
}

/* Varied button styles for different cards */
.platform-item:nth-child(even) .btn-platform {
    border-radius: 0;
    background-color: var(--color-accent-copper);
    border-color: var(--color-accent-copper);
    color: var(--color-text-primary);
    border-width: 3px;
}

.platform-item:nth-child(even) .btn-platform::before {
    background-color: var(--color-accent-plum);
}

.platform-item:nth-child(even) .btn-platform:hover {
    background-color: var(--color-accent-plum);
    border-color: var(--color-accent-plum);
}

.btn-platform::after {
    display: none;
}

/* Footer - Minimal Dark Blue */
.footer {
    background-color: var(--color-bg-secondary);
    padding: var(--space-10) var(--space-7) var(--space-7);
    border-top: 3px solid var(--color-border);
    margin-top: var(--space-10);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-9);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.footer-column p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.01em;
}

.footer-column a {
    color: var(--color-accent-copper);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-column strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.footer-regulatory {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-7);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
    padding: var(--space-8) 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: var(--space-2);
}

.reg-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: all 0.2s ease;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
}

.reg-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.reg-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 0;
    background-color: var(--color-bg-tertiary);
    padding: var(--space-2);
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.reg-logo:hover {
    filter: grayscale(0%);
}

.reg-link:hover .reg-logo {
    border-color: var(--color-accent-copper);
    background-color: var(--color-bg-primary);
}

.reg-logo.age-logo {
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-accent-copper);
    background-color: var(--color-bg-secondary);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: var(--space-1) 0;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-copper);
    transition: width 0.2s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

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

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

/* Responsible Gaming Notice */
.responsible-notice {
    background-color: var(--color-bg-secondary);
    padding: var(--space-8) var(--space-8);
    margin: var(--space-9) var(--space-7);
    border-radius: 0;
    border-left: 5px solid var(--color-accent-copper);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--color-border);
    border-left-color: var(--color-accent-copper);
}

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

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

.responsible-notice a {
    color: var(--color-accent-copper);
    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-copper);
}

/* Page Styles - About, Privacy, Terms, Responsible */
.about-page {
    min-height: 100vh;
    padding: 0;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.privacy-page {
    min-height: 100vh;
    padding: 0;
    background: var(--color-bg-primary);
    position: relative;
}

.privacy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--color-accent-plum) 0%, transparent 100%);
    opacity: 0.1;
    pointer-events: none;
}

.terms-page {
    min-height: 100vh;
    padding: 0;
    background: var(--color-bg-secondary);
}

.responsible-page {
    min-height: 100vh;
    padding: 0;
    background: var(--color-bg-primary);
    position: relative;
}

.responsible-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(0deg, var(--color-accent-copper) 0%, transparent 100%);
    opacity: 0.08;
    pointer-events: none;
}

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

.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 {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-9) var(--space-7) var(--space-9);
    background: var(--color-bg-secondary);
    border-radius: 0;
    border: 3px solid var(--color-accent-plum);
    border-left-width: 6px;
    box-shadow: 0 8px 32px rgba(107, 76, 122, 0.15);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-9) var(--space-7) var(--space-9);
    background: var(--color-bg-secondary);
    border-radius: 0;
    border: 2px solid var(--color-border);
    border-top: 5px solid var(--color-accent-copper);
    position: relative;
    z-index: 1;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-9) var(--space-7) var(--space-9);
    background: var(--color-bg-primary);
    border-radius: 0;
    border: 2px solid var(--color-accent-primary);
    border-right-width: 6px;
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-9) var(--space-7) var(--space-9);
    background: var(--color-bg-secondary);
    border-radius: 0;
    border: 2px solid var(--color-border);
    border-bottom: 5px solid var(--color-accent-copper);
    position: relative;
    z-index: 1;
}

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

.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: 32px;
    font-weight: 700;
    color: var(--color-accent-copper);
    margin-bottom: 20px;
    margin-top: 48px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.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: 'Work Sans', 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.85;
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.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-copper);
    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-copper);
}

.about-info-box,
.privacy-info-box,
.terms-info-box,
.responsible-info-box {
    background-color: var(--color-bg-tertiary);
    border-left: 4px solid var(--color-accent-plum);
    padding: 28px 36px;
    margin: 32px 0;
    border-radius: 0;
    border: 2px solid var(--color-border);
}

.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: 22px;
    font-weight: 600;
    color: var(--color-accent-copper);
    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: var(--space-5);
    }
    
    .platforms-section {
        padding: var(--space-7) var(--space-6) var(--space-8);
        border-radius: var(--radius-lg);
    }
    
    .platform-item {
        padding: var(--space-7) var(--space-6);
        grid-template-columns: 1fr;
    }
    
    .platform-header {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .platform-rating-container {
        justify-self: start;
    }
    
    .platform-logo-container {
        width: 150px;
        height: 78px;
    }
    
    .rating-ring {
        width: 62px;
        height: 62px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content,
    .privacy-content,
    .terms-content,
    .responsible-content {
        padding: var(--space-7) var(--space-6) var(--space-8);
    }
    
    .about-title,
    .privacy-title,
    .terms-title,
    .responsible-title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: var(--space-9) var(--space-6) var(--space-7);
    }
    
    .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: var(--space-9) var(--space-6) var(--space-7);
    }
    
    .footer-grid {
        gap: var(--space-6);
        margin-bottom: var(--space-7);
    }
    
    .footer-regulatory {
        gap: var(--space-5);
        padding: var(--space-6) 0;
    }
    
    .footer-links {
        gap: var(--space-3);
        flex-direction: column;
    }
    
    .separator {
        display: none;
    }
    
    .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: var(--space-6) var(--space-6);
        padding: var(--space-6);
    }
}
