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

:root {
    --primary: #1e40af;
    --primary-dark: #152e7a;
    --primary-light: #2c5ae0;
    --secondary: #f8fafc;
    --accent: #3b82f6;
    --coral: #f97316;
    --coral-light: #fb923c;
    --amber: #f59e0b;
    --amber-light: #fbbf24;
    --red: #ef4444;
    --red-light: #f87171;
    --warm-bg: #fff7ed;
    --warm-bg-alt: #fef3c7;
    --text-dark: #1e293b;
    --text-mid: #475569;
    --text-light: #94a3b8;
    --white: #ffffff;
    --border: #e2e8f0;
    --border-warm: #fed7aa;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-light);
}

.logo-text {
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background-color: rgba(59, 130, 246, 0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.65rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--amber));
    color: var(--white);
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--coral-light), var(--amber-light));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--accent);
    padding: 0.65rem 1rem;
}

.btn-text:hover {
    color: var(--primary);
    text-decoration: underline;
}

.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.hero {
    position: relative;
    padding: calc(var(--space-4xl) + 60px) 0 var(--space-4xl);
    background: linear-gradient(150deg, var(--primary) 0%, var(--primary-dark) 40%, #0f1d4a 100%);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(60px);
    pointer-events: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--coral);
    top: -100px;
    right: -150px;
    animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    bottom: -100px;
    left: -100px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-proof {
    background: var(--warm-bg);
    border-bottom: 1px solid var(--border-warm);
    padding: var(--space-md) 0;
}

.proof-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-mid);
}

.ticker-text {
    animation: tickerFade 0.5s ease;
}

@keyframes tickerFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--amber));
    border-radius: 2px;
    margin: var(--space-sm) auto 0;
}

.section-header-light .section-title {
    color: var(--white);
}

.section-header-light .section-title::after {
    background: linear-gradient(90deg, var(--amber), var(--coral-light));
}

.section-desc {
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-header-light .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.games-section {
    padding: var(--space-4xl) 0;
    background: var(--secondary);
}

.games-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--coral), var(--amber));
    color: var(--white);
    border-color: transparent;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.game-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.game-card.hidden {
    display: none;
}

.game-card-content {
    padding: var(--space-lg);
}

.game-title {
    margin-bottom: var(--space-xs);
}

.game-category {
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--coral);
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.game-desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.game-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-light);
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--text-dark);
}

.features-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: linear-gradient(150deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.features-wave-top,
.features-wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}

.features-wave-top { top: -1px; }
.features-wave-bottom { bottom: -1px; }

.features-wave-top svg,
.features-wave-bottom svg {
    width: 100%;
    height: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: transform var(--transition), background var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.feature-icon {
    margin-bottom: var(--space-lg);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.feature-title {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.trust-section {
    padding: var(--space-4xl) 0;
    background: var(--secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    margin-bottom: var(--space-lg);
}

.trust-card h3 {
    margin-bottom: var(--space-sm);
}

.trust-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    padding: var(--space-xl);
    background: var(--warm-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-warm);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.faq-wave-top,
.faq-wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}

.faq-wave-top { top: -1px; }
.faq-wave-bottom { bottom: -1px; }

.faq-wave-top svg,
.faq-wave-bottom svg {
    width: 100%;
    height: 50px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: background var(--transition);
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    animation: faqSlide 0.3s ease;
}

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

@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.newsletter-section {
    padding: var(--space-3xl) 0;
    background: var(--secondary);
}

.newsletter-card {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    background: linear-gradient(135deg, var(--warm-bg), var(--warm-bg-alt));
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
}

.newsletter-content h2 {
    margin-bottom: var(--space-sm);
}

.newsletter-content p {
    color: var(--text-mid);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: flex-start;
    flex: 1;
    min-width: 280px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent);
    outline: none;
}

.newsletter-hint {
    width: 100%;
    font-size: 0.78rem;
    color: var(--text-light);
    padding-left: var(--space-md);
}

.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--secondary);
    color: var(--text-dark);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-consent {
    font-size: 0.88rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.checkbox-custom {
    display: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact-info-card h3 {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border-warm);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-list-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-list-item a,
.contact-list-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list li span:last-child {
    font-weight: 600;
    color: var(--primary);
}

.age-gate {
    padding: var(--space-xl) 0;
    background: var(--warm-bg);
    border-top: 1px solid var(--border-warm);
}

.age-gate-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    text-align: center;
    color: var(--text-mid);
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto;
}

.age-gate-content svg {
    flex-shrink: 0;
    color: var(--coral);
}

.site-footer {
    position: relative;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 40px;
}

.footer-wave {
    position: absolute;
    top: -59px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

.footer-logo {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-logo:hover {
    color: var(--amber);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-contact ul li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: var(--space-xl) 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
    margin-bottom: var(--space-xs);
}

.footer-owner {
    font-size: 0.8rem;
}

.footer-responsible {
    font-weight: 600;
    color: var(--amber);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    border-top: 2px solid var(--coral);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    animation: cookieSlide 0.4s ease;
}

@keyframes cookieSlide {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.scroll-top[hidden] {
    display: flex;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--coral);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.legal-hero {
    padding: calc(var(--space-4xl) + 60px) 0 var(--space-3xl);
    background: linear-gradient(150deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.legal-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.legal-content {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--white);
}

.legal-container {
    max-width: 800px;
}

.legal-content article {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border);
}

.legal-content article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-content h2 {
    margin-bottom: var(--space-lg);
    color: var(--primary);
    font-size: 1.4rem;
}

.legal-content h3 {
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: var(--space-md);
    color: var(--text-mid);
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: var(--space-sm);
    color: var(--text-mid);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        padding: 80px var(--space-lg) var(--space-xl);
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav-menu.open {
        min-height: 100vh;
        transform: translateX(0);
    }

    .nav-link {
        padding: var(--space-md);
        font-size: 1rem;
    }

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

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

    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }

    .newsletter-hint {
        text-align: center;
        padding-left: 0;
    }

    .hero-stats {
        gap: var(--space-xl);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero {
        padding: calc(var(--space-3xl) + 60px) 0 var(--space-3xl);
    }

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

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

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

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

    .trust-badges {
        gap: var(--space-lg);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-card {
        padding: var(--space-xl);
    }

    .legal-hero {
        padding: calc(var(--space-3xl) + 60px) 0 var(--space-xl);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

@media print {
    .site-header,
    .cookie-banner,
    .scroll-top,
    .hero-blob,
    .hero-wave,
    .features-wave-top,
    .features-wave-bottom,
    .faq-wave-top,
    .faq-wave-bottom,
    .footer-wave {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}
