        :root {
            --dark: #0a0e17;
            --light-dark: #1a2238;
            --semi-dark: #2a3657;
            --blue: #4cc9f0;
            --blue-light: #8be9fd;
            --blue-dark: #1e40af;
            --purple: #7209b7;
            --pink: #f72585;
            --teal: #4cc9f0;
            --orange: #ff9e00;
            --green: #4ade80;
            --gray: #9ca3af;
            --white: #ffffff;
            --light: #f3f4f6;
            --yellow: #ffd166;
            --red: #ef476f;
            --gradient-primary: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--blue-light) 0%, var(--teal) 100%);
            --gradient-accent: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
            --gradient-nav: linear-gradient(135deg, rgba(26, 34, 56, 0.9) 0%, rgba(42, 54, 87, 0.9) 100%);
        }

        body {
            background: var(--dark);
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            overflow-y: auto;
            color: var(--light);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(76, 201, 240, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(30, 64, 175, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 50% 80%, rgba(114, 9, 183, 0.1) 0%, transparent 25%);
            background-attachment: fixed;
            padding-top: 80px;
        }

        .container-custom {
            max-width: 1300px;
        }

        /* Fixed Navbar Styles */
        .offcanvas { 
            background: var(--semi-dark); 
            height: 100vh; 
        }

        .fixed-top {
            background: rgba(60, 60, 60, 0.35);
            backdrop-filter: blur(20px) saturate(180%) brightness(1.15);
            -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.15);
            padding: 15px 0 !important;
            box-shadow: 0 4px 20px rgba(60, 60, 60, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1030;
        }

        .navbar-dark { padding: 20px 0; }
        .navbar-toggler {
            outline: none !important;
            box-shadow: none !important;
            color: var(--white) !important;
            border: none !important;
        }

        .navbar-dark .navbar-brand { position: relative; }
        .navbar-dark .navbar-brand img {
            margin-right: 5px;
            width: 30px;
            height: 30px;
        }

        .navbar-dark .navbar-brand h2 {
            font-size: 20px;
            font-weight: 700;
            font-style: italic;
            color: var(--white);
            letter-spacing: 0.04rem;
        }

        .navbar-dark .navbar-brand h2 span {
            text-transform: uppercase;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-expand-lg .navbar-nav .nav-link {
            padding-left: 1rem;
            padding-right: 1rem;
            transition: all 0.3s ease;
        }

        .navbar-dark .navbar-nav .nav-link { color: var(--gray); }

        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .navbar-nav .nav-link:active,
        .navbar-dark .navbar-nav .nav-link:focus {
            color: var(--blue-light);
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
        }

        /* Dropdown with Animation - Fixed for mobile */
        .dropdown-menu {
            background: rgba(60, 60, 60, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(15px) saturate(160%);
            -webkit-backdrop-filter: blur(15px) saturate(160%);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            text-align: center;

            /* Animation setup */
            opacity: 0;
            transform: translateY(10px) scale(0.98);
            visibility: hidden;
            transition: all 0.3s ease;
        }

        /* Show dropdown smoothly on hover */
        .nav-item.dropdown:hover .dropdown-menu {
            opacity: 1;
            transform: translateY(0) scale(1);
            visibility: visible;
        }

        /* Show dropdown on click for mobile */
        .nav-item.dropdown.show .dropdown-menu {
            opacity: 1;
            transform: translateY(0) scale(1);
            visibility: visible;
        }

        .dropdown-menu .dropdown-item {
            padding: 10px 20px;
            color: var(--gray);
            background: transparent;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dropdown-menu .dropdown-item span { font-size: 12px; font-weight: 300; }

        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:active,
        .dropdown-menu .dropdown-item:focus {
            color: var(--blue-light);
            background: rgba(255, 255, 255, 0.08);
        }

        /* Dual Button */
        .dual-button {
            display: flex; 
            align-items: center;
            justify-content: space-between;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 0 12px rgba(0, 191, 255, 0.4);
            background: linear-gradient(135deg, #00bfff, #1e90ff);
            width: 250px;
            height: 40px;
        }

        .dual-button a {
            flex: 1;
            color: #fff;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            line-height: 40px;
            transition: 0.3s;
        }

        .dual-button a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .dual-button .divider {
            width: 1px; 
            background: rgba(255,255,255,0.3); 
            height: 60%;
        }

        /* Responsive */
        @media (min-width: 992px) {
            .offcanvas {
                visibility: visible;
                position: relative;
                background: none;
                border: none;
                justify-content: end;
            }
        }

        @media (max-width: 992px) {
            .offcanvas {
                width: 250px !important;
                background: rgba(60, 60, 60, 0.35);
                backdrop-filter: blur(20px);
            }
            .offcanvas-start-lg {
                top: 0;
                left: 0;
                border-right: 1px solid rgba(0, 0, 0, .2);
                transform: translateX(-100%);
            }
            .navbar-dark .navbar-nav .button {
                margin-left: 0 !important;
            }
            .navbar-dark .navbar-nav .button .btn {
                display: block;
            }
            .dual-button {
                width: 100%;
                margin-top: 10px;
            }
            
            /* Fix dropdowns for mobile */
            .dropdown-menu {
                position: static !important;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                margin-top: 0;
                width: 100%;
                background: rgba(60, 60, 60, 0.8) !important;
                border: none;
                border-radius: 0;
            }
            
            .dropdown-menu .dropdown-item {
                padding: 12px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .dropdown-menu .dropdown-item:last-child {
                border-bottom: none;
            }
        }

        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 80px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: url('https://4kwallpapers.com/images/walls/thumbs_3t/24242.jpg') center/cover no-repeat;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 23, 0.8);
        }

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

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide:nth-child(1) {
            background-image: url('https://ggnodes.xyz/assets/images/products_img/minecraft.png');
        }

        .hero-slide:nth-child(2) {
            background-image: url('https://ggnodes.xyz/assets/images/products_img/palworld.png');
        }

        .hero-slide:nth-child(3) {
            background-image: url('https://ggnodes.xyz/assets/images/products_img/fivem.png');
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            color: var(--white);
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .hero-content h1 span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            color: var(--light);
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .btn-hero {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-hero {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
        }

        .btn-primary-hero:hover {
            box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
            transform: translateY(-3px);
            color: var(--white);
        }

        .btn-secondary-hero {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--blue);
        }

        .btn-secondary-hero:hover {
            background: rgba(76, 201, 240, 0.1);
            transform: translateY(-3px);
            color: var(--white);
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(76, 201, 240, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            color: var(--white);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

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

        .section-title p {
            color: var(--light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(0deg, rgba(10, 14, 23, 0.2) 0%, rgba(26, 34, 56, 0.6) 100%);
        }

        .feature-box {
            background: var(--light-dark);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            height: 100%;
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-box.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(76, 201, 240, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
        }

        .feature-icon i {
            font-size: 35px;
            color: var(--white);
        }

        .feature-title {
            color: var(--white);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--gray);
            font-size: 1rem;
        }

        /* Games Section */
        .game-card {
            background: var(--light-dark);
            border-radius: 16px;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            height: 100%;
            opacity: 0;
            transform: translateY(30px);
        }

        .game-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(76, 201, 240, 0.2);
        }

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

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

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

        .game-platform {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .game-platform img {
            width: 24px;
            height: 24px;
        }

        .game-content {
            padding: 25px;
        }

        .game-title {
            color: var(--white);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .game-price {
            color: var(--blue-light);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .game-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }

        .game-features li {
            color: var(--light);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            padding-left: 25px;
        }

        .game-features li:last-child {
            border-bottom: none;
        }

        .game-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: 700;
        }

        .game-btn {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
        }

        .game-btn:hover {
            box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
            transform: translateY(-2px);
        }

        /* Stats Section */
        .stats-section {
            background: var(--light-dark);
        }

        .stat-box {
            text-align: center;
            padding: 30px;
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-box.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
        }

        .stat-icon i {
            font-size: 30px;
            color: var(--white);
        }

        .stat-number {
            color: var(--white);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--gray);
            font-size: 1rem;
        }

        /* Testimonials Section */
        .testimonial-card {
            background: var(--light-dark);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }

        .testimonial-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-content {
            color: var(--light);
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-content:before {
            content: """;
            font-size: 60px;
            color: var(--blue);
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-avatar i {
            color: var(--white);
            font-size: 20px;
        }

        .author-info h5 {
            color: var(--white);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--gray);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Pricing Section */
        .pricing-card {
            background: var(--light-dark);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .pricing-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(76, 201, 240, 0.2);
        }

        .pricing-card.popular {
            border: 2px solid var(--blue);
            transform: scale(1.05);
        }

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

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 5px 30px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-header {
            margin-bottom: 30px;
        }

        .pricing-title {
            color: var(--white);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .pricing-price {
            color: var(--blue-light);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        .pricing-period {
            color: var(--gray);
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .pricing-features li {
            color: var(--light);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-btn {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
        }

        .pricing-btn:hover {
            box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
            transform: translateY(-2px);
        }

        /* Locations Section */
        .locations-section {
            background: linear-gradient(0deg, rgba(10, 14, 23, 0.2) 0%, rgba(26, 34, 56, 0.6) 100%);
        }

        .location-card {
            background: var(--light-dark);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }

        .location-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(76, 201, 240, 0.2);
        }

        .location-flag {
            width: 80px;
            height: 50px;
            border-radius: 8px;
            margin: 0 auto 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            background-size: cover;
            background-position: center;
        }

        .location-name {
            color: var(--white);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .location-ping {
            color: var(--gray);
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .location-specs {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .location-specs li {
            color: var(--light);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .location-specs li:last-child {
            border-bottom: none;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--light-dark);
        }

        .faq-item {
            background: var(--semi-dark);
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .faq-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-question {
            padding: 20px;
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--gray);
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://4kwallpapers.com/images/walls/thumbs_3t/24242.jpg') center/cover no-repeat;
            opacity: 0.1;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            color: var(--white);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            color: var(--light);
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta-primary {
            background: var(--white);
            color: var(--blue-dark);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-primary:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(-3px);
            color: var(--blue-dark);
        }

        .btn-cta-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            color: var(--white);
        }

        /* Footer */
        .ggnodes-footer {
            background: var(--light-dark);
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--gradient-primary);
        }

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

        .footer-cta {
            text-align: center;
            margin-bottom: 50px;
        }

        .footer-cta h2 {
            color: var(--white);
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 15px;
        }

        .footer-cta p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 25px;
        }

        .cta-button {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
            margin-bottom: 20px;
        }

        .cta-button:hover {
            box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
            transform: translateY(-2px);
        }

        .trust-badge {
            color: var(--gray);
            font-size: 14px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .brand-section h3 {
            color: var(--white);
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 5px;
        }

        .brand-section .tm {
            font-size: 14px;
            vertical-align: super;
        }

        .brand-tagline {
            color: var(--gray);
            font-size: 14px;
        }

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

        .links-column h4 {
            color: var(--white);
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .links-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .links-column li {
            margin-bottom: 12px;
        }

        .links-column a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .links-column a:hover {
            color: var(--blue-light);
        }

        .link-arrow {
            margin-right: 8px;
            width: 16px;
            height: 16px;
        }

        .contact-info .company-name {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-info .location {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 15px;
        }

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

        .social-link {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .social-link:hover {
            color: var(--blue-light);
        }

        .email-address {
            color: var(--gray);
            font-size: 14px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .company-details {
            color: var(--gray);
            font-size: 14px;
            max-width: 500px;
        }

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

        /* Responsive */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .links-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-buttons, .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-hero, .btn-cta {
                width: 100%;
                max-width: 250px;
            }







                /* Tech Processor Section */
.tech-processor-section {
    background: linear-gradient(135deg, #0a0e17 0%, #1a2238 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tech-processor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.tech-processor-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* Tech Image */
.tech-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.tech-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.tech-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Tech Content */
.tech-content {
    padding-left: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #4cc9f0, #8be9fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-description {
    color: #9ca3af;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Processor Features Grid */
.processor-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-content p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Tech CTA Buttons */
.tech-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-tech-primary {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
}

.btn-tech-secondary {
    background: transparent;
    color: #4cc9f0;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #4cc9f0;
}

/* Game Features Section */
.game-features-section {
    background: linear-gradient(135deg, #1a2238 0%, #2a3657 100%);
    padding: 80px 0;
    position: relative;
}

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

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    border-radius: 2px;
}

.section-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

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

.feature-list {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #4cc9f0;
    font-size: 1.3rem;
    width: 30px;
    margin-right: 15px;
}

.feature-item span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

/* Scroll Animation Classes */
.tech-image-wrapper {
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.tech-image-wrapper.animate {
    transform: translateX(0);
    opacity: 1;
}

.tech-content {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.tech-content.animate {
    transform: translateX(0);
    opacity: 1;
}

.feature-column {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-column.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-column:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-column:nth-child(3) {
    transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tech-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .tech-processor-section {
        padding: 80px 0;
    }
    
    .tech-content {
        padding-left: 0;
        padding-top: 50px;
        text-align: center;
    }
    
    .tech-image-wrapper {
        transform: translateY(50px);
    }
    
    .tech-content {
        transform: translateY(50px);
    }
    
    .processor-features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-description {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .btn-tech-primary,
    .btn-tech-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .tech-processor-section {
        padding: 60px 0;
    }
    
    .game-features-section {
        padding: 60px 0;
    }
    
    .tech-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tech-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-tech-primary,
    .btn-tech-secondary {
        width: 100%;
        max-width: 250px;
    }
}
/* View More Button */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-view-more:hover {
    color: var(--white);
    box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
    transform: translateY(-2px);
}

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

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

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(5px);
}
