        :root {
            --primary: #1A1A2E;
            --accent: #E74C3C;
            --accent-dark: #C0392B;
            --bg: #F5F5F5;
            --text: #1A1A2E;
            --card: rgba(255, 255, 255, 0.95);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
            --header-bg: rgba(255, 255, 255, 0.98);
            --gold: #F39C12;
            --modal-bg: rgba(26, 26, 46, 0.95);
            --gradient: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
            --red-light: #FF6B6B;
            --red-dark: #8B0000;
        }

        [data-theme="dark"] {
            --primary: #F5F5F5;
            --accent: #E74C3C;
            --bg: #0F0F1E;
            --text: #F5F5F5;
            --card: rgba(26, 26, 46, 0.95);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            --header-bg: rgba(15, 15, 30, 0.98);
            --modal-bg: rgba(15, 15, 30, 0.95);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s, color 0.3s;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 40px);
            max-width: 1200px;
            background: rgba(26, 26, 46, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 12px;
            z-index: 1000;
            padding: 10px 25px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(231, 76, 60, 0.2);
            transition: all 0.3s ease;
        }

        header:hover {
            background: rgba(26, 26, 46, 0.85);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: 50px;
        }

        .primary-nav {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 5px;
        }

        .primary-nav li {
            position: relative;
        }

        .primary-nav a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 8px 15px;
            border-radius: 8px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .primary-nav a:hover {
            background: rgba(231, 76, 60, 0.2);
            color: white;
        }

        .primary-nav a.active {
            background: rgba(231, 76, 60, 0.4);
            color: white;
        }

        .nav-divider {
            color: rgba(255, 255, 255, 0.15);
            font-weight: 300;
            user-select: none;
        }

        .soon-badge {
            background: var(--accent);
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 6px;
            font-weight: 700;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            header {
                top: 10px;
                width: calc(100% - 20px);
                padding: 8px 15px;
            }
            
            .primary-nav {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(15, 15, 30, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                display: none;
                backdrop-filter: blur(15px);
                border-bottom: 1px solid rgba(231, 76, 60, 0.3);
            }
            
            .primary-nav.active {
                display: flex;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .primary-nav a {
                padding: 6px 10px;
                font-size: 14px;
                width: 100%;
                text-align: center;
            }
            
            .logo img {
                height: 40px;
            }
        }
        .banner {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(243, 156, 18, 0.1) 0%, rgba(231, 76, 60, 0.2) 100%);
            z-index: 0;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .banner-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            padding: 0 20px;
            width: 100%;
        }

        .logo-title {
            font-family: 'Unbounded', cursive;
            font-size: 6rem;
            margin-bottom: 20px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.5);
            letter-spacing: 1px;
            color: white;
            line-height: 1.1;
            position: relative;
            display: inline-block;
            font-weight: 700;
            text-transform: uppercase;
        }

        .banner-text {
            font-size: 2rem;
            margin: 30px auto;
            text-shadow: 0 2px 5px rgba(0,0,0,0.8);
            line-height: 1.4;
            color: rgba(255,255,255,0.9);
            letter-spacing: 0.5px;
            font-weight: 400;
            max-width: 800px;
            padding: 0 20px;
        }

        .banner-text p {
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 18px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-play {
            background: var(--gradient);
            color: white;
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
            border: 2px solid rgba(255,255,255,0.3);
            font-weight: 700;
        }

        .btn-play:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(231, 76, 60, 0.6);
            background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
        }

        .btn-play::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: 0.5s;
        }

        .btn-play:hover::before {
            left: 100%;
        }

        .section-title {
            font-family: 'Unbounded', cursive;
            font-size: 2.8rem;
            margin-bottom: 40px;
            color: var(--primary);
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .news {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .news-slider {
            position: relative;
            overflow: hidden;
        }

        .news-slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .news-slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            gap: 25px;
            padding: 10px 0;
        }

        .news-card {
            background: var(--card);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            border: 1px solid rgba(231, 76, 60, 0.1);
            width: calc(33.333% - 17px);
            cursor: pointer;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .news-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .news-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .news-content {
            padding: 25px;
        }

        .news-title {
            font-family: 'Unbounded', cursive;
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
            line-height: 1.3;
            letter-spacing: 0.5px;
        }

        .news-excerpt {
            color: var(--text);
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .read-more {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .read-more:hover {
            color: var(--accent-dark);
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
            font-size: 0.8rem;
        }

        .read-more:hover i {
            transform: translateX(3px);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(231, 76, 60, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--card);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow);
            z-index: 10;
            color: var(--accent);
            font-size: 1.2rem;
            transition: all 0.3s;
            border: none;
        }

        .slider-arrow:hover {
            background: var(--accent);
            color: white;
        }

        .slider-arrow.left {
            left: 10px;
        }

        .slider-arrow.right {
            right: 10px;
        }

        .history {
            padding: 100px 20px;
            background: linear-gradient(to right, rgba(231, 76, 60, 0.05), rgba(243, 156, 18, 0.05));
            position: relative;
        }

        .history::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

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

        .history-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .history-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .history-text {
            color: var(--text);
        }

        .history-text h3 {
            font-family: 'Unbounded', cursive;
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .history-text p {
            margin-bottom: 20px;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        footer {
            background: #0A0A0A;
            color: white;
            padding: 100px 0 50px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

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

        .footer-logo img {
            height: 70px;
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .footer-heading {
            font-family: 'Unbounded', cursive;
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--accent);
            width: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
        }

        .social-links a:hover {
            color: white;
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }

        .copyright {
            margin-top: 80px;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.7;
            letter-spacing: 0.5px;
        }

        .theme-toggle {
            background: rgba(231, 76, 60, 0.1);
            border: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            color: var(--accent);
            font-size: 20px;
            transition: all 0.3s;
            margin-left: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .theme-toggle:hover {
            background: rgba(231, 76, 60, 0.2);
            transform: rotate(30deg);
        }

        @media (max-width: 1200px) {
            .logo-title {
                font-size: 5rem;
            }
            
            .banner-text {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 992px) {
            .logo-title {
                font-size: 4rem;
            }
            
            .banner-text {
                font-size: 1.6rem;
            }
            
            .news-card {
                width: calc(50% - 13px);
            }

            .history-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .history-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .logo-title {
                font-size: 3.5rem;
            }
            
            .banner-text {
                font-size: 1.4rem;
            }

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

            .news-card {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .logo-title {
                font-size: 2.8rem;
            }
            
            .banner-text {
                font-size: 1.2rem;
            }

            .btn {
                padding: 15px 30px;
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
            
            .history-text h3 {
                font-size: 1.8rem;
            }
        }
    .launchers {
        padding: 120px 0;
        background: radial-gradient(circle at center, #1A1A2E 0%, #0F0F1E 100%);
        position: relative;
        overflow: hidden;
    }

    .launchers::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .launchers::after {
        content: '';
        position: absolute;
        bottom: -50%;
        right: -10%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

    .section-title {
        font-family: 'Unbounded', cursive;
        font-size: 3.5rem;
        background: linear-gradient(90deg, #FFFFFF, #E74C3C);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        z-index: 2;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.3rem;
        color: rgba(255,255,255,0.8);
        margin-bottom: 70px;
        font-weight: 400;
        position: relative;
        z-index: 2;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .platform-selector {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        perspective: 2000px;
    }

    .platform-tabs {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .platform-tab {
        padding: 18px 40px;
        background: rgba(26, 26, 46, 0.7);
        border: none;
        font-family: 'Unbounded', cursive;
        font-weight: 600;
        font-size: 1.2rem;
        color: rgba(255,255,255,0.7);
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(231, 76, 60, 0.2);
        transform-style: preserve-3d;
    }

    .platform-tab::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, transparent 100%);
        border-radius: inherit;
        opacity: 0;
        transition: opacity 0.4s;
    }

    .platform-tab.active {
        color: white;
        background: rgba(231, 76, 60, 0.3);
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
    }

    .platform-tab.active::before {
        opacity: 1;
    }

    .platform-tab:hover:not(.active) {
        color: white;
        background: rgba(26, 26, 46, 0.9);
    }

    .platform-content {
        background: rgba(15, 15, 30, 0.7);
        border-radius: 20px;
        padding: 60px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(231, 76, 60, 0.2);
        transform-style: preserve-3d;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
    }

    .platform-content::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(231, 76, 60, 0.03) 0%, transparent 70%);
        z-index: -1;
    }

    .platform-info {
        display: none;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .platform-info.active {
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .device-showcase {
        flex: 1;
        position: relative;
        min-height: 400px;
        transform-style: preserve-3d;
        perspective: 1500px;
    }

    .device-image {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        transform: rotateY(-15deg) rotateX(5deg);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    .windows-device {
        background-image: url('https://static.vecteezy.com/system/resources/thumbnails/023/816/882/small_2x/computer-3d-icon-png.png');
    }

    .android-device {
        background-image: url('https://static.vecteezy.com/system/resources/thumbnails/008/850/476/small_2x/3d-render-mobile-phone-png.png');
    }

    .requirements-container {
        flex: 1;
    }

    .requirements-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .requirement-item {
        background: rgba(26, 26, 46, 0.7);
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid var(--accent);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        backdrop-filter: blur(5px);
        transform-style: preserve-3d;
    }

    .requirement-item:hover {
        transform: translateY(-10px) scale(1.03);
        background: rgba(231, 76, 60, 0.15);
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
    }

    .requirement-label {
        display: block;
        font-size: 0.95rem;
        color: rgba(255,255,255,0.7);
        margin-bottom: 10px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .requirement-value {
        font-weight: 700;
        color: white;
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .download-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 20px 45px;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 20px;
        position: relative;
        overflow: hidden;
        font-family: 'Unbounded', cursive;
        font-size: 1.1rem;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        transform-style: preserve-3d;
    }

    .download-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
        z-index: 1;
        transition: all 0.5s;
    }

    .download-btn:hover::before {
        transform: translateX(100%);
    }

    .download-btn span {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .windows-download {
        background: linear-gradient(135deg, #3574F2 0%, #1D4ED8 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(29, 78, 216, 0.4);
    }

    .android-download {
        background: linear-gradient(135deg, #3DDC84 0%, #2BB673 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(61, 220, 132, 0.4);
    }

    .download-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .file-size {
        display: block;
        font-size: 0.95rem;
        color: rgba(255,255,255,0.7);
        margin-top: 15px;
        text-align: center;
    }

    .version-badge {
        display: inline-block;
        background: linear-gradient(135deg, rgba(243, 156, 18, 0.3) 0%, rgba(231, 76, 60, 0.3) 100%);
        color: #F39C12;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        margin-top: 25px;
        border: 1px solid rgba(243, 156, 18, 0.3);
        backdrop-filter: blur(5px);
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 1200px) {
        .platform-info.active {
            flex-direction: column;
        }
        
        .device-showcase {
            width: 100%;
            min-height: 300px;
            margin-bottom: 40px;
        }
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2.5rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            margin-bottom: 50px;
        }
        
        .platform-tabs {
            flex-direction: column;
            align-items: center;
        }
        
        .platform-tab {
            width: 100%;
            max-width: 300px;
        }
        
        .platform-content {
            padding: 30px;
        }
        
        .requirements-grid {
            grid-template-columns: 1fr;
        }
        
        .download-btn {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 2rem;
        }
        
        .platform-content {
            padding: 25px 20px;
        }
        
        .requirement-item {
            padding: 20px;
        }
    }