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

html {
    scroll-behavior: smooth;
}

body {
    background: #0a1526 !important;
    color: #e0f0ff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* --- MODERN NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 42, 56, 0.82);
    backdrop-filter: blur(18px) saturate(1.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    border-bottom: 1.5px solid rgba(120, 119, 198, 0.22);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 32px 0 rgba(120,215,226,0.10), 0 1.5px 16px 0 rgba(30,42,56,0.13);
}
.navbar.scrolled {
    background: rgba(30, 42, 56, 0.97);
    box-shadow: 0 6px 32px 0 rgba(120,215,226,0.18), 0 2px 20px rgba(120, 119, 198, 0.22);
}
.brand-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, #78d7e2 0%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 1px 3px #78d7e299);
    text-shadow: 0 1px 4px #78d7e288;
    transition: text-shadow 0.3s;
}
.brand-text:hover {
    text-shadow: 0 2px 8px #78d7e2aa, 0 0 4px #7877c699;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 32px;
}
.nav-menu {
    display: flex;
    gap: 44px;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: #eaf6ff;
    font-weight: 600;
    font-size: 1.13rem;
    letter-spacing: 0.04em;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
    padding: 2px 0;
}
.nav-link:hover, .nav-link:focus {
    color: #78d7e2;
    text-shadow: 0 0 12px #78d7e2cc, 0 0 2px #7877c6;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #78d7e2 0%, #7877c6 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px #78d7e2cc;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover::after, .nav-link:focus::after {
    transform: translateX(-50%) scaleX(1);
}
.nav-link.active, .nav-link[aria-current="page"] {
    color: #aee6ff;
}
.nav-link.active::after, .nav-link[aria-current="page"]::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, #aee6ff 0%, #78d7e2 100%);
}
.nav-cta .cta-button.nav-cta-btn {
    padding: 10px 28px;
    font-size: 1.08rem;
    border-radius: 22px;
    background: linear-gradient(90deg, #78d7e2 0%, #7877c6 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 1px 6px rgba(120,215,226,0.10);
    border: none;
    transition: background 0.22s, box-shadow 0.22s, transform 0.22s;
    letter-spacing: 0.02em;
    min-width: unset;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 1px 3px #78d7e299);
    position: relative;
    overflow: hidden;
}
.nav-cta .cta-button.nav-cta-btn:hover, .nav-cta .cta-button.nav-cta-btn:focus {
    background: linear-gradient(90deg, #aee6ff 0%, #78d7e2 100%);
    color: #23243a;
    box-shadow: 0 2px 10px rgba(120,215,226,0.13);
    transform: translateY(-2px) scale(1.04);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 18px;
}
.nav-toggle span {
    width: 28px;
    height: 3.5px;
    background: linear-gradient(90deg, #78d7e2 0%, #7877c6 100%);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        background: rgba(30, 42, 56, 0.98);
        box-shadow: 0 8px 32px 0 rgba(120,215,226,0.13);
        border-radius: 0 0 24px 24px;
        flex-direction: column;
        gap: 0;
        min-width: 220px;
        z-index: 1001;
        padding: 18px 0 18px 0;
        animation: fadeInUp 0.4s cubic-bezier(.4,0,.2,1);
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-link {
        padding: 16px 32px;
        font-size: 1.15rem;
        width: 100%;
        text-align: left;
        border-radius: 0;
        border-left: 3px solid transparent;
        transition: border-color 0.2s, color 0.2s;
    }
    .nav-link:hover, .nav-link:focus {
        border-left: 3px solid #78d7e2;
        background: rgba(120,215,226,0.07);
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    .nav-cta .cta-button.nav-cta-btn {
        width: 90%;
        margin: 0 auto;
    }
    .nav-toggle {
        display: flex;
    }
}

.nav-cta {
    display: flex;
    align-items: center;
    margin-left: 18px;
}

.nav-cta .cta-button.nav-cta-btn {
    padding: 7px 18px;
    font-size: 1rem;
    border-radius: 18px;
    background: linear-gradient(90deg, #78d7e2 0%, #7877c6 100%);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(120,215,226,0.10);
    border: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 0.01em;
    min-width: unset;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-cta .cta-button.nav-cta-btn:hover, .nav-cta .cta-button.nav-cta-btn:focus {
    background: linear-gradient(90deg, #aee6ff 0%, #78d7e2 100%);
    color: #23243a;
    box-shadow: 0 4px 16px rgba(120,215,226,0.18);
    transform: translateY(-1px) scale(1.04);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(120, 119, 198, 0.1) 0%, rgba(10, 10, 15, 0.8) 70%);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s cubic-bezier(.4,0,.2,1) !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.65);
    backdrop-filter: blur(2px);
    z-index: -1;
    transition: opacity 0.5s cubic-bezier(.4,0,.2,1) !important;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-title-bg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    height: 100%;
    z-index: 0;
    background: linear-gradient(90deg, rgba(120, 119, 198, 0.15) 0%, rgba(120, 215, 226, 0.1) 100%);
    border-radius: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(120, 119, 198, 0.2);
}
.hero-video-fade ~ .hero-content .hero-title-bg {
    opacity: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #78d7e2 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(120, 215, 226, 0.5);
}

.hero-video-fade ~ .hero-content .hero-title {
    text-shadow: 0 0 30px rgba(120, 215, 226, 0.8), 0 0 60px rgba(120, 119, 198, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    color: #b8b8c8;
}

.cta-button, .cta-button:focus, .cta-button:active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #7877c6 0%, #78d7e2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(120, 119, 198, 0.4);
}

.cta-button:hover, .cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(120, 119, 198, 0.6);
    background: linear-gradient(135deg, #8a89d7 0%, #89e8f3 100%);
}

.cta-button.secondary, .cta-button.secondary:focus, .cta-button.secondary:active {
    background: rgba(120, 119, 198, 0.1);
    border: 2px solid #7877c6;
    color: #78d7e2;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover, .cta-button.secondary:focus {
    background: rgba(120, 215, 226, 0.1);
    border-color: #78d7e2;
    color: #ffffff;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateY(2px);
}

.cta-button .arrow-icon path {
    stroke: currentColor;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #78d7e2);
    animation: bounce 2s infinite;
    border-radius: 2px;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    animation: glowMove 10s ease-in-out infinite alternate;
}

.neon-grid line {
    stroke: url(#gridLine);
    stroke-width: 1;
    opacity: 0.6;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: glowMove 8s ease-in-out infinite alternate;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.3) 0%, transparent 70%);
    top: 20%;
    left: 10%;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(120, 215, 226, 0.2) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
}

@keyframes glowMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-20px, 10px) scale(0.9);
        opacity: 0.6;
    }
}

/* About Studio Section */
.about-studio {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(20, 20, 30, 0.9) 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image, .founders-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.2);
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.founders-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: none;
    transition: all 0.5s ease;
}

.founders-img.active {
    display: block;
}

.about-text {
    color: #ffffff;
}

.section-title {
    background: none;
    color: #aee6ff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7877c6, #78d7e2);
    border-radius: 2px;
}

.section-title:hover {
    text-shadow: 0 0 20px rgba(120, 215, 226, 0.5);
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #b8b8c8;
    line-height: 1.7;
}

.vision-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #78d7e2;
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid #7877c6;
    background: rgba(120, 119, 198, 0.1);
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(10px);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.stat {
    background: linear-gradient(135deg, rgba(120,215,226,0.10) 0%, rgba(120,119,198,0.10) 100%);
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(30,42,56,0.18);
    padding: 28px 38px 18px 38px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1.5px solid rgba(120,215,226,0.13);
}

.stat:hover {
    box-shadow: 0 8px 40px 0 rgba(120,215,226,0.25);
    transform: translateY(-4px) scale(1.03);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #78d7e2;
    margin-bottom: 0.2em;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 1.05rem;
    color: #b8c8e6;
    font-weight: 500;
}

/* Game Showcase Section */
.game-showcase {
    padding: 150px 0 120px 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    position: relative;
    min-height: 100vh;
}

.game-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(120, 215, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    color: #b6c8e6;
    text-align: center;
    margin-bottom: 32px;
}

.screenshots-carousel {
    margin: 3rem 0;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.3);
}

.carousel-slide {
    display: none;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    perspective: 300px;
    transform-style: preserve-3d;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(120, 119, 198, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(10px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(120, 215, 226, 0.1);
}

.dot:hover {
    transform: translateZ(15px) scale(1.2);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(120, 215, 226, 0.3);
}

.dot.active {
    background: #78d7e2;
    transform: translateZ(20px) scale(1.3);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(120, 215, 226, 0.6),
        0 0 0 1px rgba(120, 215, 226, 0.3);
}

.gameplay-video {
    margin: 3rem 0;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.3);
}

.video-container video {
    width: 100%;
    border-radius: 20px;
}

/* Feature cards styling is now handled by the horizontal layout section above */

/* Platform tags styling is now handled by the horizontal layout section above */

/* Studio Values Section */
.studio-values {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(30, 20, 40, 0.9) 100%);
    position: relative;
}

.studio-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(120, 215, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.value-card {
    background: rgba(36, 48, 66, 0.7);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(30,42,56,0.10);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px 0 rgba(30,42,56,0.10);
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(36, 48, 66, 0.8);
    box-shadow: 0 10px 30px rgba(120, 119, 198, 0.3);
    border-color: rgba(120, 215, 226, 0.4);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #78d7e2;
    font-weight: 600;
}

.value-card p {
    color: #b8b8c8;
    line-height: 1.6;
}

/* Contact Section - Removed (using modern version below) */

/* Footer */
.footer {
    background: rgba(30, 42, 56, 0.85);
    padding: 2rem 0;
    border-top: 1px solid rgba(120, 119, 198, 0.2);
    border-radius: 0 0 24px 24px;
}

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

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

.footer-logo-img {
    width: 30px;
    height: 30px;
}

.footer-logo-text {
    font-weight: 600;
    color: #78d7e2;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b8b8c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-links a:focus {
    color: #78d7e2;
}

.footer-copyright {
    color: #b8b8c8;
    font-size: 0.9rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Floating Particles */
/* .floating-particles { ... } (REMOVED) */
/* .particle { ... } (REMOVED) */
/* .particle:nth-child(3n) { ... } (REMOVED) */
/* .particle:nth-child(4n) { ... } (REMOVED) */
/* .particle:nth-child(5n) { ... } (REMOVED) */

.tech-line {
    position: absolute;
    height: 2px;
    border-radius: 2px;
    opacity: 0.5;
    background: linear-gradient(90deg, #78d7e2 0%, #7877c6 100%);
    box-shadow: 0 0 16px 2px #78d7e2cc;
    filter: blur(0.5px);
    will-change: transform, opacity;
    animation: techLineMove 16s linear infinite;
}
.tech-line.vertical {
    width: 2px !important;
    height: unset;
    min-height: 80px;
    max-height: 180px;
    background: linear-gradient(180deg, #78d7e2 0%, #7877c6 100%);
    animation: techLineMoveVertical 18s linear infinite;
}
@keyframes techLineMove {
    0% { transform: translateX(0) scaleX(1); opacity: 0.5; }
    10% { opacity: 1; }
    50% { transform: translateX(40vw) scaleX(1.1); opacity: 0.7; }
    90% { opacity: 1; }
    100% { transform: translateX(-10vw) scaleX(1); opacity: 0.5; }
}
@keyframes techLineMoveVertical {
    0% { transform: translateY(0) scaleY(1); opacity: 0.5; }
    10% { opacity: 1; }
    50% { transform: translateY(30vh) scaleY(1.1); opacity: 0.7; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scaleY(1); opacity: 0.5; }
}

/* Atlas Space-style ecosystem visualization */
.ecosystem-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(120, 215, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 119, 198, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Founders Section - Horizontal Layout */
.founders-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    position: relative;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(120, 215, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.founders-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #78d7e2 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founders-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card {
    background: rgba(36, 48, 66, 0.7);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(30,42,56,0.10);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    max-width: 300px;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(120, 215, 226, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.4);
    border-color: rgba(120, 215, 226, 0.5);
}

.founder-card:hover::before {
    opacity: 1;
}

.founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(120, 215, 226, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.founder-card:hover .founder-photo {
    border-color: #78d7e2;
    box-shadow: 0 0 20px rgba(120, 215, 226, 0.5);
    transform: scale(1.05);
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.founder-role {
    color: #78d7e2;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.founder-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.founder-socials .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.founder-socials .social-icon img {
    width: 32px;
    height: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(10, 102, 194, 0.3));
}

.founder-socials .social-icon:hover {
    background: transparent;
    transform: translateY(-3px) scale(1.1);
}

.founder-socials .social-icon:hover img {
    filter: drop-shadow(0 4px 12px rgba(10, 102, 194, 0.5));
    transform: scale(1.05);
}

/* Partners Section - Horizontal Layout */
.stakeholders {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(30, 20, 40, 0.9) 100%);
    position: relative;
}

.stakeholders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stakeholders .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stakeholders .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #78d7e2 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stakeholders .section-subtitle {
    color: #b8b8c8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.partners-grid {
    display: flex;
    gap: 1.2vw;
    flex-wrap: nowrap;
    min-width: 100vw;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
}

.partner-logo {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    min-width: clamp(80px, 10vw, 120px);
    max-width: clamp(80px, 10vw, 120px);
    flex: 0 0 clamp(80px, 10vw, 120px);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    position: relative;
    overflow: visible;
    pointer-events: none !important;
}

.partner-logo:hover, .partner-logo:active,
.partner-logo:hover .partner-image, .partner-logo:active .partner-image {
    transform: none !important;
    filter: none !important;
    transition: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
    background: none !important;
    border: none !important;
}

.partner-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px #23243a22);
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    pointer-events: none !important;
}

/* Portfolio/Game Showcase - Horizontal Layout */
.feature-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    margin: 6rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(36, 48, 66, 0.7);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(30,42,56,0.10);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(120, 215, 226, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.4);
    border-color: rgba(120, 215, 226, 0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #78d7e2;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #b8b8c8;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Platform Tags - Horizontal Layout */
.platform-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.platform-tag {
    padding: 16px 32px;
    background: rgba(120, 215, 226, 0.1);
    color: #78d7e2;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid rgba(120, 215, 226, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.platform-tag:hover {
    background: rgba(120, 215, 226, 0.2);
    border-color: rgba(120, 215, 226, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(120, 215, 226, 0.2);
}

/* Responsive Design for Horizontal Layouts */
@media (max-width: 1024px) {
    .founders-grid {
        gap: 3rem;
    }
    
    .partners-grid {
        gap: 2rem;
    }
    
    .feature-cards {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .founders-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .founder-card {
        min-width: 250px;
        max-width: 300px;
    }
    
    .partners-grid {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .partner-logo {
        min-width: 160px;
        min-height: 100px;
    }
    
    .feature-cards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .feature-card {
        min-width: 280px;
        max-width: 400px;
    }
    
    .platform-tags {
        gap: 1rem;
    }
    
    .platform-tag {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .founders-section {
        padding: 60px 0;
    }
    
    .founders-grid {
        gap: 1.5rem;
    }
    
    .founder-card {
        padding: 1.5rem;
        min-width: 220px;
    }
    
    .founder-photo {
        width: 100px;
        height: 100px;
    }
    
    .partners-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .partner-logo {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }
}

/* Our Games Section - Horizontal Layout */
/* Modern Previous Games Section */
.previous-games {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.game-card {
    background: rgba(20, 25, 45, 0.4);
    border-radius: 22px;
    box-shadow: 
        0 8px 32px rgba(120,215,226,0.12),
        0 2px 8px rgba(30,42,56,0.15);
    border: 1px solid rgba(120,215,226,0.15);
    backdrop-filter: blur(20px);
    min-width: 280px;
    max-width: 280px;
    height: 420px;
    flex: 0 0 280px;
    margin: 0;
    padding: 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.game-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 16px 48px rgba(120,215,226,0.25),
        0 8px 16px rgba(30,42,56,0.2),
        0 0 30px rgba(120,215,226,0.3);
    border: 1px solid rgba(174,230,255,0.4);
    backdrop-filter: blur(25px);
}
.game-card .game-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #aee6ff;
    margin-bottom: 0.5rem;
    text-align: center;
}
.game-card .game-desc {
    color: #b8b8c8;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.game-card .game-cover {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.game-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
}
.game-card .cta-button {
    margin: 0 auto;
    font-size: 1rem;
    padding: 10px 26px;
    border-radius: 22px;
    background: linear-gradient(135deg, #7877c6 0%, #78d7e2 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: 
        0 2px 8px rgba(120,215,226,0.10),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    letter-spacing: 0.01em;
    min-width: unset;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: playButtonPulse 3s ease-in-out infinite;
    border: 2px solid transparent;
    background-clip: padding-box;
}

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

.game-card .cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #7877c6, #78d7e2, #7877c6, #78d7e2);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: playButtonBorderRotate 4s linear infinite;
}

.game-card .cta-button:hover {
    background: linear-gradient(135deg, #aee6ff 0%, #78d7e2 100%);
    color: #23243a;
    box-shadow: 
        0 8px 25px rgba(120,215,226,0.4),
        0 0 20px rgba(120,215,226,0.6),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(-3px) scale(1.08) rotateX(5deg);
    animation: playButtonHoverGlow 0.8s ease-in-out infinite alternate;
}

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

.game-card .cta-button:hover::after {
    opacity: 1;
}

.game-card .cta-button:active {
    transform: translateY(-1px) scale(1.02);
    animation: playButtonClick 0.2s ease-out;
}

@keyframes playButtonPulse {
    0%, 100% { 
        box-shadow: 
            0 2px 8px rgba(120,215,226,0.10),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% { 
        box-shadow: 
            0 4px 15px rgba(120,215,226,0.25),
            0 0 10px rgba(120,215,226,0.3),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
}

@keyframes playButtonBorderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes playButtonHoverGlow {
    0% { 
        box-shadow: 
            0 8px 25px rgba(120,215,226,0.4),
            0 0 20px rgba(120,215,226,0.6),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
    100% { 
        box-shadow: 
            0 12px 35px rgba(120,215,226,0.6),
            0 0 30px rgba(120,215,226,0.8),
            inset 0 1px 0 rgba(255,255,255,0.4);
    }
}

@keyframes playButtonClick {
    0% { transform: translateY(-3px) scale(1.08); }
    50% { transform: translateY(-1px) scale(0.98) rotateZ(2deg); }
    100% { transform: translateY(-1px) scale(1.02); }
}

/* Modern NEW Badge */
.game-card {
    position: relative;
}

.highlight-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 
        0 4px 12px rgba(255, 107, 107, 0.4),
        0 0 20px rgba(255, 107, 107, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: newBadgePulse 2s ease-in-out infinite;
    transform-origin: center;
    backdrop-filter: blur(10px);
}

.highlight-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53, #ff6b6b, #ff8e53);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: newBadgeBorderRotate 3s linear infinite;
}

.highlight-badge::after {
    content: '✨';
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 0.8rem;
    animation: newBadgeSparkle 1.5s ease-in-out infinite;
}

.game-card:hover .highlight-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 20px rgba(255, 107, 107, 0.6),
        0 0 30px rgba(255, 107, 107, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.game-card:hover .highlight-badge::before {
    opacity: 1;
}

@keyframes newBadgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 4px 12px rgba(255, 107, 107, 0.4),
            0 0 20px rgba(255, 107, 107, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 6px 18px rgba(255, 107, 107, 0.6),
            0 0 30px rgba(255, 107, 107, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes newBadgeBorderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes newBadgeSparkle {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}
@media (max-width: 600px) {
    .games-slider.slider-container {
        padding: 30px 2rem 15px 2rem;
        margin: 0 0.5rem;
    }
    .games-slider::before,
    .games-slider::after {
        width: 80px;
    }
    .games-grid .game-card { 
        min-width: 200px; 
        max-width: 200px;
        height: 320px;
        flex: 0 0 200px;
        padding: 1rem 0.8rem; 
    }
    .game-card .game-cover { 
        height: 120px; 
    }
    .games-grid { 
        gap: 1rem; 
    }
    @keyframes modernGamesSlide {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-200px * 5 - 1rem * 4)); }
    }
}

/* Modern Contact Section Override */
.contact {
    padding: 0 !important;
    background: transparent !important;
    position: relative;
}

.contact::before {
    display: none;
}

.contact .section-title {
    text-align: center !important;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #78d7e2 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.contact .section-subtitle {
    text-align: center;
    color: #b8b8c8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin: 0;
    gap: 0;
}

.vision-text {
    flex: 1;
    min-width: 400px;
}

.big-vision {
    font-size: 1.4rem !important;
    font-style: italic;
    color: #78d7e2 !important;
    margin: 0 !important;
    padding: 2rem !important;
    border-left: 4px solid #7877c6 !important;
    background: rgba(120, 119, 198, 0.1) !important;
    border-radius: 0 15px 15px 0 !important;
    backdrop-filter: blur(15px);
    line-height: 1.8;
    position: relative;
    border: 1px solid rgba(120, 119, 198, 0.2) !important;
}

.big-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.05) 0%, rgba(120, 215, 226, 0.02) 100%);
    border-radius: 0 15px 15px 0;
    pointer-events: none;
}

.contact-link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

.contact-link-btn .cta-button {
    padding: 20px 40px !important;
    font-size: 1.2rem !important;
    background: linear-gradient(135deg, #7877c6 0%, #78d7e2 100%) !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(.4,0,.2,1) !important;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4) !important;
    position: relative;
    overflow: hidden;
}

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

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

.contact-link-btn .cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(120, 119, 198, 0.6) !important;
    background: linear-gradient(135deg, #8a89d7 0%, #89e8f3 100%) !important;
}

/* Demo Section Modernization Override */
.demo-section {
    padding: 0;
    background: transparent;
    position: relative;
}

.demo-section::before {
    display: none;
}

.demo-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #78d7e2 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-section .section-subtitle {
    text-align: center;
    color: #b8b8c8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.demo-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(120, 119, 198, 0.1);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(120, 119, 198, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
}

/* Remove demo-form overlay for clean card look */
.demo-form::before { display: none !important; content: none !important; }

.demo-form .form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.demo-form input,
.demo-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(120, 119, 198, 0.1);
    border: 2px solid rgba(120, 119, 198, 0.3);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.demo-form input:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: #78d7e2;
    box-shadow: 0 0 0 3px rgba(120, 215, 226, 0.2);
    background: rgba(120, 215, 226, 0.1);
}

.demo-form label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: #b8b8c8;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 6px;
    font-size: 1rem;
}

.demo-form input:focus + label,
.demo-form textarea:focus + label,
.demo-form input:not(:placeholder-shown) + label,
.demo-form textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 16px;
    font-size: 0.85rem;
    color: #78d7e2;
    background: linear-gradient(to right, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    padding: 0 6px;
    border-radius: 6px;
}

.demo-form button.cta-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #7877c6 0%, #78d7e2 100%);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(120, 119, 198, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.demo-form button.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(120, 119, 198, 0.6);
    background: linear-gradient(135deg, #8a89d7 0%, #89e8f3 100%);
}

/* Section Title Consistency Override */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #78d7e2 50%, #7877c6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7877c6, #78d7e2);
    border-radius: 2px;
}

/* Fix About Studio section title alignment */
.about-studio .section-title {
    text-align: left !important;
}

.about-studio .section-title::after {
    left: 0 !important;
    transform: none !important;
}

/* Games Grid Responsive */
@media (max-width: 768px) {
    .games-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .game-card {
        min-width: 280px;
        max-width: 400px;
    }
    
    .contact-content {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .vision-text {
        min-width: auto;
    }
    
    .big-vision {
        font-size: 1.2rem !important;
        padding: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    .previous-games {
        padding: 60px 0;
    }
    
    .game-card {
        min-width: 250px;
        max-width: 300px;
    }
    
    .game-cover {
        height: 180px;
    }
    
    .demo-form {
        padding: 2rem;
        margin: 0 20px;
    }
    
    .contact-link-btn .cta-button {
        padding: 16px 32px !important;
        font-size: 1.1rem !important;
    }
}

/* Section'lar için kutu ve arka planı kaldır, sadece padding bırak */
section {
    background: none !important;
    border-radius: 0;
    margin: 0;
    padding: 120px 0 120px 0;
    box-shadow: none !important;
}

/* Kartlar ve kutular daha şeffaf ve yumuşak */
.feature-card, .value-card, .partner-logo, .founder-card, .stat, .game-card {
    position: relative;
    transition: transform 0.18s cubic-bezier(.4,2,.3,1), box-shadow 0.18s, border 0.18s, background 0.18s;
    box-shadow: 0 8px 48px 0 rgba(120,215,226,0.08), 0 1.5px 16px 0 rgba(30,42,56,0.08);
    border: 1.5px solid rgba(120,215,226,0.07);
    overflow: visible;
    animation: cardDropIn 0.8s cubic-bezier(.4,2,.3,1) backwards;
}
@keyframes cardDropIn {
    0% { opacity: 0; transform: translateY(-60px) scale(0.95) rotateX(18deg); filter: blur(6px); }
    60% { opacity: 1; filter: blur(0.5px); }
    100% { opacity: 1; transform: none; filter: none; }
}
.feature-card:hover, .value-card:hover, .partner-logo:hover, .founder-card:hover, .stat:hover, .game-card:hover {
    transform: translateY(-8px) scale(1.045) rotateX(2deg) rotateZ(-1deg);
    box-shadow: 0 0 0 3px #78d7e2cc, 0 12px 48px 0 #78d7e244;
    border: 1.5px solid #aee6ff;
    background: linear-gradient(135deg, rgba(36,48,66,0.80) 0%, rgba(30,42,56,0.80) 100%) !important;
    filter: brightness(1.07) drop-shadow(0 0 8px #78d7e2cc);
}
.feature-card:active, .value-card:active, .partner-logo:active, .founder-card:active, .stat:active, .game-card:active {
    animation: cardVibrate 0.18s linear 1;
    transform: scale(0.98) rotateZ(1deg);
    box-shadow: 0 0 0 4px #aee6ff99, 0 8px 32px 0 #78d7e244;
}
@keyframes cardVibrate {
    0% { transform: translateX(0) scale(1); }
    20% { transform: translateX(-2px) scale(1.01); }
    40% { transform: translateX(2px) scale(0.99); }
    60% { transform: translateX(-1px) scale(1.01); }
    80% { transform: translateX(1px) scale(0.99); }
    100% { transform: translateX(0) scale(1); }
}
/* Neon kenar animasyonu */
.feature-card::before, .value-card::before, .partner-logo::before, .founder-card::before, .stat::before, .game-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 24px 6px #78d7e2cc, 0 0 0 0 #aee6ff00;
    opacity: 0;
    transition: opacity 0.18s, box-shadow 0.18s;
}
.feature-card:hover::before, .value-card:hover::before, .partner-logo:hover::before, .founder-card:hover::before, .stat:hover::before, .game-card:hover::before {
    opacity: 0.7;
    box-shadow: 0 0 32px 8px #78d7e2cc, 0 0 0 2px #aee6ff99;
}

/* Section'lar arası geçişi yumuşatmak için ek boşluklar */
section + section {
    margin-top: -40px;
}

/* portfolio-flex hizalama ve yükseklik eşitleme - 3D Perspektif */
.portfolio-flex {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: stretch;
    margin: 6rem 0;
    perspective: 1200px;
    transform-style: preserve-3d;
}
.screenshots-carousel, .gameplay-video {
    flex: 1 1 0;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform-style: preserve-3d;
}

.carousel-container, .video-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-slide img, .video-container video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .portfolio-flex {
        flex-direction: column;
        gap: 3rem;
        margin: 4rem 0;
        perspective: 800px; /* Mobilde daha az perspektif */
    }
    .screenshots-carousel, .gameplay-video {
        max-width: 100%;
    }
    .carousel-slide img, .video-container video {
        height: 300px;
    }
    .game-showcase .section-title {
        font-size: 3.5rem;
    }
    /* Mobilde 3D efektleri hafifletme */
    .carousel-container, .video-container {
        transform: perspective(800px) rotateX(1deg) rotateY(-1deg);
    }
    .carousel-container:hover, .video-container:hover {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(-4px);
    }
}

/* Başlıklar için gradient text efekti */
.gradient-text {
    background: linear-gradient(90deg, #aee6ff 0%, #78d7e2 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Görsel ve video kutusu modernizasyonu - 3D Efektler */
.carousel-container, .video-container {
    border-radius: 28px !important;
    background: none !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    perspective: 1000px;
    transform-style: preserve-3d;
    /* 3D Card Efekti */
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(120, 215, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-container:hover, .video-container:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(120, 215, 226, 0.3),
        0 0 40px rgba(120, 215, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.showcase-video .video-container {
    background: none !important;
    padding: 0;
}

.carousel-slide img, .video-container video {
    border-radius: 28px !important;
    background: transparent !important;
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* 3D İçerik Efekti */
    transform: translateZ(20px);
    backface-visibility: hidden;
    will-change: transform;
}

/* Hover'da içerik efekti */
.carousel-container:hover .carousel-slide img,
.video-container:hover video {
    transform: translateZ(30px) scale(1.02);
}

.showcase-video .video-container {
    background: none !important;
    padding: 0;
}

@media (max-width: 1100px) {
    .showcase-carousel .carousel-slide img,
    .showcase-video .video-container video {
        height: 240px;
    }
}
@media (max-width: 600px) {
    .showcase-carousel .carousel-slide img,
    .showcase-video .video-container video {
        height: 160px;
    }
    /* Çok küçük ekranlarda 3D efektleri minimize etme */
    .carousel-container, .video-container {
        transform: perspective(600px) rotateX(0.5deg) rotateY(-0.5deg) !important;
        box-shadow: 
            0 15px 30px -8px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(120, 215, 226, 0.1) !important;
    }
    .carousel-container:hover, .video-container:hover {
        transform: perspective(600px) rotateX(0deg) rotateY(0deg) translateY(-2px) !important;
        box-shadow: 
            0 20px 40px -8px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(120, 215, 226, 0.2),
            0 0 20px rgba(120, 215, 226, 0.1) !important;
    }
    .dot {
        transform: translateZ(5px);
    }
    .dot:hover {
        transform: translateZ(8px) scale(1.1);
    }
    .dot.active {
        transform: translateZ(10px) scale(1.2);
    }
}

section, .container, .about-studio, .game-showcase, .studio-values, .stakeholders, .demo-section, .founders-section, .previous-games, .studio-values, .contact, .about-content {
    background: none !important;
    box-shadow: none !important;
}
section::before, .about-studio::before, .game-showcase::before, .studio-values::before, .stakeholders::before, .demo-section::before, .founders-section::before, .previous-games::before, .contact::before {
    background: none !important;
    box-shadow: none !important;
    content: none !important;
}

.tech-icon {
    position: absolute;
    opacity: 0.13;
    pointer-events: none;
    z-index: 0;
    filter: blur(0.2px) drop-shadow(0 0 8px #78d7e2aa);
    transition: opacity 0.3s;
    animation: techIconFloat 24s linear infinite;
}
.tech-icon:nth-child(2n) { animation-duration: 32s; }
.tech-icon:nth-child(3n) { animation-duration: 28s; }
.tech-icon:nth-child(4n) { animation-duration: 36s; }
.tech-icon:nth-child(5n) { animation-duration: 22s; }
.tech-icon:nth-child(6n) { animation-duration: 30s; }
.tech-icon:nth-child(7n) { animation-duration: 26s; }
.tech-icon:nth-child(8n) { animation-duration: 34s; }
.tech-icon:nth-child(9n) { animation-duration: 38s; }
.tech-icon:nth-child(10n) { animation-duration: 40s; }
@keyframes techIconFloat {
    0% { transform: scale(1) rotate(0deg) translateY(0); opacity: 0.13; }
    10% { opacity: 0.18; }
    50% { transform: scale(1.08) rotate(8deg) translateY(-18px); opacity: 0.18; }
    90% { opacity: 0.13; }
    100% { transform: scale(1) rotate(0deg) translateY(0); opacity: 0.13; }
}

/* Slider container ve track */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto 32px auto;
    padding: 60px 0 20px 0;
}

/* Modern Games Slider Container - Tamamen Bağımsız */
.games-slider.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 4rem 40px 4rem;
    overflow: hidden;
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
}

/* Giriş/Çıkış Karartıları - Sitenin arkaplanı ile uyumlu */
.games-slider::before,
.games-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 15;
    pointer-events: none;
}

.games-slider::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(10, 21, 38, 0.98) 0%, 
        rgba(10, 21, 38, 0.9) 20%, 
        rgba(10, 21, 38, 0.7) 40%, 
        rgba(10, 21, 38, 0.4) 60%, 
        rgba(10, 21, 38, 0.2) 80%, 
        transparent 100%);
}

.games-slider::after {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(10, 21, 38, 0.98) 0%, 
        rgba(10, 21, 38, 0.9) 20%, 
        rgba(10, 21, 38, 0.7) 40%, 
        rgba(10, 21, 38, 0.4) 60%, 
        rgba(10, 21, 38, 0.2) 80%, 
        transparent 100%);
}

.slider-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    will-change: transform;
}

/* Games slider track modern ayarları */
.games-slider-track {
    padding: 0;
    transition: transform 0.3s ease;
}

/* Modern Games Slider Animation */
.games-slider-track {
    animation: modernGamesSlide 40s linear infinite;
    padding: 0 2rem;
}
.games-slider:hover .games-slider-track,
.games-slider-track:hover {
    animation-play-state: paused;
}
@keyframes modernGamesSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 5 - 2rem * 4)); }
}

.games-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 1rem 0;
    position: relative;
}

.games-grid .game-card {
    min-width: 280px;
    max-width: 280px;
    height: 420px;
    flex: 0 0 280px;
    margin: 0;
    transition: all 0.3s ease;
    transform: translateZ(0);
    position: relative;
    opacity: 1;
}

.games-grid .game-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

/* Fade in/out effects for cards at edges - Karartı ile uyumlu */
.games-grid .game-card.fade-left {
    opacity: 0.2;
    transform: translateX(-30px) scale(0.9);
}

.games-grid .game-card.fade-right {
    opacity: 0.2;
    transform: translateX(30px) scale(0.9);
}

.games-grid .game-card.fade-left:hover,
.games-grid .game-card.fade-right:hover {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
}

/* Navigation buttons removed - Auto-scroll only */

/* Partners slider (ters yön) */
.partners-slider-track {
    animation: partnersSliderScroll 24s linear infinite;
    animation-play-state: running !important;
}
.partners-slider:hover .partners-slider-track,
.partners-slider-track:hover {
    animation-play-state: running !important;
}
@keyframes partnersSliderScroll {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.partners-grid {
    display: flex;
    gap: 0.5vw;
    flex-wrap: nowrap;
    min-width: 100vw;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
}
.partners-grid .partner-logo {
    min-width: 18vw;
    max-width: 18vw;
    flex: 0 0 18vw;
    margin: 0;
    padding: 1.2rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    position: relative;
    overflow: visible;
    pointer-events: none !important;
}
.partner-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px #23243a22);
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    pointer-events: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .games-slider.slider-container {
        max-width: 1200px;
        padding: 60px 3rem 30px 3rem;
    }
    .games-slider::before,
    .games-slider::after {
        width: 150px;
    }
    .games-grid .game-card {
        min-width: 260px;
        max-width: 260px;
        flex: 0 0 260px;
    }
    @keyframes modernGamesSlide {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-260px * 5 - 2rem * 4)); }
    }
}

@media (max-width: 900px) {
    .games-slider.slider-container {
        max-width: 100%;
        padding: 40px 2.5rem 20px 2.5rem;
        margin: 0 1rem;
    }
    .games-slider::before,
    .games-slider::after {
        width: 120px;
    }
    .games-grid .game-card { 
        min-width: 240px; 
        max-width: 240px; 
        height: 380px;
        flex: 0 0 240px;
        padding: 1.2rem 1rem;
    }
    .game-card .game-cover { height: 140px; }
    .partners-grid .partner-logo { min-width: 100px; max-width: 120px; flex-basis: 120px; }
    .games-grid, .partners-grid { gap: 1rem; }
    .partner-image { max-width: 120px; }
    @keyframes modernGamesSlide {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-240px * 5 - 1rem * 4)); }
    }
} 

.game-showcase .section-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 
        0 0 20px rgba(120, 215, 226, 0.6),
        0 0 40px rgba(120, 215, 226, 0.4),
        0 0 60px rgba(120, 215, 226, 0.2),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.1em;
    font-weight: 900;
    background: linear-gradient(45deg, #78d7e2, #7877c6, #ff6b6b, #78d7e2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.game-showcase .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #78d7e2, transparent);
    border-radius: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

.game-showcase .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    border-radius: 2px;
    animation: titleGlow 3s ease-in-out infinite reverse;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes titleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.game-showcase .section-subtitle {
    font-size: 1.4rem;
    color: #b6c8e6;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

@media (max-width: 600px) {
    .game-showcase .section-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .game-showcase .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .game-showcase {
        padding: 100px 0 80px 0;
        min-height: 80vh;
    }
    
    .portfolio-flex {
        margin: 3rem 0;
        gap: 2rem;
    }
    
    .feature-cards {
        margin: 4rem 0;
        gap: 2rem;
    }
    
    .feature-card {
        min-width: 280px;
        max-width: 350px;
        padding: 2rem 1.5rem;
    }
    
    .platform-tags {
        margin: 3rem 0;
        gap: 1rem;
    }
    
    .platform-tag {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

.game-showcase .carousel-slide img,
.game-showcase .video-container video {
    border-radius: 28px !important;
    background: transparent !important;
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
    box-shadow: none !important;
}

.game-showcase .carousel-slide img:hover,
.game-showcase .video-container video:hover {
    transform: scale(1.035);
    box-shadow: 0 0 32px 0 rgba(120,215,226,0.13), 0 0 8px 0 rgba(30,42,56,0.10);
    z-index: 2;
}

/* Contact & Demo Flex Layout */
.contact-demo-flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    justify-content: space-between;
    gap: 4vw;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto 100px auto;
    padding: 0 3vw;
}
.contact-demo-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
    display: flex;
    flex-direction: column;
}
@media (max-width: 800px) {
    .contact-demo-flex {
        flex-direction: column !important;
        align-items: center;
        gap: 2.5rem;
        padding: 0 1vw;
    }
    .contact-demo-card {
        width: 100%;
        max-width: 98vw;
        min-width: 0;
    }
}

/* Navbar shrink on scroll */
.navbar.shrinked {
    height: 56px !important;
    background: rgba(30, 42, 56, 0.97) !important;
    box-shadow: 0 8px 32px 0 rgba(120,215,226,0.18), 0 2px 20px rgba(120, 119, 198, 0.22);
    border-radius: 0 0 18px 18px;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar.shrinked .nav-container {
    height: 56px !important;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar.shrinked .brand-text {
    font-size: 1.3rem;
    text-shadow: 0 1px 2px #78d7e288;
}
.navbar.shrinked .nav-link {
    font-size: 1rem;
    padding: 0 0;
}
.navbar.shrinked .nav-cta .cta-button.nav-cta-btn {
    height: 36px;
    font-size: 0.98rem;
    padding: 7px 18px;
}
/* Strong active link highlight */
.nav-link.active, .nav-link[aria-current="page"] {
    color: #aee6ff;
    font-weight: 800;
    text-shadow: 0 0 12px #aee6ffcc, 0 0 2px #78d7e2;
}
.nav-link.active::after, .nav-link[aria-current="page"]::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, #aee6ff 0%, #78d7e2 100%);
    box-shadow: 0 2px 12px #aee6ffcc;
}

/* --- MODERN DEMO SECTION --- */
.demo-section {
    padding: 80px 0 80px 0;
    background: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.demo-section .section-title {
    font-size: clamp(2.3rem, 5vw, 3.2rem) !important;
    font-weight: 900 !important;
    background: linear-gradient(90deg, #78d7e2 0%, #aee6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1.1rem;
    letter-spacing: -0.5px;
}
.demo-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #78d7e2 0%, #aee6ff 100%);
    bottom: -10px;
}
.demo-section .section-subtitle {
    text-align: center;
    color: #b6c8e6;
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 2.5rem auto;
}
.demo-form {
    max-width: 540px;
    margin: 0 auto;
    background: rgba(36, 48, 66, 0.55);
    border-radius: 28px;
    border: 1.5px solid rgba(120, 215, 226, 0.13);
    box-shadow: 0 8px 48px 0 rgba(120,215,226,0.10), 0 1.5px 16px 0 rgba(30,42,56,0.13);
    backdrop-filter: blur(18px) saturate(1.2);
    padding: 2.8rem 2rem 2.2rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.demo-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 60px;
    background: linear-gradient(90deg, rgba(120,215,226,0.10) 0%, rgba(120,119,198,0.08) 100%);
    border-radius: 28px 28px 0 0;
    pointer-events: none;
    z-index: 1;
}
.demo-form .form-group {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.demo-form input,
.demo-form textarea {
    width: 100%;
    padding: 18px 22px;
    background: rgba(120, 119, 198, 0.10);
    border: 2px solid rgba(120, 119, 198, 0.18);
    border-radius: 16px;
    color: #eaf6ff;
    font-size: 1.08rem;
    transition: border 0.3s, box-shadow 0.3s, background 0.3s;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px 0 rgba(120,215,226,0.06);
    outline: none;
}
.demo-form input:focus,
.demo-form textarea:focus {
    border-color: #78d7e2;
    box-shadow: 0 0 0 3px rgba(120, 215, 226, 0.18);
    background: rgba(120, 215, 226, 0.10);
}
.demo-form label {
    position: absolute;
    left: 22px;
    top: 18px;
    color: #b8b8c8;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    background: transparent;
    padding: 0 6px;
    font-size: 1.08rem;
    z-index: 3;
}
.demo-form input:focus + label,
.demo-form textarea:focus + label,
.demo-form input:not(:placeholder-shown) + label,
.demo-form textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 18px;
    font-size: 0.92rem;
    color: #78d7e2;
    background: linear-gradient(to right, rgba(36,48,66,0.92) 0%, rgba(30,42,56,0.92) 100%);
    padding: 0 8px;
    border-radius: 6px;
}
.demo-form button.cta-button {
    width: 100%;
    padding: 18px 0;
    font-size: 1.18rem;
    font-weight: 700;
    border-radius: 16px;
    background: linear-gradient(90deg, #78d7e2 0%, #aee6ff 100%);
    color: #23243a;
    box-shadow: 0 2px 18px 0 rgba(120,215,226,0.13);
    border: none;
    margin-top: 0.8rem;
    transition: background 0.22s, box-shadow 0.22s, transform 0.22s;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}
.demo-form button.cta-button:hover, .demo-form button.cta-button:focus {
    background: linear-gradient(90deg, #aee6ff 0%, #78d7e2 100%);
    color: #23243a;
    box-shadow: 0 4px 24px rgba(120,215,226,0.18);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
    .demo-section {
        padding: 48px 0 48px 0;
    }
    .demo-form {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        border-radius: 18px;
    }
    .demo-section .section-title {
        font-size: 2rem !important;
    }
}

/* --- MODERN DUO CARDS (YUKARI ORTALI & İÇERİK ORTALI) --- */
.modern-duo-cards {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 2.5rem;
  width: 100%;
  max-width: 1600px;
  margin: 60px auto 60px auto;
  padding: 0 3vw;
  box-sizing: border-box;
  min-height: 480px;
  height: 480px;
  position: relative;
  top: -60px;
}

.modern-card {
  flex: 1 1 0;
  min-width: 0;
  width: 50%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(135deg, rgba(36,48,66,0.7) 0%, rgba(30,42,56,0.8) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(120,215,226,0.08), 0 1px 8px 0 rgba(30,42,56,0.1);
  backdrop-filter: blur(12px) saturate(1.1);
  padding: 2.2rem 2.2rem 2.2rem 2.2rem;
  margin: 0;
  height: 100%;
  border: 1px solid rgba(120, 119, 198, 0.15);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-sizing: border-box;
  overflow: hidden;
}

.modern-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  max-width: 540px;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}

.contact-card .section-title,
.demo-card .section-title {
  font-size: 1.7rem !important;
  margin-bottom: 0.7rem !important;
  text-align: center !important;
  word-break: break-word;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  max-width: 100%;
}

.contact-card .section-subtitle,
.demo-card .section-subtitle {
  font-size: 1.05rem !important;
  margin-bottom: 1.1rem !important;
  text-align: center !important;
  color: #b6c8e6 !important;
  word-break: break-word;
  font-weight: 400;
  line-height: 1.6;
  max-width: 100%;
}

.contact-card .big-vision {
  font-size: 1.01rem !important;
  padding: 1rem 1.1rem !important;
  border-radius: 10px !important;
  margin-bottom: 1.1rem;
  word-break: break-word;
  background: rgba(120, 119, 198, 0.08) !important;
  border: 1px solid rgba(120, 119, 198, 0.13) !important;
  color: #78d7e2 !important;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  max-width: 100%;
}

.contact-card .contact-link-btn {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-card .contact-link-btn .cta-button,
.demo-card .demo-form button.cta-button {
  padding: 13px 0 !important;
  font-size: 1.05rem !important;
  border-radius: 10px !important;
  width: 100%;
  max-width: 320px;
  justify-content: center;
  margin-top: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  align-self: center;
}

.demo-card .demo-form {
  max-width: 420px;
  margin: 0 auto;
  background: rgba(120, 119, 198, 0.06);
  padding: 0.5rem 0 0 0;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
}

.demo-card .demo-form .form-group {
  margin-bottom: 0.8rem;
  width: 100%;
}

.demo-card .demo-form input,
.demo-card .demo-form textarea {
  padding: 11px 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  box-sizing: border-box;
  background: rgba(120, 119, 198, 0.08);
  border: 1.2px solid rgba(120, 119, 198, 0.2);
  color: #e0f0ff;
  margin-bottom: 0.2rem;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}

.demo-card .demo-form input::placeholder,
.demo-card .demo-form textarea::placeholder {
  color: #b6c8e6;
  opacity: 0.85;
  font-weight: 400;
  text-align: center;
}

.demo-card .demo-form input:focus,
.demo-card .demo-form textarea:focus {
  outline: none;
  border-color: #78d7e2;
  box-shadow: 0 0 0 2px rgba(120, 215, 226, 0.15);
  background: rgba(120, 215, 226, 0.05);
}

.demo-card .demo-form input:focus::placeholder,
.demo-card .demo-form textarea:focus::placeholder {
  color: #78d7e2;
  opacity: 0.6;
}

@media (max-width: 1200px) {
  .modern-duo-cards {
    max-width: 98vw;
    gap: 1.2rem;
    padding: 0 1vw;
    min-height: 320px;
    height: 320px;
    top: 0;
  }
  .modern-card {
    max-width: 98vw;
    padding: 1.2rem 0.7rem;
    min-width: 0;
    width: 100%;
    height: 100%;
  }
  .modern-card-content {
    max-width: 98vw;
    padding: 0;
  }
}

@media (max-width: 900px) {
  .modern-duo-cards {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.2rem;
    padding: 0 0.5rem;
    max-width: 98vw;
    min-height: unset;
    height: unset;
    top: 0;
  }
  .modern-card {
    width: 100%;
    max-width: 100vw;
    min-height: 160px;
    padding: 1.2rem 0.7rem;
    height: unset;
  }
  .modern-card-content {
    max-width: 100vw;
    padding: 0;
  }
  .demo-card .demo-form {
    max-width: 100%;
  }
}

/* Remove old modern-footer and footer-top styles */
.modern-footer, .footer-top, .footer-about, .footer-links, .footer-contact, .footer-newsletter, .footer-socials, .footer-blog-btn, .footer-bottom, .newsletter-form, .footer-links ul, .footer-contact ul, .footer-links h4, .footer-contact h4, .footer-newsletter h4, .footer-about h3 { all: unset; }

/* === Minimal, Modern Footer === */
.site-footer {
  background: #10131e;
  color: #b6c8e6;
  padding: 48px 0 0 0;
  border-top: 1.5px solid #23243a;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw 32px 2vw;
  flex-wrap: wrap;
}
.site-footer .footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 260px;
  margin-bottom: 24px;
}
.site-footer .footer-title {
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #7fd7e2;
  margin-bottom: 0.7rem;
  margin-top: 0;
}
.site-footer .footer-links,
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li,
.site-footer .footer-contact li {
  margin-bottom: 0.45rem;
}
.site-footer .footer-links a,
.site-footer .footer-contact a {
  color: #eaf6ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
  color: #7fd7e2;
}
.site-footer .footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 0.7rem;
}
.site-footer .footer-socials a {
  color: #b6c8e6;
  font-size: 1.25rem;
  transition: color 0.18s;
}
.site-footer .footer-socials a:hover {
  color: #7fd7e2;
}
.site-footer .footer-newsletter input[type=email] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 7px;
  border: 1px solid #23243a;
  background: #181b2e;
  color: #eaf6ff;
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.site-footer .footer-newsletter button {
  background: #7fd7e2;
  color: #181b2e;
  border: none;
  border-radius: 7px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.site-footer .footer-newsletter button:hover {
  background: #eaf6ff;
  color: #10131e;
}
.site-footer .footer-bottom {
  border-top: 1px solid #23243a;
  margin-top: 0;
  padding: 18px 2vw 0 2vw;
  text-align: center;
  font-size: 0.93rem;
  color: #7d8ba8;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .site-footer .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding-bottom: 16px;
  }
  .site-footer .footer-col {
    max-width: 100%;
    margin-bottom: 18px;
  }
}

/* Partners Slider Container - Match Our Games Slider */
.partners-slider.slider-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 4rem 40px 4rem;
  overflow: hidden;
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
}
.partners-slider::before,
.partners-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 15;
  pointer-events: none;
}
.partners-slider::before {
  left: 0;
  background: linear-gradient(90deg,
    rgba(10, 21, 38, 0.98) 0%,
    rgba(10, 21, 38, 0.9) 20%,
    rgba(10, 21, 38, 0.7) 40%,
    rgba(10, 21, 38, 0.4) 60%,
    rgba(10, 21, 38, 0.2) 80%,
    transparent 100%
  );
}
.partners-slider::after {
  right: 0;
  background: linear-gradient(270deg,
    rgba(10, 21, 38, 0.98) 0%,
    rgba(10, 21, 38, 0.9) 20%,
    rgba(10, 21, 38, 0.7) 40%,
    rgba(10, 21, 38, 0.4) 60%,
    rgba(10, 21, 38, 0.2) 80%,
    transparent 100%
  );
}
@media (max-width: 1200px) {
  .partners-slider.slider-container {
    max-width: 1200px;
    padding: 40px 2rem 30px 2rem;
  }
  .partners-slider::before,
  .partners-slider::after {
    width: 120px;
  }
}
@media (max-width: 900px) {
  .partners-slider.slider-container {
    max-width: 100vw;
    padding: 24px 1rem 16px 1rem;
  }
  .partners-slider::before,
  .partners-slider::after {
    width: 80px;
  }
}