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

:root {
    /* Editorial Color Palette */
    --color-base: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-slate: #2a2a2a;
    --color-graphite: #3a3a3a;
    
    /* Single Accent Color - Soft Cyan */
    --accent-cyan: #7aa8b8;
    
    /* Text Colors - Reduced Contrast */
    --text-primary: #d0d0d0;
    --text-secondary: #9a9a9a;
    --text-tertiary: #6a6a6a;
    
    /* Typography */
    --font-headline: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-base);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header - Minimal Text-Based */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(122, 168, 184, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.site-logo {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-logo:hover {
    color: var(--accent-cyan);
}

.nav-items {
    display: flex;
    gap: 48px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* Hero Section - Editorial */
.hero-editorial {
    margin-top: 100px;
    padding: 120px 0 100px;
    background: var(--color-base);
}

.hero-content-editorial {
    max-width: 800px;
}

.hero-headline-editorial {
    font-family: var(--font-headline);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.hero-text-editorial {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 680px;
}

/* Link Button - Understated */
.link-button {
    display: inline-block;
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.link-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-cyan);
    transition: opacity 0.3s ease;
}

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

.link-button:hover::after {
    opacity: 0.5;
}

/* Divider Lines - Thin */
.divider-line {
    height: 1px;
    background: rgba(122, 168, 184, 0.15);
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 40px;
}

/* Games Section - Horizontal Scroll Strip */
.games-editorial {
    padding: 100px 0;
    background: var(--color-base);
}

.section-intro {
    margin-bottom: 80px;
    max-width: 700px;
}

.section-headline {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-lead {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.games-strip {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(122, 168, 184, 0.3) transparent;
}

.games-strip::-webkit-scrollbar {
    height: 2px;
}

.games-strip::-webkit-scrollbar-track {
    background: transparent;
}

.games-strip::-webkit-scrollbar-thumb {
    background: rgba(122, 168, 184, 0.3);
    border-radius: 2px;
}

.game-item {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.game-item:hover {
    transform: translateY(-4px);
}

.game-image-wrapper {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.game-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s ease;
    opacity: 0.85;
}

.game-item:hover .game-image-wrapper img {
    transform: scale(1.05);
    opacity: 1;
}

.game-label {
    font-family: var(--font-headline);
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.game-item:hover .game-label {
    color: var(--accent-cyan);
}

/* How It Works - Vertical Timeline */
.how-it-works-editorial {
    padding: 100px 0;
    background: var(--color-base);
}

.process-narrative {
    max-width: 800px;
    position: relative;
    padding-left: 40px;
}

.process-narrative::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(122, 168, 184, 0.2);
}

.process-step {
    position: relative;
    padding-bottom: 64px;
    padding-left: 48px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -8px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-base);
    border: 1px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.process-step:hover .step-marker {
    background: var(--accent-cyan);
    transform: scale(1.2);
}

.step-title {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.step-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* Why Choose - Two Column Editorial */
.why-choose-editorial {
    padding: 100px 0;
    background: var(--color-base);
}

.benefits-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 900px;
}

.benefit-statement {
    margin-bottom: 64px;
}

.benefit-statement:last-child {
    margin-bottom: 0;
}

.benefit-title {
    font-family: var(--font-headline);
    font-size: 26px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.benefit-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* Manifesto Section - Calm, Text-First */
.manifesto-section {
    padding: 120px 0;
    background: var(--color-base);
}

.manifesto-content {
    max-width: 700px;
    text-align: center;
}

.manifesto-headline {
    font-family: var(--font-headline);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.manifesto-text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 300;
}

/* Footer - Editorial Style */
.site-footer {
    padding: 80px 0 60px;
    background: var(--color-base);
    border-top: 1px solid rgba(122, 168, 184, 0.15);
}

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

.footer-logo {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.footer-link::before {
    content: '—';
    position: absolute;
    left: -16px;
    opacity: 0;
    color: var(--accent-cyan);
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
    padding-left: 16px;
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-divider-line {
    height: 1px;
    background: rgba(122, 168, 184, 0.15);
    margin-bottom: 40px;
}

.footer-bottom-text {
    margin-bottom: 32px;
}

.copyright-text {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 300;
}

.footer-disclaimer-text {
    max-width: 900px;
}

.footer-disclaimer-text p {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.8;
    font-weight: 300;
}

/* Scroll Animations */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    visibility: visible;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 32px;
    }

    .nav-items {
        gap: 32px;
    }

    .hero-editorial {
        padding: 80px 0 60px;
    }

    .section-headline {
        font-size: clamp(32px, 6vw, 48px);
    }

    .benefits-two-column {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefit-statement {
        margin-bottom: 48px;
    }

    .footer-content-editorial {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .games-strip {
        gap: 24px;
    }

    .game-item {
        width: 280px;
    }

    .game-image-wrapper {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .main-nav {
        padding: 20px 0;
    }

    .nav-items {
        gap: 24px;
    }

    .nav-link {
        font-size: 14px;
    }

    .site-logo {
        font-size: 20px;
    }

    .hero-editorial {
        margin-top: 80px;
        padding: 60px 0 40px;
    }

    .hero-headline-editorial {
        margin-bottom: 24px;
    }

    .hero-text-editorial {
        margin-bottom: 32px;
    }

    .games-editorial,
    .how-it-works-editorial,
    .why-choose-editorial {
        padding: 60px 0;
    }

    .section-intro {
        margin-bottom: 48px;
    }

    .process-narrative {
        padding-left: 32px;
    }

    .process-step {
        padding-left: 40px;
        padding-bottom: 48px;
    }

    .step-title {
        font-size: 24px;
    }

    .benefit-title {
        font-size: 22px;
    }

    .manifesto-section {
        padding: 80px 0;
    }

    .site-footer {
        padding: 60px 0 40px;
    }

    .game-item {
        width: 260px;
    }

    .game-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav-items {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
    }

    .site-logo {
        font-size: 18px;
    }

    .hero-headline-editorial {
        font-size: 36px;
    }

    .hero-text-editorial {
        font-size: 16px;
    }

    .section-headline {
        font-size: 28px;
    }

    .section-lead {
        font-size: 16px;
    }

    .games-strip {
        gap: 16px;
    }

    .game-item {
        width: 240px;
    }

    .game-image-wrapper {
        height: 280px;
    }

    .process-narrative {
        padding-left: 24px;
    }

    .process-step {
        padding-left: 32px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-text {
        font-size: 15px;
    }

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

    .benefit-text {
        font-size: 15px;
    }

    .manifesto-headline {
        font-size: 32px;
    }

    .manifesto-text {
        font-size: 16px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(122, 168, 184, 0.3);
    color: var(--text-primary);
}

/* Remove focus outlines for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 1px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* ============================================
   ADDITIONAL PAGE STYLES
   ============================================ */

/* Section Divider */
.section-divider {
    height: 1px;
    background: rgba(122, 168, 184, 0.15);
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 40px;
}

/* About Page Styles */
.about-hero,
.collection-hero,
.contact-hero,
.privacy-hero,
.responsible-hero,
.privacy-notice-hero,
.terms-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 100px;
    padding: 100px 0;
    background: var(--color-base);
}

.about-hero-background,
.collection-hero-background,
.contact-hero-background,
.privacy-hero-background,
.responsible-hero-background,
.privacy-notice-hero-background,
.terms-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.about-hero-gradient,
.collection-hero-gradient,
.contact-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(122, 168, 184, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(122, 168, 184, 0.06) 0%, transparent 50%);
}

.about-hero-grain,
.collection-hero-grain,
.contact-hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.about-hero-content,
.collection-hero-content,
.contact-hero-content,
.privacy-hero-content,
.responsible-hero-content,
.privacy-notice-hero-content,
.terms-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 900px;
    padding: 2rem 0;
}

.about-hero-title,
.collection-hero-title,
.contact-hero-title,
.privacy-hero-title,
.responsible-hero-title,
.privacy-notice-hero-title,
.terms-hero-title {
    font-family: var(--font-headline);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -1.5px;
}

.about-hero-subtitle,
.collection-hero-subtitle,
.contact-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
}

.about-hero-text {
    margin-top: 32px;
}

.about-hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-hero-text p:last-child {
    margin-bottom: 0;
}

/* Why Choose About Section */
.why-choose-about {
    background: var(--color-base);
    padding: 100px 0;
}

.why-choose-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-about-text {
    max-width: 100%;
}

.section-header {
    text-align: left;
    margin-bottom: 64px;
    max-width: 800px;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.why-choose-features {
    margin: 48px 0 64px;
}

.feature-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(122, 168, 184, 0.1);
    transition: all 0.4s ease;
}

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

.feature-item:hover {
    padding-left: 16px;
}

.feature-number {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-tertiary);
    transition: color 0.4s ease;
    line-height: 1;
}

.feature-item:hover .feature-number {
    color: var(--accent-cyan);
}

.feature-content h3 {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
}

.why-choose-closing-wrapper {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(122, 168, 184, 0.1);
}

.closing-divider {
    width: 80px;
    height: 1px;
    background: rgba(122, 168, 184, 0.3);
    margin-bottom: 32px;
}

.why-choose-closing {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
}

/* Our Mission Section */
.our-mission {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--color-base);
}

.mission-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.mission-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(122, 168, 184, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(122, 168, 184, 0.04) 0%, transparent 50%);
}

.mission-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.mission-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.mission-title {
    font-family: var(--font-headline);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -1.5px;
}

.mission-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* What We Offer Section */
.what-we-offer {
    background: var(--color-base);
    padding: 100px 0;
}

.what-we-offer-intro {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 0 48px 0;
    line-height: 1.8;
    font-weight: 300;
}

.offer-editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 48px;
    max-width: 900px;
}

.offer-item {
    padding: 32px 0;
    position: relative;
    border-bottom: 1px solid rgba(122, 168, 184, 0.1);
    transition: all 0.4s ease;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

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

.offer-item:hover {
    padding-left: 16px;
}

.offer-number {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-tertiary);
    line-height: 1;
    transition: color 0.4s ease;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.offer-item:hover .offer-number {
    color: var(--accent-cyan);
}

.offer-content h3 {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Contact Page Styles */
.contact-section {
    background: var(--color-base);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    max-width: 100%;
}

.contact-info-title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.contact-info-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: rgba(122, 168, 184, 0.03);
    border-left: 1px solid rgba(122, 168, 184, 0.2);
}

.email-icon-wrapper {
    flex-shrink: 0;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.email-icon-wrapper svg {
    stroke: var(--accent-cyan);
    transition: stroke 0.4s ease;
}

.contact-email:hover .email-icon-wrapper svg {
    stroke: var(--text-primary);
}

.email-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.4s ease;
}

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

.contact-response-time {
    font-size: 15px;
    color: var(--text-tertiary);
    margin: 24px 0;
    font-style: italic;
    font-weight: 300;
}

.contact-closing {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 32px;
    font-weight: 300;
}

.contact-form-wrapper {
    background: transparent;
    padding: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 300;
    font-size: 15px;
    font-family: var(--font-body);
}

.form-group input,
.form-group textarea {
    padding: 16px;
    background: var(--color-charcoal);
    border: 1px solid rgba(122, 168, 184, 0.15);
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.4s ease;
    width: 100%;
    font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

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

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

.submit-button {
    margin-top: 8px;
    align-self: flex-start;
}

/* Game Collection Page */
.games-collection {
    background: var(--color-base);
    padding: 100px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.game-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-thumbnail {
    width: 100%;
    height: 360px;
    position: relative;
    overflow: hidden;
    background: var(--color-charcoal);
    display: block;
    margin-bottom: 20px;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.85;
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.05);
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-cyan);
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.game-card:hover .play-icon {
    transform: scale(1);
    background: rgba(122, 168, 184, 0.1);
}

.game-title {
    font-family: var(--font-headline);
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.game-card:hover .game-title {
    color: var(--accent-cyan);
}

/* Legal Pages Styles */
.privacy-notice-hero-bg-image,
.responsible-hero-bg-image,
.terms-hero-bg-image,
.privacy-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    mix-blend-mode: overlay;
    z-index: 0;
}

.privacy-notice-hero-overlay,
.responsible-hero-overlay,
.terms-hero-overlay,
.privacy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-base);
    z-index: 1;
}

.privacy-notice-hero-content,
.responsible-hero-content,
.terms-hero-content,
.privacy-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-notice-content-section,
.responsible-content-section,
.terms-content-section,
.privacy-content-section {
    background: var(--color-base);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.privacy-notice-content-section .container,
.responsible-content-section .container,
.terms-content-section .container,
.privacy-content-section .container {
    position: relative;
    z-index: 2;
}

.privacy-intro,
.responsible-intro {
    max-width: 800px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.privacy-intro-text,
.responsible-intro-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.privacy-intro-text:last-child,
.responsible-intro-text:last-child {
    margin-bottom: 0;
}

.privacy-notice-block,
.responsible-block,
.terms-block,
.privacy-block {
    background: transparent;
    padding: 0;
    margin-bottom: 64px;
    border-bottom: 1px solid rgba(122, 168, 184, 0.1);
    padding-bottom: 48px;
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.privacy-notice-block:last-child,
.responsible-block:last-child,
.terms-block:last-child,
.privacy-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.privacy-notice-section-number,
.responsible-block-title,
.terms-section-number,
.privacy-block-title {
    font-family: var(--font-headline);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    opacity: 1;
    visibility: visible;
}

.privacy-notice-block-text,
.responsible-block-text,
.terms-block-text,
.privacy-block-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
}

.privacy-notice-block-text:last-child,
.responsible-block-text:last-child,
.terms-block-text:last-child,
.privacy-block-text:last-child {
    margin-bottom: 0;
}

.privacy-notice-list,
.responsible-list,
.terms-list,
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.privacy-notice-list li,
.responsible-list li,
.terms-list li,
.privacy-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
}

.privacy-notice-list li::before,
.responsible-list li::before,
.terms-list li::before,
.privacy-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.privacy-notice-link,
.responsible-link,
.terms-link,
.privacy-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.4s ease;
}

.privacy-notice-link:hover,
.responsible-link:hover,
.terms-link:hover,
.privacy-link:hover {
    color: var(--text-primary);
}

.privacy-notice-note {
    background: rgba(122, 168, 184, 0.03);
    padding: 24px;
    border-left: 1px solid rgba(122, 168, 184, 0.2);
    margin: 24px 0;
}

.note-icon {
    margin-right: 8px;
}

.note-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
}

.note-text strong {
    color: var(--text-primary);
    font-weight: 400;
}

.responsible-tips-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.responsible-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
}

.tip-icon {
    flex-shrink: 0;
    font-size: 20px;
}

.tip-text {
    flex: 1;
}

.responsible-resources-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.responsible-resources-list li {
    padding: 16px 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
}

.resource-phone {
    color: var(--text-tertiary);
    font-size: 15px;
}

.responsible-help-block,
.privacy-help-block {
    background: rgba(122, 168, 184, 0.03);
    padding: 32px;
    border-left: 1px solid rgba(122, 168, 184, 0.2);
    margin-top: 48px;
    opacity: 1;
    visibility: visible;
}

.responsible-help-block .responsible-block-text,
.privacy-help-block .privacy-block-text {
    opacity: 1;
    visibility: visible;
}

.responsible-contact-info,
.privacy-contact-info {
    margin-top: 24px;
}

.responsible-contact-item,
.privacy-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.responsible-contact-icon,
.privacy-contact-icon {
    font-size: 18px;
}

.terms-support-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.terms-support-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
}

.support-icon {
    flex-shrink: 0;
    font-size: 18px;
}

.support-text,
.support-note {
    color: var(--text-tertiary);
    font-size: 15px;
}

.terms-footer-note {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(122, 168, 184, 0.1);
    text-align: center;
}

.terms-footer-note p {
    color: var(--text-tertiary);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    opacity: 1;
    visibility: visible;
}

.privacy-block-subtitle {
    font-size: 16px;
    color: var(--text-tertiary);
    margin: 16px 0;
    font-weight: 300;
}

.privacy-note {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    margin-top: 16px;
}

.privacy-notice-contact-block {
    background: rgba(122, 168, 184, 0.03);
    padding: 32px;
    border-left: 1px solid rgba(122, 168, 184, 0.2);
    margin-top: 48px;
    opacity: 1;
    visibility: visible;
}

.privacy-notice-contact-block .privacy-notice-block-text {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles for Additional Pages */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrapper {
        order: -1;
    }

    .why-choose-about-content {
        max-width: 100%;
    }

    .feature-item {
        grid-template-columns: 50px 1fr;
        gap: 24px;
    }

    .feature-content h3 {
        font-size: 22px;
    }

    .offer-item {
        gap: 24px;
    }

    .offer-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .collection-hero,
    .contact-hero,
    .privacy-hero,
    .responsible-hero,
    .privacy-notice-hero,
    .terms-hero {
        min-height: 50vh;
        padding: 60px 0;
        margin-top: 80px;
    }

    .privacy-notice-content-section,
    .responsible-content-section,
    .terms-content-section,
    .privacy-content-section {
        padding: 60px 0;
    }

    .why-choose-about,
    .our-mission,
    .what-we-offer,
    .contact-section {
        padding: 60px 0;
    }

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

    .game-thumbnail {
        height: 300px;
    }

    .feature-item {
        padding: 24px 0;
    }

    .offer-item {
        padding: 24px 0;
    }
}

@media (max-width: 480px) {
    .about-hero-text p {
        font-size: 16px;
    }

    .contact-content {
        gap: 32px;
    }

    .contact-form-wrapper {
        padding: 0;
    }

    .contact-info-title {
        font-size: 24px;
    }

    .contact-email {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .feature-content h3 {
        font-size: 20px;
    }

    .offer-content h3 {
        font-size: 20px;
    }

    .mission-subtitle {
        font-size: 17px;
    }
}

/* ============================================
   REDESIGNED ABOUT PAGE STYLES
   ============================================ */

.about-hero-editorial {
    margin-top: 100px;
    padding: 120px 0 100px;
    background: var(--color-base);
}

.about-hero-content-editorial {
    max-width: 800px;
}

.about-hero-headline {
    font-family: var(--font-headline);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.about-hero-lead {
    font-size: clamp(20px, 2.5vw, 24px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.about-hero-text {
    font-size: clamp(17px, 2vw, 19px);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.about-content-editorial {
    padding: 100px 0;
    background: var(--color-base);
}

.about-section {
    max-width: 900px;
}

.about-section-headline {
    font-family: var(--font-headline);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.about-section-intro {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 64px;
    font-weight: 300;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-feature-item {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(122, 168, 184, 0.1);
    transition: all 0.4s ease;
}

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

.about-feature-item:hover {
    padding-left: 16px;
}

.feature-line {
    width: 1px;
    background: rgba(122, 168, 184, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.about-feature-item:hover .feature-line {
    background: var(--accent-cyan);
    width: 2px;
}

.feature-content-wrapper {
    flex: 1;
}

.feature-heading {
    font-family: var(--font-headline);
    font-size: 26px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.mission-editorial {
    padding: 100px 0;
    background: var(--color-base);
}

.mission-content-editorial {
    max-width: 800px;
    text-align: center;
}

.mission-headline {
    font-family: var(--font-headline);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.mission-text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.offerings-editorial {
    padding: 100px 0;
    background: var(--color-base);
}

.offerings-section {
    max-width: 900px;
}

.offerings-headline {
    font-family: var(--font-headline);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.offerings-intro {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 64px;
    font-weight: 300;
}

.offerings-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.offering-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(122, 168, 184, 0.1);
    transition: all 0.4s ease;
    align-items: center;
}

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

.offering-item:hover {
    padding-left: 16px;
}

.offering-line {
    width: 60px;
    height: 1px;
    background: rgba(122, 168, 184, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.offering-item:hover .offering-line {
    background: var(--accent-cyan);
    width: 80px;
}

.offering-text {
    font-family: var(--font-headline);
    font-size: 22px;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin: 0;
}

/* ============================================
   REDESIGNED GAMES PAGE STYLES
   ============================================ */

.games-hero-editorial {
    margin-top: 100px;
    padding: 120px 0 100px;
    background: var(--color-base);
}

.games-hero-content {
    max-width: 800px;
}

.games-hero-headline {
    font-family: var(--font-headline);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.games-hero-text {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.games-collection-editorial {
    padding: 100px 0;
    background: var(--color-base);
}

.games-strip-editorial {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(122, 168, 184, 0.3) transparent;
}

.games-strip-editorial::-webkit-scrollbar {
    height: 2px;
}

.games-strip-editorial::-webkit-scrollbar-track {
    background: transparent;
}

.games-strip-editorial::-webkit-scrollbar-thumb {
    background: rgba(122, 168, 184, 0.3);
    border-radius: 2px;
}

.game-item-editorial {
    flex: 0 0 auto;
    width: 360px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease;
}

.game-item-editorial:hover {
    transform: translateY(-6px);
}

.game-image-container {
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: var(--color-charcoal);
}

.game-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.9;
}

.game-item-editorial:hover .game-image-container img {
    transform: scale(1.08);
    opacity: 1;
}

.game-name {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-align: left;
}

.game-item-editorial:hover .game-name {
    color: var(--accent-cyan);
}

/* Responsive Styles for Redesigned Pages */
@media (max-width: 968px) {
    .about-feature-item {
        gap: 24px;
        padding: 32px 0;
    }

    .feature-heading {
        font-size: 24px;
    }

    .offering-item {
        gap: 24px;
        padding: 24px 0;
    }

    .offering-text {
        font-size: 20px;
    }

    .games-strip-editorial {
        gap: 32px;
    }

    .game-item-editorial {
        width: 320px;
    }

    .game-image-container {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .about-hero-editorial,
    .games-hero-editorial {
        padding: 80px 0 60px;
        margin-top: 80px;
    }

    .about-content-editorial,
    .mission-editorial,
    .offerings-editorial,
    .games-collection-editorial {
        padding: 60px 0;
    }

    .about-section-intro,
    .offerings-intro {
        margin-bottom: 48px;
    }

    .about-feature-item {
        padding: 28px 0;
    }

    .feature-heading {
        font-size: 22px;
    }

    .offering-item {
        padding: 20px 0;
    }

    .offering-text {
        font-size: 18px;
    }

    .games-strip-editorial {
        gap: 24px;
    }

    .game-item-editorial {
        width: 280px;
    }

    .game-image-container {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .about-hero-headline,
    .games-hero-headline {
        font-size: 36px;
    }

    .about-hero-lead,
    .games-hero-text {
        font-size: 16px;
    }

    .about-section-headline,
    .mission-headline,
    .offerings-headline {
        font-size: 28px;
    }

    .about-section-intro,
    .mission-text,
    .offerings-intro {
        font-size: 17px;
    }

    .about-feature-item {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }

    .feature-line {
        width: 60px;
        height: 1px;
    }

    .feature-heading {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    .offering-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
        align-items: flex-start;
    }

    .offering-line {
        width: 40px;
    }

    .offering-text {
        font-size: 17px;
    }

    .games-strip-editorial {
        gap: 16px;
    }

    .game-item-editorial {
        width: 260px;
    }

    .game-image-container {
        height: 320px;
    }

    .game-name {
        font-size: 20px;
    }
}
