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

        :root {
            --primary-red: #ff4444;
            --bg-black: #0a0a0a;
            --bg-card: #0f1419;
            --text-white: #ffffff;
            --text-gray: rgba(255, 255, 255, 0.6);
            --text-muted: rgba(255, 255, 255, 0.4);
            --border: rgba(255, 255, 255, 0.08);
        }

        body {
            font-family: 'Syne', sans-serif;
            background: var(--bg-black);
            color: var(--text-white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: 2px;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .language-selector {
            position: relative;
        }

        .current-lang {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .current-lang:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: #0d0f12;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px;
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .language-selector:hover .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            padding: 10px 16px;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lang-option:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .lang-option.active {
            background: rgba(255, 68, 68, 0.1);
            color: var(--primary-red);
        }

        .btn-nav {
            background: var(--text-white);
            color: var(--bg-black);
            padding: 10px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .btn-nav:hover {
            opacity: 0.9;
        }

        /* Hero Section - Completely New Design */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 140px 40px 80px;
            position: relative;
            overflow: hidden;
            background: var(--bg-black);
        }

        /* Animated Background Grid */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 68, 68, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 68, 68, 0.03) 1px, transparent 1px);
            background-size: 100px 100px;
            animation: gridMove 20s linear infinite;
            z-index: 1;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-red);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 8s ease-in-out infinite;
        }

        @keyframes particleFloat {
            0% {
                opacity: 0;
                transform: translateY(100vh) translateX(0);
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                opacity: 0;
                transform: translateY(-100px) translateX(100px);
            }
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 10s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 9s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 11s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 8s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 10s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 9s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 8s; animation-duration: 12s; }

        /* Geometric Shapes */
        .hero-shapes {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border: 1px solid rgba(255, 68, 68, 0.1);
            border-radius: 50%;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: 10%;
            animation: shapeFloat 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 250px;
            height: 250px;
            bottom: 20%;
            left: 15%;
            animation: shapeFloat 15s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 20%;
            animation: shapeFloat 10s ease-in-out infinite;
        }

        @keyframes shapeFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.1;
            }
            50% {
                transform: translate(30px, -30px) rotate(180deg);
                opacity: 0.3;
            }
        }

        /* Hero Content */
        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 24px;
            border: 1px solid rgba(255, 68, 68, 0.3);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 40px;
            animation: fadeInDown 0.8s ease;
            background: rgba(255, 68, 68, 0.05);
        }

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

        /* Glitch Text Effect */
        .hero-title {
            font-size: 62px;
            font-weight: 700;
            line-height: 1.05;
            margin-bottom: 32px;
            letter-spacing: -4px;
            animation: fadeInUp 1s ease 0.2s both;
            position: relative;
        }

        .hero-title .line {
            display: block;
            overflow: hidden;
        }

        .hero-title .line span {
            display: inline-block;
            animation: slideUp 1s ease forwards;
            opacity: 0;
        }

        .hero-title .line:nth-child(1) span { animation-delay: 0.3s; }
        .hero-title .line:nth-child(2) span { animation-delay: 0.5s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(100%);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .hero-description {
            font-size: 19px;
            color: var(--text-gray);
            max-width: 750px;
            margin: 0 auto 48px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.7s both;
        }

        .hero-cta {
            display: inline-flex;
            gap: 16px;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .btns-primary {
            padding: 20px 48px;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Syne', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .btns-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btns-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btns-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
        }

        .btns-secondary {
            padding: 20px 48px;
            background: transparent;
            color: var(--text-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Syne', sans-serif;
        }

        .btns-secondary:hover {
            border-color: var(--primary-red);
            transform: translateY(-2px);
            background: rgba(255, 68, 68, 0.05);
        }

        /* Games Marquee Section */
        .games-marquee-section {
            padding: 40px 0;
            background: var(--bg-black);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .marquee-container {
            display: flex;
            gap: 40px;
            animation: marqueeScroll 40s linear infinite;
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .game-tag {
            flex-shrink: 0;
            padding: 14px 32px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .game-tag:hover {
            border-color: var(--primary-red);
            color: var(--text-white);
            background: rgba(255, 68, 68, 0.05);
        }

        /* Products Section */
        .products {
            padding: 120px 40px;
            background: var(--bg-black);
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 68, 68, 0.1);
            border: 1px solid rgba(255, 68, 68, 0.3);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .section-description {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }


        /* Blog Posts Section */
        .blog-posts {
            padding: 60px 40px 100px;
        }

        .blog-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .post-card {
            background: #0d0f12;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .post-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }

        .post-image {
            width: 100%;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #1a1d23 0%, #0d0f12 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 48px;
        }

        .post-content {
            padding: 28px;
        }

        .post-meta {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .post-date {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .post-category {
            padding: 4px 12px;
            background: rgba(255, 68, 68, 0.1);
            border: 1px solid rgba(255, 68, 68, 0.3);
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .post-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .post-excerpt {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .post-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-red);
            font-weight: 600;
            font-size: 14px;
            transition: gap 0.3s ease;
        }

        .post-card:hover .post-link {
            gap: 12px;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 40px;
        }

        .empty-icon {
            font-size: 64px;
            margin-bottom: 24px;
            opacity: 0.3;
        }

        .empty-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .empty-description {
            font-size: 16px;
            color: var(--text-gray);
        }


        /* Hero Section */
        .blog_hero {
            padding: 140px 40px 60px;
        }

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

        .blog_hero-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .blog_hero-description {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .product-card {
            background: #0d0f12;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200%;
            background: linear-gradient(180deg, rgba(255, 68, 68, 0.03) 0%, transparent 50%);
            transform: translateY(-100%);
            transition: transform 0.6s ease;
        }

        .product-card:hover::before {
            transform: translateY(0);
        }

        .product-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        .product-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            color: #00ff88;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 35px;
        }

        .product-game {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .product-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            line-height: 1.2;
            position: relative;
        }

        .product-name a {
            color: #fff;
            text-decoration: none;
        }

        .product-description {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 28px;
            min-height: 72px;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 32px;
        }

        .feature-tag {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 0;
            border-top: none;
            width: 100%;
            margin-top: auto;
            position: relative;
        }

        .product-price-section {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .product-price {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0;
        }

        .price-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-red);
            letter-spacing: -1px;
        }

        .btn-product {
            padding: 14px 32px;
            background: rgba(255, 255, 255, 0.04);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-product:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* How It Works Section */
        .how-it-works {
            padding: 120px 40px;
            background: var(--bg-black);
            border-top: 1px solid var(--border);
        }

        .how-it-works-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .comparison-wrapper {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .comparison-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--bg-card);
        }

        .comparison-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .image-before {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: 800;
            color: var(--text-muted);
        }

        .image-after {
            background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, var(--bg-card) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-red);
            clip-path: inset(0 50% 0 0);
        }

        .comparison-slider {
            position: absolute;
            top: 0;
            left: 50%;
            bottom: 0;
            width: 4px;
            background: var(--primary-red);
            cursor: ew-resize;
            transform: translateX(-50%);
            z-index: 10;
        }

        .comparison-slider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            background: var(--primary-red);
            border-radius: 50%;
            border: 4px solid var(--bg-black);
        }

        .comparison-slider::after {
            content: '⟷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            color: white;
            font-weight: 700;
        }

        /* Footer */
        footer {
            background: var(--bg-black);
            border-top: 1px solid var(--border);
            padding: 80px 40px 40px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .footer-description {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--text-white);
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            color: var(--text-gray);
            font-size: 14px;
        }

        .footer-legal {
            display: flex;
            gap: 32px;
        }

        .footer-legal a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--text-white);
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            inset: 0;
            background: var(--bg-black);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .loading-logo {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 4px;
            color: var(--text-white);
            margin-bottom: 40px;
            opacity: 0;
            animation: logoReveal 1s ease forwards;
        }

        @keyframes logoReveal {
            0% {
                opacity: 0;
                transform: scale(0.8);
                letter-spacing: 20px;
            }
            100% {
                opacity: 1;
                transform: scale(1);
                letter-spacing: 4px;
            }
        }

        .loading-bar-container {
            width: 300px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            margin: 0 auto;
        }

        .loading-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-red), #ff6666);
            width: 0%;
            animation: loadingProgress 1.5s ease-in-out forwards;
            box-shadow: 0 0 20px var(--primary-red);
        }

        @keyframes loadingProgress {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

        .loading-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .loading-particles .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 50%;
            animation: particleFloat 3s ease-in-out infinite;
        }

        .loading-particles .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
        .loading-particles .particle:nth-child(2) { left: 80%; top: 40%; animation-delay: 0.5s; }
        .loading-particles .particle:nth-child(3) { left: 20%; top: 80%; animation-delay: 1s; }
        .loading-particles .particle:nth-child(4) { left: 90%; top: 70%; animation-delay: 1.5s; }
        .loading-particles .particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 0.3s; }
        .loading-particles .particle:nth-child(6) { left: 30%; top: 50%; animation-delay: 0.8s; }

        @keyframes particleFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0;
            }
            50% {
                transform: translateY(-30px) scale(1.5);
                opacity: 0.8;
            }
        }

        /* Page content fade in */
        body.loading {
            overflow: hidden;
        }

        .page-content {
            opacity: 0;
            animation: fadeInContent 0.8s ease 1.6s forwards;
        }

        @keyframes fadeInContent {
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 64px;
            }

            .section-title {
                font-size: 48px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .loading-logo {
                font-size: 20px;
            }
        }

        @media (max-width: 1150px) {
            .btns-primary {
                /*font-size: 12px;*/
            }
            .hero-title {
                font-size: 48px;
                letter-spacing: -2px;
            }

            .section-title {
                font-size: 36px;
            }

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

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

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 12px;
            }

            .nav-links {
                display: none;
            }

            .shape-1, .shape-2, .shape-3 {
                display: none;
            }
        }

        @media (max-width: 1024px) {
            .posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 1150px) {
            .blog_hero-title {
                font-size: 36px;
            }

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


        .tos-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .tos-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .tos-section:hover {
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
        }

        .tos-section h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tos-section h2::before {
            content: '';
            width: 4px;
            height: 20px;
            background: var(--primary-red);
            border-radius: 2px;
        }

        .tos-section p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-gray);
        }

        .tos-important {
            background: rgba(255, 68, 68, 0.08);
            border: 2px solid rgba(255, 68, 68, 0.4);
            border-radius: 12px;
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

        .tos-important::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--primary-red);
        }

        .tos-important p {
            color: var(--text-white);
            font-weight: 500;
            font-size: 16px;
            line-height: 1.8;
            padding-left: 16px;
        }


.tos-content-container {
    max-width: 900px;
    margin: 0 auto;
}
.tos-page-header {
    text-align: center;
    margin-bottom: 64px;
}
.tos-page-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -2px;
}
.tos-page-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

        @media (max-width: 1150px) {
            .tos-page-title {
                font-size: 36px;
            }

        }

        /* Responsive */
        @media (max-width: 1150px) {

            .tos-content {
                padding: 32px 24px;
            }

        }

        :root {
            --primary-red: #ff4444;
            --bg-black: #0a0a0a;
            --bg-card: #0f1419;
            --text-white: #ffffff;
            --text-gray: rgba(255, 255, 255, 0.6);
            --text-muted: rgba(255, 255, 255, 0.4);
            --status-online: #00ff88;
            --status-updating: #ffa500;
            --status-offline: #ff4444;
        }


        /* Overall Status */
        .overall-status {
            max-width: 800px;
            margin: 0 auto 24px;
            background: rgba(0, 255, 136, 0.08);
            border: 2px solid rgba(0, 255, 136, 0.3);
            border-radius: 16px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .overall-status.updating {
            background: rgba(255, 165, 0, 0.08);
            border-color: rgba(255, 165, 0, 0.3);
        }

        .overall-status.offline {
            background: rgba(255, 68, 68, 0.08);
            border-color: rgba(255, 68, 68, 0.3);
        }

        .status-indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--status-online);
            box-shadow: 0 0 20px var(--status-online);
            animation: pulse 2s ease-in-out infinite;
        }

        .overall-status.updating .status-indicator {
            background: var(--status-updating);
            box-shadow: 0 0 20px var(--status-updating);
        }

        .overall-status.offline .status-indicator {
            background: var(--status-offline);
            box-shadow: 0 0 20px var(--status-offline);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .status-text {
            font-size: 18px;
            font-weight: 700;
        }

        .last-updated {
            font-size: 13px;
            color: var(--text-muted);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Status List */
        .status-list {
            padding: 60px 40px 100px;
        }

        .status-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .status-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .status-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .status-item:hover {
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
        }

        .status-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .status-icon {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--status-online);
            box-shadow: 0 0 16px var(--status-online);
            flex-shrink: 0;
        }

        .status-item.updating .status-icon {
            background: var(--status-updating);
            box-shadow: 0 0 16px var(--status-updating);
        }

        .status-item.offline .status-icon {
            background: var(--status-offline);
            box-shadow: 0 0 16px var(--status-offline);
        }

        .status-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 700;
        }

        .product-version {
            font-size: 13px;
            color: var(--text-muted);
        }

        .status-product-name{
            margin-bottom: 0;
        }
        .status-badge {
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(0, 255, 136, 0.1);
            color: var(--status-online);
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .status-item.updating .status-badge {
            background: rgba(255, 165, 0, 0.1);
            color: var(--status-updating);
            border-color: rgba(255, 165, 0, 0.3);
        }

        .status-item.offline .status-badge {
            background: rgba(255, 68, 68, 0.1);
            color: var(--status-offline);
            border-color: rgba(255, 68, 68, 0.3);
        }

        /* Legend */
        .legend {
            max-width: 1000px;
            margin: 40px auto 0;
            padding: 24px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 12px;
        }

        .legend-title {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

        .legend-items {
            display: flex;
            gap: 32px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .legend-dot.online {
            background: var(--status-online);
            box-shadow: 0 0 12px var(--status-online);
        }

        .legend-dot.updating {
            background: var(--status-updating);
            box-shadow: 0 0 12px var(--status-updating);
        }

        .legend-dot.offline {
            background: var(--status-offline);
            box-shadow: 0 0 12px var(--status-offline);
        }

        /* Hero Section */
        .status-hero {
            padding: 140px 40px 60px;
        }

        .status-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .status-hero-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .status-hero-description {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        @media screen and (max-width: 1000px){
            .status-hero-title {
                font-size: 36px;
            }

            .status-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .legend-items {
                flex-direction: column;
                gap: 12px;
            }
        }


        .item-hero {
            padding: 140px 40px 80px;
            position: relative;
            overflow: hidden;
        }

        .item-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .item-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .item-product-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 68, 68, 0.1);
            border: 1px solid var(--primary-red);
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .item-product-category {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .item-hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -2px;
        }

        .item-hero-description {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .item-hero-cta {
            display: flex;
            gap: 16px;
        }

        .btn-primary {
            padding: 18px 40px;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Syne', sans-serif;
        }

        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .btn-secondary {
            padding: 18px 40px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Syne', sans-serif;
        }

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


        /* Product Info Section */
        .product-info {
            padding: 60px 40px;
            background: var(--bg-black);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        /* Showcase Section */
        .showcase {
            padding: 100px 40px;
            background: var(--bg-black);
        }

        .showcase-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .video-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            aspect-ratio: 16/9;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            position: relative;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0d0f12 0%, #1a1d23 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, #1a1d23 0%, #0d0f12 100%);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 68, 68, 0.1);
            border: 2px solid var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary-red);
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
            background: rgba(255, 68, 68, 0.2);
            box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
        }

        .video-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-gray);
        }

        .info-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .info-item {
            text-align: center;
            padding: 24px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 12px;
        }

        .info-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .info-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-white);
        }

        /* Features Section */
        .features {
            padding: 100px 40px;
            background: var(--bg-black);
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 68, 68, 0.1);
            border: 1px solid rgba(255, 68, 68, 0.3);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-description {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .feature-category {
            background: #0d0f12;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
        }

        .feature-category:hover {
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border);
        }

        .category-icon {
            font-size: 28px;
            width: 48px;
            height: 48px;
            background: rgba(255, 68, 68, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            flex-shrink: 0;
        }

        .category-title {
            font-size: 24px;
            font-weight: 700;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: var(--text-gray);
        }

        .feature-item::before {
            content: '✓';
            color: #00ff88;
            font-weight: 700;
            font-size: 16px;
        }



        /* Pricing Section */
        .pricing {
            padding: 100px 40px;
            background: var(--bg-black);
        }

        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .pricing-card {
            background: #0d0f12;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--primary-red);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-4px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            padding: 4px 12px;
            background: var(--primary-red);
            color: white;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .pricing-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .pricing-duration {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .pricing-price {
            font-size: 40px;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 24px;
            letter-spacing: -2px;
        }

        .pricing-features {
            margin-bottom: 28px;
        }

        .pricing-feature {
            padding: 10px 0;
            color: var(--text-gray);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-feature::before {
            content: '✓';
            color: #00ff88;
            font-weight: 700;
        }

        .pricing-button {
            width: 100%;
            padding: 14px;
            background: rgba(255, 255, 255, 0.04);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Syne', sans-serif;
        }

        .pricing-button:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .pricing-card.featured .pricing-button {
            background: var(--primary-red);
            border-color: var(--primary-red);
        }

        .pricing-card.featured .pricing-button:hover {
            opacity: 0.9;
        }

        /* FAQ Section */
        .faq {
            padding: 100px 40px;
            background: var(--bg-black);
            border-top: 1px solid var(--border);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-list {
            margin-top: 48px;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            background: rgba(255, 255, 255, 0.02);
            border: none;
            color: var(--text-white);
            font-size: 16px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Syne', sans-serif;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-red);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--text-gray);
            transition: all 0.3s ease;
        }

        .faq-icon::before {
            width: 16px;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-icon::after {
            width: 2px;
            height: 16px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-item.active .faq-icon::before {
            background: var(--primary-red);
        }

        .faq-item.active .faq-icon::after {
            background: var(--primary-red);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-text {
            padding: 24px 28px 24px;
            color: var(--text-gray);
            line-height: 1.7;
        }


        /* Payment Modal */
        .payment-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .payment-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .payment-content {
            background: #0d0f12;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .payment-modal.active .payment-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-gray);
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-white);
        }

        .modal-header {
            margin-bottom: 32px;
        }

        .modal-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .modal-subtitle {
            color: var(--text-gray);
            font-size: 15px;
        }

        .quantity-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .quantity-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .quantity-header label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-white);
        }

        .quantity-display {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        #quantityValue {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-red);
        }

        .quantity-label {
            font-size: 14px;
            color: var(--text-gray);
        }

        .quantity-slider {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            outline: none;
            -webkit-appearance: none;
            margin-bottom: 8px;
        }

        .quantity-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            background: var(--primary-red);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
            transition: all 0.3s ease;
        }

        .quantity-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 0 16px rgba(255, 68, 68, 0.7);
        }

        .quantity-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: var(--primary-red);
            border-radius: 50%;
            cursor: pointer;
            border: none;
            box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
            transition: all 0.3s ease;
        }

        .quantity-slider::-moz-range-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 0 16px rgba(255, 68, 68, 0.7);
        }

        .quantity-info {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
        }

        .price-summary {
            background: rgba(255, 68, 68, 0.05);
            border: 1px solid rgba(255, 68, 68, 0.2);
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 24px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            font-size: 15px;
        }

        .summary-row:not(:last-child) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .summary-row span:first-child {
            color: var(--text-gray);
        }

        .summary-row span:last-child {
            font-weight: 600;
            color: var(--text-white);
        }

        .summary-row.total {
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 8px;
        }

        .summary-row.total span {
            font-size: 16px;
            font-weight: 700;
        }

        .total-price {
            font-size: 28px !important;
            color: var(--primary-red) !important;
        }

        .payment-methods {
            display: grid;
            gap: 16px;
            margin-bottom: 32px;
        }

        .payment-method {
            background: rgba(255, 255, 255, 0.02);
            border: 2px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .payment-method:hover {
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
        }

        .payment-method.selected {
            border-color: var(--primary-red);
            background: rgba(255, 68, 68, 0.05);
        }

        .payment-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .payment-details {
            flex: 1;
        }

        .payment-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .payment-desc {
            font-size: 13px;
            color: var(--text-gray);
        }

        .payment-radio {
            width: 20px;
            height: 20px;
            border: 2px solid var(--border);
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .payment-method.selected .payment-radio {
            border-color: var(--primary-red);
        }

        .payment-method.selected .payment-radio::after {
            content: '';
            position: absolute;
            inset: 3px;
            background: var(--primary-red);
            border-radius: 50%;
        }

        .modal-button {
            width: 100%;
            padding: 18px;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Syne', sans-serif;
        }

        .modal-button:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .modal-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Quantity Section */
        .quantity-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .quantity-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .quantity-header label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-white);
        }

        .quantity-display {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #quantityValue {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-white);
        }

        .quantity-label {
            font-size: 14px;
            color: var(--text-gray);
        }

        .quantity-slider {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            outline: none;
            -webkit-appearance: none;
            margin: 16px 0;
        }

        .quantity-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            background: var(--primary-red);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
            transition: all 0.3s ease;
        }

        .quantity-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(255, 68, 68, 0.7);
        }

        .quantity-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: var(--primary-red);
            border-radius: 50%;
            cursor: pointer;
            border: none;
            box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
            transition: all 0.3s ease;
        }

        .quantity-slider::-moz-range-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(255, 68, 68, 0.7);
        }

        .quantity-info {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Price Summary */
        .price-summary {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 24px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-gray);
        }

        .summary-row.total {
            margin-top: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
            font-size: 16px;
            font-weight: 700;
            color: var(--text-white);
        }

        .total-price {
            color: var(--primary-red);
            font-size: 24px;
            font-weight: 700;
        }

        /* Form Fields */
        .form-fields {
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 15px;
            color: var(--text-white);
            font-family: 'Syne', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group input::placeholder {
            color: var(--text-muted);
        }

        .promo-input-wrapper {
            display: flex;
            gap: 8px;
        }

        .promo-input-wrapper input {
            flex: 1;
        }

        .btn-apply-promo {
            padding: 14px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-white);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Syne', sans-serif;
            white-space: nowrap;
        }

        .btn-apply-promo:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .promo-message {
            margin-top: 8px;
            font-size: 13px;
            font-weight: 500;
        }

        .promo-message.success {
            color: #00ff88;
        }

        .promo-message.error {
            color: var(--primary-red);
        }

        @media (max-width: 1024px) {
            .item-hero-title {
                font-size: 48px;
            }

            .section-title {
                font-size: 36px;
            }

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

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

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

        @media (max-width: 1150px) {
            .item-hero-title {
                font-size: 36px;
            }

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

            .pricing-card.featured {
                transform: scale(1);
            }

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

        }


        /* Loading Screen */
        .loading-screen {
            position: fixed;
            inset: 0;
            background: #0a0a0a;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s ease;
        }

        .loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        /* Background Grid */
        .grid-bg {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 68, 68, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 68, 68, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: gridMove 30s linear infinite;
            opacity: 0.4;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Animated Logo */
        .alogo {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: 6px;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .logo-char {
            display: inline-block;
            opacity: 0;
            animation: fadeInChar 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            position: relative;
        }

        .logo-char:nth-child(1) { animation-delay: 0s; }
        .logo-char:nth-child(2) { animation-delay: 0.05s; }
        .logo-char:nth-child(3) { animation-delay: 0.1s; }
        .logo-char:nth-child(4) { animation-delay: 0.15s; }
        .logo-char:nth-child(5) { animation-delay: 0.2s; }
        .logo-char:nth-child(6) { animation-delay: 0.25s; }
        .logo-char:nth-child(7) { animation-delay: 0.3s; }
        .logo-char:nth-child(8) { animation-delay: 0.35s; }
        .logo-char:nth-child(9) { animation-delay: 0.4s; }
        .logo-char:nth-child(10) { animation-delay: 0.45s; }
        .logo-char:nth-child(11) { animation-delay: 0.5s; }

        @keyframes fadeInChar {
            from {
                opacity: 0;
                transform: translateY(30px) rotateX(-90deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }

        /* Glitch Effect on Logo */
        .alogo::before,
        .alogo::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
        }

        .alogo::before {
            animation: glitch-1 3s infinite;
            color: #ff4444;
            z-index: -1;
            left: 2px;
        }

        .alogo::after {
            animation: glitch-2 3s infinite;
            color: rgba(100, 100, 255, 0.5);
            z-index: -2;
            left: -2px;
        }

        @keyframes glitch-1 {
            0%, 100% { transform: translate(0); opacity: 0; }
            10% { transform: translate(-2px, 2px); opacity: 0.7; }
            20% { transform: translate(2px, -2px); opacity: 0; }
            30% { transform: translate(-2px, -2px); opacity: 0.7; }
            40% { transform: translate(2px, 2px); opacity: 0; }
        }

        @keyframes glitch-2 {
            0%, 100% { transform: translate(0); opacity: 0; }
            15% { transform: translate(3px, -3px); opacity: 0.5; }
            25% { transform: translate(-3px, 3px); opacity: 0; }
            35% { transform: translate(3px, 3px); opacity: 0.5; }
            45% { transform: translate(-3px, -3px); opacity: 0; }
        }

        /* Progress Container */
        .progress-container {
            position: relative;
            width: 450px;
            margin-bottom: 30px;
            z-index: 2;
        }

        /* Progress Bar */
        .progress-bar-wrapper {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 100px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #ff4444 0%, #ff6666 50%, #ff4444 100%);
            background-size: 200% 100%;
            width: 0%;
            border-radius: 100px;
            transition: width 0.05s linear;
            position: relative;
            box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
            animation: shimmerBar 2s ease-in-out infinite;
        }

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

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: -2px;
            width: 4px;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        /* Percentage Text */
        .progress-percentage {
            position: absolute;
            top: -35px;
            right: 0;
            font-size: 20px;
            font-weight: 700;
            color: #ff4444;
            text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
        }

        /* Loading Dots */
        .dots-container {
            display: flex;
            gap: 12px;
            align-items: center;
            z-index: 2;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: #ff4444;
            border-radius: 50%;
            animation: dotPulse 1.2s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
        }

        .dot:nth-child(1) { animation-delay: 0s; }
        .dot:nth-child(2) { animation-delay: 0.2s; }
        .dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes dotPulse {
            0%, 60%, 100% {
                transform: scale(1);
                opacity: 0.6;
            }
            30% {
                transform: scale(1.4);
                opacity: 1;
            }
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #ff4444;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            animation: particleFloat 4s ease-in infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-150px) translateX(var(--float-x));
                opacity: 0;
            }
        }

        .particle:nth-child(1) { left: 25%; --float-x: 20px; animation-delay: 0s; }
        .particle:nth-child(2) { left: 45%; --float-x: -15px; animation-delay: 0.8s; }
        .particle:nth-child(3) { left: 55%; --float-x: 25px; animation-delay: 1.6s; }
        .particle:nth-child(4) { left: 75%; --float-x: -20px; animation-delay: 2.4s; }
        .particle:nth-child(5) { left: 35%; --float-x: 15px; animation-delay: 3.2s; }

        @media (max-width: 1150px) {
            .alogo {
                font-size: 17px;
                letter-spacing: 4px;
            }

            .progress-container {
                width: 300px;
            }

            .progress-percentage {
                font-size: 16px;
            }
        }
        


