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

:root {
    /* New Color System - Deep Blue + Electric Cyan */
    --primary-navy: #0a1a2e;
    --secondary-navy: #1a2a3e;
    --accent-cyan: #00d9ff;
    --accent-cyan-light: #00b8d4;
    --accent-cyan-dark: #0099b3;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a5568;
    --text-light: #718096;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(10, 26, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 26, 46, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 26, 46, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-cyan-dark) 100%);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.25);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-navy);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.25;
    mix-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.85) 0%, rgba(26, 42, 62, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 720px;
    padding: 4rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.75rem;
    line-height: 1.15;
    color: var(--bg-white);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 400;
    max-width: 600px;
}

/* Buttons - New Style (Not Pills) */
.cta-button {
    display: inline-block;
    padding: 1rem 2.25rem;
    background: var(--accent-cyan);
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 217, 255, 0.4);
    background: var(--accent-cyan-light);
}

.cta-button.large {
    padding: 1.25rem 2.75rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--text-medium);
    line-height: 1.75;
    font-weight: 400;
}

/* Popular Games Section */
.popular-games {
    background: var(--bg-white);
    padding: 6rem 0;
    position: relative;
}

.popular-games-background {
    display: none;
}

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

.game-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-cyan);
}

.game-thumbnail {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    display: block;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.08);
}

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

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

.play-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-navy);
    box-shadow: 0 4px 16px rgba(0, 217, 255, 0.4);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.game-card:hover .play-icon {
    transform: scale(1);
}

.game-title {
    padding: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-align: left;
    margin: 0;
    transition: color 0.3s ease;
}

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

/* How It Works Section */
.how-it-works {
    background: var(--bg-light);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-cyan);
    transition: height 0.3s ease;
}

.step-card:hover::before {
    height: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-cyan);
}

.step-image {
    width: 100%;
    height: 220px;
    margin-bottom: 1.75rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.75;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--bg-white);
    position: relative;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.why-choose-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-light);
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose-image:hover img {
    transform: scale(1.03);
}

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

.benefit-card {
    background: var(--bg-light);
    padding: 2.25rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
    border-color: var(--accent-cyan);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.benefit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-navy);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
}

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

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.9) 0%, rgba(26, 42, 62, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
}

.cta-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--bg-white);
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    padding: 5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 600px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    color: var(--bg-white);
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-cyan-dark) 100%);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

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

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-bottom {
    margin-bottom: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-disclaimer {
    background: rgba(0, 217, 255, 0.1);
    padding: 1.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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 24px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.25rem;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.35rem;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 3rem 0;
    }

    .section-header {
        text-align: left;
    }

    .steps-grid,
    .games-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .game-thumbnail {
        height: 280px;
    }

    .step-image {
        height: 200px;
    }

    .cta-content {
        text-align: left;
    }
}

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

    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero-content {
        padding: 2.5rem 0;
    }

    .step-card,
    .benefit-card {
        padding: 2rem;
    }

    .game-thumbnail {
        height: 240px;
    }

    .step-image {
        height: 180px;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .cta-button.large {
        padding: 1.1rem 2.25rem;
        font-size: 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--accent-cyan);
    color: var(--primary-navy);
}

/* Additional page-specific 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: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
}

.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-bg-image,
.collection-hero-bg-image,
.contact-hero-bg-image,
.privacy-hero-bg-image,
.responsible-hero-bg-image,
.privacy-notice-hero-bg-image,
.terms-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.about-hero-overlay,
.collection-hero-overlay,
.contact-hero-overlay,
.privacy-hero-overlay,
.responsible-hero-overlay,
.privacy-notice-hero-overlay,
.terms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.85) 0%, rgba(26, 42, 62, 0.75) 100%);
    z-index: 1;
}

.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;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-title,
.collection-hero-title,
.contact-hero-title,
.privacy-hero-title,
.responsible-hero-title,
.privacy-notice-hero-title,
.terms-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--bg-white);
    letter-spacing: -0.5px;
}

.about-hero-subtitle,
.collection-hero-subtitle,
.contact-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    font-weight: 400;
}

/* Content sections for other pages */
.privacy-content-section,
.responsible-content-section,
.privacy-notice-content-section,
.terms-content-section,
.contact-section,
.games-collection {
    background: var(--bg-light);
    padding: 5rem 0;
}

.privacy-block,
.responsible-block,
.privacy-notice-block,
.terms-block {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.privacy-block:hover,
.responsible-block:hover,
.privacy-notice-block:hover,
.terms-block:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-cyan);
}

.privacy-block-title,
.responsible-block-title,
.privacy-notice-section-number,
.terms-section-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.privacy-block-text,
.responsible-block-text,
.privacy-notice-block-text,
.terms-block-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 1rem;
}

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

.privacy-list li,
.responsible-list li,
.privacy-notice-list li,
.terms-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.75;
}

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

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

.privacy-link:hover,
.responsible-link:hover,
.privacy-notice-link:hover,
.terms-link:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

/* Contact form styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    max-width: 600px;
}

.contact-info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
    line-height: 1.3;
}

.contact-info-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
}

.email-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.email-link {
    color: var(--accent-cyan-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.contact-response-time {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 1.5rem 0;
    font-style: italic;
}

.contact-closing {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-top: 2rem;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    background: var(--bg-white);
}

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

.submit-button {
    width: 100%;
    margin-top: 0.5rem;
}

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

    .privacy-content-section,
    .responsible-content-section,
    .privacy-notice-content-section,
    .terms-content-section,
    .contact-section,
    .games-collection {
        padding: 3rem 0;
    }

    .privacy-block,
    .responsible-block,
    .privacy-notice-block,
    .terms-block {
        padding: 2rem;
    }
}

/* About Page Specific Styles */
.about-hero-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.about-hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 1rem;
}

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

.why-choose-about {
    background: var(--bg-white);
    padding: 5rem 0;
}

.why-choose-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-about-text {
    max-width: 600px;
}

.why-choose-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.why-choose-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-choose-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.3rem;
}

.why-choose-closing {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 2rem;
}

.why-choose-about-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-light);
}

.why-choose-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.why-choose-about-image:hover img {
    transform: scale(1.02);
}

.our-mission {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
}

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

.mission-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.85) 0%, rgba(26, 42, 62, 0.75) 100%);
    z-index: 1;
}

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

.mission-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--bg-white);
    letter-spacing: -0.5px;
}

.mission-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.what-we-offer {
    background: var(--bg-light);
    padding: 5rem 0;
}

.what-we-offer-intro {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-medium);
    max-width: 800px;
    margin: 1rem 0 3rem;
    line-height: 1.75;
    font-weight: 400;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-cyan);
    transition: height 0.3s ease;
}

.offer-card:hover::before {
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-cyan);
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.offer-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .why-choose-about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 3rem 0;
    }

    .about-hero-text {
        padding: 2rem;
    }

    .our-mission {
        padding: 4rem 0;
    }

    .mission-content {
        padding: 1.5rem 0;
    }

    .mission-subtitle {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .privacy-block,
    .responsible-block,
    .privacy-notice-block,
    .terms-block {
        padding: 1.5rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info-title {
        font-size: 1.8rem;
    }

    .contact-email {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .about-hero-text {
        padding: 1.5rem;
    }

    .mission-subtitle {
        padding: 1.5rem;
    }

    .offer-card {
        padding: 2rem;
    }
}
