:root {
    --bg-outer: #1A1A1A;
    --bg-inner: #2C2C2C;
    --card-bg: #222222;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --primary-color: #ffffff;
    --accent-color: #5c5cff;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1280px;
    --header-height: 80px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-outer);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

#app {
    background-color: var(--bg-inner);
    max-width: 1440px;
    margin: 0 auto;
    min-height: 100vh;
    animation: fadeIn 0.6s ease-out;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header */
.header {
    padding: 20px 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Home & Slider */
.hero-home {
    padding: 30px 0;
    animation: fadeInUp 0.8s ease-out;
}

.hero-banner-full {
    width: 100%;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.slider-container {
    width: 100%;
    aspect-ratio: 16 / 7;
    position: relative;
}

.slides-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 1.2s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.hero-slide.active .hero-bg-img-full {
    transform: scale(1);
}

.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    /* Let clicks pass through to buttons inside */
}

.glass-box {
    max-width: 480px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
    pointer-events: auto;
}

.hero-slide.active .glass-box {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 450px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

/* Updated Buttons for Slider */
.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    background: #fff;
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .slider-container {
        aspect-ratio: 16 / 10;
    }

    .hero-slide-content {
        padding: 30px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .glass-box {
        padding: 25px;
    }

    .slider-nav {
        display: none;
        /* Hide arrows on mobile for cleaner look */
    }
}

/* Games Section */
.games-section {
    padding: 60px 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.game-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.5s;
}

.game-card:hover .game-card-img {
    transform: scale(1.1);
}

.game-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.game-card h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.btn-press {
    background: #333333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.btn-press:hover {
    background: #444;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-play {
    background: #D9D9D9;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.btn-play:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 217, 217, 0.4);
}

.platform-icons-corner {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: transform 0.3s;
}

.game-card:hover .platform-icons-corner {
    transform: scale(1.1);
}

.platform-icons-corner img {
    height: 20px;
    opacity: 0.8;
}

.coming-soon {
    background: var(--card-bg);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    border-radius: 12px;
    transition: all 0.3s;
}

.coming-soon:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
}

.coming-soon h3 {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    opacity: 0.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: transparent;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 45px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: #a855f7;
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-header .section-title {
    margin-bottom: 0;
}

/* Container becomes scrollable */
.testimonials-slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    cursor: grab;
    user-select: none;
}

/* Hide scrollbar for Chrome/Safari */
.testimonials-slider-container::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    /* Aligns with section container */
    padding-right: 150px;
    /* Extra space so last card isn't cut */
    width: max-content;
}

.testimonial-card {
    flex: 0 0 380px;
    /* Slightly narrower to fit better */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-5px);
}

/* Left & Right Side Buttons */
.test-nav-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(44, 44, 44, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.test-nav-btn:hover {
    background: #6366f1;
    border-color: #6366f1;
    transform: translateY(-50%) scale(1.15);
}

.prev-test {
    left: 20px;
}

.next-test {
    right: 20px;
}

.test-nav-btn svg {
    width: 24px;
    height: 24px;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.test-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ccc;
    font-style: italic;
    flex-grow: 1;
}

.test-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.test-author {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.test-role {
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
    }

    .test-nav-btn {
        display: none;
        /* Better UX to scroll on mobile */
    }

    .testimonials-track {
        padding: 0 20px;
    }
}

/* Studio Section */
.studio-section {
    padding: 80px 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.studio-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.studio-image-full img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.studio-image-full img:hover {
    transform: scale(1.02);
}

.studio-text-right h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.studio-text-right p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contact Section Updated to Match Theme */
.contact-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.section-title-center {
    font-size: 1.5rem;
    /* Matched with .section-header-center h2 */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 440px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-item:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    /* Matched with other cards */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    /* Matched with card backgrounds */
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-gradient-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    margin-top: 5px;
}

.btn-gradient-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
}

.btn-gradient-submit:active {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-title-center {
        font-size: 1.8rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid #222;
    background: transparent;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-icon svg {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #aaa;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-copyright {
    align-self: flex-start;
    color: #666;
    font-size: 0.8rem;
    max-width: 200px;
}

/* Button Global */
.btn {
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.btn-white {
    background: #D9D9D9;
    color: #000;
}

.btn-white:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 217, 217, 0.3);
}

/* ===== GAME DETAIL PAGES ===== */

.game-hero {
    padding: 40px 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.game-hero-banner {
    width: 100%;
    position: relative;
    background: transparent;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.trailer-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-trailer-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-trailer-btn:hover {
    transform: scale(1.15);
}

.play-trailer-btn svg circle {
    transition: opacity 0.3s;
}

.play-trailer-btn:hover svg circle {
    opacity: 1;
}

.trailer-label {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Game Title Section */
.game-title-section {
    padding: 40px 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 40px;
}

.title-left h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.game-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #3a3a3a;
    color: #ccc;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tag:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}

.title-right {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
}

.btn-steam {
    background: #1a1a1a;
    border: 1px solid #444;
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-steam:hover {
    background: #252525;
    border-color: #666;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-steam img {
    height: 30px;
}

.btn-steam span {
    font-size: 0.7rem;
    color: #aaa;
    line-height: 1.3;
}

.btn-steam strong {
    font-size: 1rem;
    color: #fff;
}

.btn-press-kit,
.btn-discord {
    background: #3a3a3a;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-discord {
    background: #5865F2;
}

.btn-press-kit:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.game-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #bbb;
    max-width: 900px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.features-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.youtube-btn {
    background: #FF0000;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.youtube-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.feature-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.7;
}

/* More Games Section */
.more-games-section {
    padding: 60px 0;
}

.more-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: transparent;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.team-card:hover::before {
    opacity: 1;
}

.member-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s;
}

.team-card:hover .member-image img {
    transform: scale(1.05);
    border-color: #6366f1;
}

.member-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #10b981;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #222;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.member-role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a855f7;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: all 0.3s;
}

.member-socials a:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-3px) rotate(8deg);
}

.member-socials svg {
    width: 18px;
    height: 18px;
}

/* Responsive Overhaul */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .studio-content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-row {
        flex-direction: column;
        gap: 40px;
    }

    .title-row {
        flex-direction: column;
    }

    .feature-item {
        grid-template-columns: 1fr;
    }

    .more-games-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #app {
        max-width: 100% !important;
        margin: 0 !important;
    }

    .container {
        padding: 0 15px;
    }

    /* Header Fixes */
    .header {
        padding: 15px 0;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    /* Hero Slider Mobile Reset */
    .slider-container {
        aspect-ratio: auto !important;
        height: 550px !important;
        /* Fixed height for mobile stability */
        border-radius: 20px;
    }

    .hero-slide-content {
        padding: 15px;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(0, 0, 0, 0.4);
    }

    .glass-box {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        max-width: 90% !important;
        width: 100% !important;
        padding: 25px 20px !important;
        text-align: center !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin: 0 auto;
    }

    .slide-title {
        font-size: 1.6rem !important;
        line-height: 1.2;
        margin-bottom: 25px !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .slide-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        padding: 15px !important;
        font-size: 1rem !important;
        margin: 0 !important;
        border-radius: 12px !important;
    }

    .slider-dots {
        bottom: 20px !important;
    }

    .slider-nav {
        display: none !important;
    }

    /* Games Grid */
    .games-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    /* Section Spacing */
    .games-section,
    .stats-section,
    .studio-section,
    .contact-section {
        padding: 60px 0 !important;
    }

    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .team-card {
        padding: 25px 20px !important;
    }

    .member-image {
        width: 140px !important;
        height: 140px !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }
}