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

:root {
    --bg-dark: #0f0f14;
    --bg-darker: #0a0a0e;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.82);
    --text-muted-soft: rgba(255, 255, 255, 0.65);
    --accent-blue: #3b82f6;
    --accent-blue-bright: #60a5fa;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    --gradient-pink: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --glow-blue: 0 0 40px rgba(59, 130, 246, 0.4);
    --glow-purple: 0 0 40px rgba(139, 92, 246, 0.4);
    --glow-pink: 0 0 40px rgba(236, 72, 153, 0.3);
    --accent-teal: #06b6d4;
    --gradient-blue-purple: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --touch-min: 44px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

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

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

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

/* Background effects */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bg-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(236, 72, 153, 0.25), transparent);
    background-size: 200px 200px;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { opacity: 1; transform: translate(0, 0); }
    50% { opacity: 0.7; transform: translate(10px, -10px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.35rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: var(--touch-min);
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-link.active {
    color: var(--accent-blue-bright);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-min);
    padding: 0.65rem 1.5rem;
    background: var(--accent-blue);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.hero-trust {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-width: 240px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: var(--touch-min);
    padding: 0.95rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
}

.btn-icon {
    flex-shrink: 0;
}

/* Hero visual - partner image */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-partner-img {
    max-width: 380px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.2));
}

/* Key Features bar */
.features-bar {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: var(--text-white);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
}

.feature-pill-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue-bright);
}

.feature-pill-icon svg {
    width: 28px;
    height: 28px;
}

/* Our Platforms - Hexagonal cards */
.platforms-section {
    position: relative;
    z-index: 1;
    padding: 4rem 0 6rem;
}

.platforms-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.platforms-hex-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hex-card {
    width: 200px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s, filter 0.3s;
    cursor: default;
}

.hex-card:hover {
    transform: scale(1.05);
}

.hex-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
}

.hex-card-blue {
    background: var(--gradient-blue);
    box-shadow: var(--glow-blue);
}

.hex-card-purple {
    background: var(--gradient-purple);
    box-shadow: var(--glow-purple);
}

.hex-card-pink {
    background: var(--gradient-pink);
    box-shadow: var(--glow-pink);
}

.hex-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hex-card-icon .icon-overlay {
    position: absolute;
    bottom: -4px;
    right: -8px;
}

.hex-card-label {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

/* About Us */
.about-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hex-mesh {
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.2));
}

.about-mesh-svg {
    width: 100%;
    height: auto;
}

.about-content {
    max-width: 480px;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-about {
    background: var(--gradient-blue-purple);
    color: white;
    border: none;
    min-height: var(--touch-min);
}

.btn-about:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

/* What We Do */
.what-we-do-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.what-we-do-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.service-hex {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.35);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    padding: 2rem 1.5rem;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.service-hex:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.service-hex-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-hex-icon {
    color: var(--accent-blue-bright);
}

.service-hex-2 .service-hex-icon { color: var(--accent-purple); }
.service-hex-3 .service-hex-icon { color: var(--accent-teal); }
.service-hex-4 .service-hex-icon { color: var(--accent-pink); }

.service-hex-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-white);
    line-height: 1.3;
}

.service-hex-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Platforms We Work With */
.platforms-work-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.platforms-work-glow {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.45);
    background: rgba(15, 15, 20, 0.7);
    box-shadow:
        0 0 70px rgba(139, 92, 246, 0.25),
        0 0 120px rgba(59, 130, 246, 0.12),
        0 0 60px rgba(6, 182, 212, 0.06),
        inset 0 0 80px rgba(59, 130, 246, 0.04);
}

.platforms-work-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-white);
}

.platform-logos-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 100px;
    max-width: 140px;
}

.platform-logo-item-featured {
    flex: 0 0 auto;
    min-width: 120px;
}

.platform-logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.platform-logo-item-featured .platform-logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.platform-logo-icon svg {
    width: 32px;
    height: 32px;
}

.platform-logo-item-featured .platform-logo-icon svg {
    width: 40px;
    height: 40px;
}

.platform-logo-icon:hover {
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.2);
}

.platform-logo-web { color: var(--accent-blue-bright); }
.platform-logo-mobile { color: #34d399; }
.platform-logo-play { color: var(--accent-purple); }
.platform-logo-console { color: var(--accent-pink); }
.platform-logo-app { color: var(--accent-teal); }

.platform-logo-img {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
}

.platform-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.platform-logo-icon.platform-logo-img img {
    width: 48px;
    height: 48px;
}

.platform-logo-item-featured .platform-logo-icon.platform-logo-img img {
    width: 56px;
    height: 56px;
}

.platform-logo-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-align: center;
}

.platforms-work-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    color: var(--text-white);
}

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

.platform-work-hex {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.35);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    padding: 2rem 1.5rem;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.platform-work-hex:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.platform-work-hex-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.platform-work-hex-icon {
    color: var(--accent-blue-bright);
}

.platform-work-hex:nth-child(2) .platform-work-hex-icon { color: var(--accent-purple); }
.platform-work-hex:nth-child(3) .platform-work-hex-icon { color: var(--accent-teal); }
.platform-work-hex:nth-child(4) .platform-work-hex-icon { color: var(--accent-pink); }

.platform-work-hex-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-white);
    line-height: 1.3;
}

.platform-work-hex-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* How It Works */
.how-it-works-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.how-it-works-glow {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.45);
    background: rgba(15, 15, 20, 0.7);
    box-shadow:
        0 0 70px rgba(139, 92, 246, 0.25),
        0 0 120px rgba(59, 130, 246, 0.12),
        0 0 60px rgba(6, 182, 212, 0.08),
        inset 0 0 80px rgba(59, 130, 246, 0.04);
}

.how-it-works-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    color: var(--text-white);
}

.how-it-works-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.how-step {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.how-step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(135deg, var(--accent-purple), var(--accent-blue), var(--accent-teal)) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue-bright);
    flex-shrink: 0;
    transition: box-shadow 0.3s, transform 0.3s;
}

.how-step:hover .how-step-circle {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.how-step-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    color: rgba(139, 92, 246, 0.6);
}

.how-step-arrow svg {
    width: 24px;
    height: 24px;
}

.how-step-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.45;
}

/* Contact / Submit Your Game */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 5rem 0 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-glow {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.45);
    background: rgba(15, 15, 20, 0.7);
    box-shadow:
        0 0 70px rgba(139, 92, 246, 0.25),
        0 0 120px rgba(59, 130, 246, 0.12),
        0 0 60px rgba(6, 182, 212, 0.08),
        inset 0 0 80px rgba(59, 130, 246, 0.04);
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-white);
    line-height: 1.3;
}

.contact-form {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-form-left {
    display: flex;
    align-items: flex-start;
}

.btn-submit-game {
    min-height: var(--touch-min);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--accent-blue);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-submit-game:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

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

.contact-form-right input,
.contact-form-right textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-right textarea {
    min-height: 100px;
}

.contact-form-right input::placeholder,
.contact-form-right textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-right input:focus,
.contact-form-right textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.contact-form-right textarea {
    resize: vertical;
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 14, 0.8);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 100%;
    height: 100%;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-email {
    font-size: 0.95rem;
    color: var(--accent-blue-bright);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-email:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    background: rgba(139, 92, 246, 0.3);
    color: white;
    transform: scale(1.05);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Responsive - Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Tablet/Mobile */
@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        margin: 0 auto;
    }

    .hero-visual {
        order: -1;
    }

    .hero-partner-img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .nav-menu {
        gap: 1.25rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .features-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-padding: 0 24px;
        padding: 0.5rem 24px 1.5rem;
        margin: 0 -24px;
        gap: 1.5rem;
    }

    .features-row::-webkit-scrollbar {
        height: 6px;
    }

    .feature-pill {
        scroll-snap-align: center;
        flex: 0 0 200px;
        min-width: 200px;
    }

    .platforms-hex-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-padding: 0 24px;
        padding: 0.5rem 24px 1.5rem;
        margin: 0 -24px;
        gap: 1.5rem;
    }

    .platforms-hex-grid::-webkit-scrollbar {
        height: 6px;
    }

    .platforms-hex-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }

    .platforms-hex-grid::-webkit-scrollbar-thumb {
        background: rgba(139, 92, 246, 0.4);
        border-radius: 3px;
    }

    .hex-card {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .platforms-heading {
        font-size: 2rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .about-visual {
        order: -1;
    }

    .what-we-do-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-padding: 0 24px;
        padding: 0.5rem 24px 1.5rem;
        margin: 0 -24px;
        gap: 1.5rem;
    }

    .what-we-do-grid::-webkit-scrollbar {
        height: 6px;
    }

    .what-we-do-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }

    .what-we-do-grid::-webkit-scrollbar-thumb {
        background: rgba(139, 92, 246, 0.4);
        border-radius: 3px;
    }

    .service-hex {
        min-height: 220px;
        scroll-snap-align: center;
        flex: 0 0 280px;
        min-width: 280px;
    }

    .what-we-do-heading {
        font-size: 2rem;
    }

    .platforms-work-glow {
        padding: 2rem 1.5rem;
    }

    .platforms-work-title {
        font-size: 1.85rem;
    }

    .platform-logos-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-padding: 0 24px;
        padding: 0.5rem 24px 1.5rem;
        margin: 0 -24px;
        gap: 1rem;
    }

    .platform-logos-row::-webkit-scrollbar {
        height: 6px;
    }

    .platform-logo-item {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .platform-logo-icon {
        width: 56px;
        height: 56px;
    }

    .platform-logo-item-featured .platform-logo-icon {
        width: 64px;
        height: 64px;
    }

    .platforms-work-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scroll-padding: 0 24px;
        padding: 0.5rem 24px 1.5rem;
        margin: 0 -24px;
        gap: 1.5rem;
    }

    .platforms-work-grid::-webkit-scrollbar {
        height: 6px;
    }

    .platforms-work-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }

    .platforms-work-grid::-webkit-scrollbar-thumb {
        background: rgba(139, 92, 246, 0.4);
        border-radius: 3px;
    }

    .platform-work-hex {
        scroll-snap-align: center;
        flex: 0 0 280px;
        min-width: 280px;
    }

    .how-it-works-flow {
        justify-content: center;
        gap: 1rem;
    }

    .how-step {
        min-width: 120px;
        max-width: 160px;
    }

    .how-step-circle {
        width: 60px;
        height: 60px;
    }

    .how-step-circle svg {
        width: 28px;
        height: 28px;
    }

    .how-step-arrow {
        padding-top: 1rem;
    }

    .how-step-arrow svg {
        width: 20px;
        height: 20px;
    }

    .how-it-works-title {
        font-size: 1.85rem;
    }

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

    .contact-form-left {
        justify-content: center;
    }

    .contact-title {
        font-size: 1.65rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .nav-menu li:not(:last-child) {
        display: none;
    }

    .nav-menu li:last-child {
        margin-left: auto;
    }

    .hex-card {
        width: 180px;
        height: 208px;
    }

    .what-we-do-grid .service-hex {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .about-heading {
        font-size: 2rem;
    }

    .platforms-work-title {
        font-size: 1.6rem;
    }

    .platform-logos-row {
        justify-content: flex-start;
    }

    .platform-logo-item {
        max-width: none;
    }

    .how-it-works-flow {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .how-step {
        max-width: 100%;
        min-width: 0;
    }

    .how-step-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .how-it-works-title {
        font-size: 1.6rem;
    }

    .contact-glow {
        padding: 2rem 1.5rem;
    }

    .contact-title {
        font-size: 1.45rem;
    }

    .btn-submit-game {
        width: 100%;
        min-height: 48px;
    }

    .hero-buttons {
        max-width: 100%;
    }

    .btn {
        min-height: 48px;
        width: 100%;
        justify-content: center;
    }

    .footer-social-link {
        min-width: 44px;
        min-height: 44px;
    }

    .platforms-hex-grid,
    .what-we-do-grid,
    .platforms-work-grid,
    .platform-logos-row,
    .features-row {
        scroll-padding: 0 16px;
        padding-left: 16px;
        padding-right: 16px;
        margin-left: -16px;
        margin-right: -16px;
    }
}
