* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0A0E17;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #F4A623, #E8791E);
            border-radius: 4px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #0A0E17;
            overflow-x: hidden;
            font-family: 'Rajdhani', sans-serif;
            color: #e5e7eb;
            -webkit-font-smoothing: antialiased;
            -webkit-tap-highlight-color: transparent;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        .cursor-trail {
            position: fixed;
            width: 8px;
            height: 8px;
            background: #F4A623;
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            box-shadow: 0 0 20px #F4A623, 0 0 40px rgba(244,166,35,0.5);
            opacity: 0.8;
            transition: all 0.05s linear;
        }

        .cursor-trail-dot {
            position: fixed;
            width: 4px;
            height: 4px;
            background: #FF6B35;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            box-shadow: 0 0 15px #FF6B35;
            opacity: 0.6;
            transition: all 0.08s linear;
        }

        @media (max-width: 768px) {
            .cursor-trail, .cursor-trail-dot {
                display: none;
            }
        }

        .font-orbitron { font-family: 'Orbitron', sans-serif; }
        .font-rajdhani { font-family: 'Rajdhani', sans-serif; }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
        }

        .text-pubg-gold { color: #F4A623; }
        .text-pubg-dark { color: #0A0E17; }
        .bg-pubg-gold { background-color: #F4A623; }
        .bg-pubg-orange { background-color: #E8791E; }
        .bg-pubg-dark { background-color: #0A0E17; }
        .bg-pubg-darker { background-color: #060912; }

        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(244,166,35,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(255,107,53,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 0%, rgba(0,240,255,0.04) 0%, transparent 40%);
            z-index: 0;
        }

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(244,166,35,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(244,166,35,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: gridMove 20s linear infinite;
            z-index: 0;
        }

        @media (min-width: 768px) {
            .grid-overlay { background-size: 60px 60px; }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(40px, 40px); }
        }

        .glow-text {
            text-shadow: 0 0 10px rgba(244,166,35,0.5), 0 0 40px rgba(244,166,35,0.3);
        }

        .cyber-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: none;
            outline: none;
            line-height: 1.2;
        }

        .cyber-btn::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;
        }

        .cyber-btn:hover::before {
            left: 100%;
        }

        .cyber-btn:hover {
            box-shadow: 0 0 20px rgba(244,166,35,0.5);
            transform: translateY(-2px);
        }

        a { text-decoration: none; }

        .cheat-card {
            position: relative;
            background: linear-gradient(135deg, rgba(26,58,92,0.3), rgba(10,14,23,0.8));
            border: 1px solid rgba(244,166,35,0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .cheat-card:hover {
            border-color: rgba(244,166,35,0.5);
            box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(244,166,35,0.2);
            transform: scale(1.01);
        }

        .cheat-card-inner {
            position: relative;
            z-index: 1;
            background: linear-gradient(135deg, rgba(26,58,92,0.4), rgba(10,14,23,0.95));
            margin: 1px;
            border-radius: 16px;
            padding: 20px 16px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 768px) {
            .cheat-card-inner { padding: 24px 20px; }
        }

        @media (min-width: 1024px) {
            .cheat-card-inner { padding: 28px 24px; }
        }

        .navbar {
            background: transparent;
            backdrop-filter: none;
            border-bottom: 1px solid transparent;
            transition: all 0.5s;
        }

        .navbar-scrolled {
            background: rgba(10,14,23,0.95) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(244,166,35,0.2) !important;
        }

        .icon-glow {
            filter: drop-shadow(0 0 8px rgba(244,166,35,0.4));
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .badge-pulse {
            animation: badgePulse 2s ease-in-out infinite;
        }

        .diamond {
            width: 10px;
            height: 10px;
            background: #F4A623;
            transform: rotate(45deg);
        }

        .hex-pattern {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23F4A623' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: fixed;
            top: 0;
            right: 0;
            width: 260px;
            height: 100vh;
            background: rgba(6,9,18,0.98);
            backdrop-filter: blur(20px);
            z-index: 100;
            padding: 20px;
            border-left: 1px solid rgba(244,166,35,0.1);
        }

        .mobile-menu.active { transform: translateX(0); }

        @keyframes priceShine {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        .price-shine {
            background: linear-gradient(90deg, #F4A623 0%, #FFD700 25%, #F4A623 50%, #FFD700 75%, #F4A623 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: priceShine 3s linear infinite;
            font-family: 'Orbitron', sans-serif;
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(26,58,92,0.2), rgba(10,14,23,0.6));
            border: 1px solid rgba(244,166,35,0.1);
            border-radius: 16px;
            padding: 20px 16px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: rgba(244,166,35,0.3);
            transform: translateY(-5px);
        }

        .glitch {
            position: relative;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch::before {
            animation: glitch-1 2s infinite linear alternate-reverse;
            color: #00F0FF;
            z-index: -1;
        }

        .glitch::after {
            animation: glitch-2 3s infinite linear alternate-reverse;
            color: #FF6B35;
            z-index: -2;
        }

        @keyframes glitch-1 {
            0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(-2px, -2px); }
            20% { clip-path: inset(20% 0 60% 0); transform: translate(2px, 2px); }
            40% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 2px); }
            60% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -2px); }
            80% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, -2px); }
        }

        @keyframes glitch-2 {
            0%, 100% { clip-path: inset(95% 0 0 0); transform: translate(2px, 2px); }
            20% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, -2px); }
            40% { clip-path: inset(40% 0 40% 0); transform: translate(2px, -2px); }
            60% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
            80% { clip-path: inset(5% 0 80% 0); transform: translate(2px, 2px); }
        }

        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244,166,35,0.3), transparent);
        }

        .feature-item {
            position: relative;
            padding-left: 20px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 14px;
            color: #9ca3af;
            font-weight: 500;
        }

        .feature-item::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: #F4A623;
            font-size: 10px;
            top: 50%;
            transform: translateY(-50%);
        }

        .status-online {
            width: 8px;
            height: 8px;
            background: #00FF88;
            border-radius: 50%;
            box-shadow: 0 0 10px #00FF88;
            animation: statusPulse 2s ease-in-out infinite;
        }

        @keyframes statusPulse {
            0%, 100% { box-shadow: 0 0 5px #00FF88; }
            50% { box-shadow: 0 0 15px #00FF88, 0 0 30px rgba(0,255,136,0.3); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-slide-up {
            animation: slideInUp 0.6s ease-out forwards;
        }

        .animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
        .animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
        .animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
        .animate-delay-4 { animation-delay: 0.4s; opacity: 0; }
        .animate-delay-5 { animation-delay: 0.5s; opacity: 0; }
        .animate-delay-6 { animation-delay: 0.6s; opacity: 0; }
        .animate-delay-8 { animation-delay: 0.8s; opacity: 0; }

        .neon-line {
            height: 2px;
            background: linear-gradient(90deg, transparent, #00F0FF, #F4A623, #FF6B35, transparent);
            box-shadow: 0 0 10px rgba(0,240,255,0.3);
        }

        .custom-select {
            appearance: none;
            -webkit-appearance: none;
            background-color: #0A0E17;
            border: 1px solid rgba(244,166,35,0.2);
            color: #F4A623;
            font-family: 'Rajdhani', sans-serif;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 28px 6px 12px;
            border-radius: 8px;
            outline: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F4A623' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center;
        }

        @keyframes impactPulse {
            0% { box-shadow: 0 0 0 0 rgba(244,166,35,0.4); }
            70% { box-shadow: 0 0 0 15px rgba(244,166,35,0); }
            100% { box-shadow: 0 0 0 0 rgba(244,166,35,0); }
        }

        .impact-pulse {
            animation: impactPulse 2s ease-out infinite;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-item {
            background: linear-gradient(to right, rgba(26,58,92,0.1), transparent);
            border: 1px solid rgba(244,166,35,0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            text-align: left;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .faq-toggle span {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            color: white;
            font-size: 16px;
        }

        .faq-toggle i {
            color: #F4A623;
            transition: transform 0.3s;
        }

        .faq-content div {
            padding: 0 20px 20px 20px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 15px;
            color: #9ca3af;
            line-height: 1.6;
            font-weight: 500;
        }

        .fixed { position: fixed; }
        .absolute { position: absolute; }
        .relative { position: relative; }
        .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
        .top-0 { top: 0; }
        .left-0 { left: 0; }
        .right-0 { right: 0; }
        .top-4 { top: 16px; }
        .right-4 { right: 16px; }
        .-top-1 { top: -4px; }
        .-right-1 { right: -4px; }
        .bottom-5 { bottom: 20px; }
        .right-5 { right: 20px; }
        
        .z-0 { z-index: 0; }
        .z-10 { z-index: 10; }
        .z-50 { z-index: 50; }
        
        .flex { display: flex; }
        .inline-flex { display: inline-flex; }
        .grid { display: grid; }
        .hidden { display: none; }
        
        .flex-col { flex-direction: column; }
        .flex-wrap { flex-wrap: wrap; }
        .items-center { align-items: center; }
        .items-end { align-items: flex-end; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .justify-end { justify-content: flex-end; }
        
        .gap-1 { gap: 4px; }
        .gap-2 { gap: 8px; }
        .gap-3 { gap: 12px; }
        .gap-4 { gap: 16px; }
        .gap-6 { gap: 24px; }
        .gap-8 { gap: 32px; }
        
        .w-full { width: 100%; }
        .w-3 { width: 12px; }
        .w-8 { width: 32px; }
        .w-10 { width: 40px; }
        .w-12 { width: 48px; }
        .w-14 { width: 56px; }
        .w-16 { width: 64px; }
        .w-24 { width: 96px; }
        .w-32 { width: 128px; }
        .w-64 { width: 256px; }
        .w-96 { width: 384px; }
        .w-px { width: 1px; }
        
        .h-0\.5 { height: 2px; }
        .h-2 { height: 8px; }
        .h-3 { height: 12px; }
        .h-4 { height: 16px; }
        .h-8 { height: 32px; }
        .h-10 { height: 40px; }
        .h-12 { height: 48px; }
        .h-14 { height: 56px; }
        .h-16 { height: 64px; }
        .h-64 { height: 256px; }
        .h-80 { height: 320px; }
        .h-96 { height: 384px; }
        .h-screen { height: 100vh; }
        .min-h-screen { min-height: 100vh; }
        
        .max-w-xl { max-width: 576px; }
        .max-w-2xl { max-width: 672px; }
        .max-w-3xl { max-width: 768px; }
        .max-w-4xl { max-width: 896px; }
        .max-w-5xl { max-width: 1024px; }
        .max-w-7xl { max-width: 1280px; }
        
        .mx-auto { margin-left: auto; margin-right: auto; }
        .mt-2 { margin-top: 8px; }
        .mt-4 { margin-top: 16px; }
        .mt-6 { margin-top: 24px; }
        .mt-8 { margin-top: 32px; }
        .mt-10 { margin-top: 40px; }
        .mt-12 { margin-top: 48px; }
        .mb-2 { margin-bottom: 8px; }
        .mb-3 { margin-bottom: 12px; }
        .mb-4 { margin-bottom: 16px; }
        .mb-6 { margin-bottom: 24px; }
        .mb-8 { margin-bottom: 32px; }
        .mb-10 { margin-bottom: 40px; }
        .mb-12 { margin-bottom: 48px; }
        .mb-16 { margin-bottom: 64px; }
        .ml-auto { margin-left: auto; }
        .mr-2 { margin-right: 8px; }
        .mr-3 { margin-right: 12px; }
        .-mt-1 { margin-top: -4px; }
        
        .p-2 { padding: 8px; }
        .p-4 { padding: 16px; }
        .p-5 { padding: 20px; }
        .p-6 { padding: 24px; }
        .p-8 { padding: 32px; }
        .px-2 { padding-left: 8px; padding-right: 8px; }
        .px-3 { padding-left: 12px; padding-right: 12px; }
        .px-4 { padding-left: 16px; padding-right: 16px; }
        .px-5 { padding-left: 20px; padding-right: 20px; }
        .px-6 { padding-left: 24px; padding-right: 24px; }
        .px-8 { padding-left: 32px; padding-right: 32px; }
        .py-1 { padding-top: 4px; padding-bottom: 4px; }
        .py-2 { padding-top: 8px; padding-bottom: 8px; }
        .py-2\.5 { padding-top: 10px; padding-bottom: 10px; }
        .py-3 { padding-top: 12px; padding-bottom: 12px; }
        .py-4 { padding-top: 16px; padding-bottom: 16px; }
        .py-12 { padding-top: 48px; padding-bottom: 48px; }
        .py-16 { padding-top: 64px; padding-bottom: 64px; }
        .py-20 { padding-top: 80px; padding-bottom: 80px; }
        .pt-1 { padding-top: 4px; }
        .pt-6 { padding-top: 24px; }
        .pt-16 { padding-top: 64px; }
        .pt-20 { padding-top: 80px; }
        .pr-4 { padding-right: 16px; }
        
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }
        
        .text-white { color: #ffffff; }
        .text-gray-200 { color: #e5e7eb; }
        .text-gray-300 { color: #d1d5db; }
        .text-gray-400 { color: #9ca3af; }
        .text-gray-500 { color: #6b7280; }
        .text-gray-600 { color: #4b5563; }
        .text-green-400 { color: #4ade80; }
        .text-green-500 { color: #22c55e; }
        .text-red-400 { color: #f87171; }
        .text-red-500 { color: #ef4444; }
        .text-blue-400 { color: #60a5fa; }
        .text-blue-500 { color: #3b82f6; }
        .text-purple-400 { color: #c084fc; }
        .text-purple-500 { color: #a855f7; }
        .text-cyan-400 { color: #22d3ee; }
        .text-emerald-400 { color: #34d399; }
        .text-emerald-500 { color: #10b981; }
        .text-yellow-400 { color: #facc15; }
        .text-yellow-500 { color: #eab308; }
        
        .text-xs { font-size: 12px; }
        .text-sm { font-size: 14px; }
        .text-base { font-size: 16px; }
        .text-lg { font-size: 18px; }
        .text-xl { font-size: 20px; }
        .text-2xl { font-size: 24px; }
        .text-3xl { font-size: 30px; }
        .text-4xl { font-size: 36px; }
        .text-5xl { font-size: 48px; }
        .text-6xl { font-size: 60px; }

        @media (min-width: 640px) {
            .sm\:text-3xl { font-size: 30px; }
            .sm\:text-4xl { font-size: 36px; }
            .sm\:text-5xl { font-size: 48px; }
        }

        @media (min-width: 768px) {
            .md\:text-2xl { font-size: 24px; }
            .md\:text-4xl { font-size: 36px; }
            .md\:text-5xl { font-size: 48px; }
            .md\:text-6xl { font-size: 60px; }
        }

        @media (min-width: 1024px) {
            .lg\:text-8xl { font-size: 96px; }
        }
        
        .font-bold { font-weight: 700; }
        .font-black { font-weight: 900; }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        
        .uppercase { text-transform: uppercase; }
        .tracking-wider { letter-spacing: 0.05em; }
        .tracking-widest { letter-spacing: 0.1em; }
        .leading-tight { line-height: 1.25; }
        .leading-relaxed { line-height: 1.6; }
        
        .rounded-lg { border-radius: 8px; }
        .rounded-xl { border-radius: 12px; }
        .rounded-2xl { border-radius: 16px; }
        .rounded-3xl { border-radius: 24px; }
        .rounded-full { border-radius: 9999px; }
        
        .border { border-width: 1px; }
        .border-2 { border-width: 2px; }
        .border-t { border-top-width: 1px; }
        .border-b { border-bottom-width: 1px; }
        
        .border-transparent { border-color: transparent; }
        
        .bg-white { background-color: #ffffff; }
        .bg-transparent { background-color: transparent; }
        .bg-red-500 { background-color: #ef4444; }
        .bg-blue-500 { background-color: #3b82f6; }
        .bg-purple-500 { background-color: #a855f7; }
        .bg-emerald-500 { background-color: #10b981; }
        .bg-yellow-500 { background-color: #eab308; }
        .bg-green-400 { background-color: #4ade80; }
        .bg-gray-700 { background-color: #374151; }
        
        .bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
        .bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to)); }
        
        .from-pubg-gold { --tw-gradient-from: #F4A623; }
        .from-pubg-blue\/20 { --tw-gradient-from: rgba(26,58,92,0.2); }
        .from-red-500 { --tw-gradient-from: #ef4444; }
        .from-purple-500 { --tw-gradient-from: #a855f7; }
        .from-cyan-500 { --tw-gradient-from: #06b6d4; }
        .from-emerald-500 { --tw-gradient-from: #10b981; }
        .from-yellow-500 { --tw-gradient-from: #eab308; }
        .from-pubg-gold\/20 { --tw-gradient-from: rgba(244,166,35,0.2); }
        
        .to-pubg-orange { --tw-gradient-to: #E8791E; }
        .to-pubg-darker { --tw-gradient-to: #060912; }
        .to-orange-500 { --tw-gradient-to: #f97316; }
        .to-pink-500 { --tw-gradient-to: #ec4899; }
        .to-teal-500 { --tw-gradient-to: #14b8a6; }
        .to-green-500 { --tw-gradient-to: #22c55e; }
        .to-amber-500 { --tw-gradient-to: #f59e0b; }
        
        .opacity-0 { opacity: 0; }
        .opacity-10 { opacity: 0.1; }
        .opacity-20 { opacity: 0.2; }
        .opacity-30 { opacity: 0.3; }
        .opacity-50 { opacity: 0.5; }
        
        .transition-all { transition: all 0.3s; }
        .transition-colors { transition: color 0.3s, background-color 0.3s, border-color 0.3s; }
        .transition-transform { transition: transform 0.3s; }
        .duration-300 { transition-duration: 0.3s; }
        .duration-500 { transition-duration: 0.5s; }
        
        .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
        .rotate-12 { transform: rotate(12deg); }
        .hover\:rotate-0:hover { transform: rotate(0deg); }
        .hover\:-translate-y-2:hover { transform: translateY(-8px); }
        .hover\:scale-110:hover { transform: scale(1.1); }
        
        .pointer-events-none { pointer-events: none; }
        .pointer-events-auto { pointer-events: auto; }
        
        .overflow-hidden { overflow: hidden; }
        .overflow-x-hidden { overflow-x: hidden; }
        
        .cursor-pointer { cursor: pointer; }
        
        .group:hover .group-hover\:scale-110 { transform: scale(1.1); }
        .group:hover .group-hover\:opacity-100 { opacity: 1; }
        
        .hover\:bg-pubg-gold\/10:hover { background-color: rgba(244,166,35,0.1); }
        .hover\:bg-pubg-gold\/20:hover { background-color: rgba(244,166,35,0.2); }
        .hover\:text-pubg-gold:hover { color: #F4A623; }
        .hover\:border-pubg-gold\/20:hover { border-color: rgba(244,166,35,0.2); }
        .hover\:border-pubg-gold\/30:hover { border-color: rgba(244,166,35,0.3); }
        
        .grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        
        .space-y-2 > * + * { margin-top: 8px; }
        
        @media (min-width: 640px) {
            .sm\:block { display: block; }
            .sm\:flex-row { flex-direction: row; }
            .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
            .sm\:py-28 { padding-top: 112px; padding-bottom: 112px; }
            .sm\:p-8 { padding: 32px; }
            .sm\:gap-6 { gap: 24px; }
            .sm\:gap-8 { gap: 32px; }
            .sm\:tracking-\[8px\] { letter-spacing: 0.5em; }
        }
        
        @media (min-width: 768px) {
            .md\:flex { display: flex; }
            .md\:hidden { display: none; }
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .md\:px-8 { padding-left: 32px; padding-right: 32px; }
            .md\:py-4 { padding-top: 16px; padding-bottom: 16px; }
        }
        
        @media (min-width: 1024px) {
            .lg\:w-12 { width: 48px; }
            .lg\:h-12 { height: 48px; }
            .lg\:h-20 { height: 80px; }
            .lg\:text-xl { font-size: 20px; }
            .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
            .lg\:p-8 { padding: 32px; }
            .lg\:px-8 { padding-left: 32px; padding-right: 32px; }
            .lg\:gap-8 { gap: 32px; }
        }

        .nav-link {
            position: relative;
            font-family: 'Rajdhani', sans-serif;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #d1d5db;
            transition: color 0.3s;
            text-decoration: none;
            font-weight: 600;
        }

        .nav-link:hover {
            color: #F4A623;
        }

        .nav-link span {
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #F4A623;
            transition: width 0.3s;
        }

        .nav-link:hover span {
            width: 100%;
        }

        .mobile-nav-link {
            font-family: 'Rajdhani', sans-serif;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #d1d5db;
            padding: 12px 0;
            border-bottom: 1px solid rgba(244,166,35,0.1);
            transition: color 0.3s;
            text-decoration: none;
            display: block;
            font-weight: 600;
        }

        .mobile-nav-link:hover {
            color: #F4A623;
        }

        #back-to-top {
            transition: opacity 0.3s, transform 0.3s;
        }

        #back-to-top:hover {
            transform: scale(1.1);
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(-25%); }
            50% { transform: translateY(0); }
        }

        .animate-bounce {
            animation: bounce 1s infinite;
        }

        .border-pubg-gold\/5 { border-color: rgba(244,166,35,0.05); }
        .border-pubg-gold\/10 { border-color: rgba(244,166,35,0.1); }
        .border-pubg-gold\/20 { border-color: rgba(244,166,35,0.2); }
        .border-pubg-gold\/30 { border-color: rgba(244,166,35,0.3); }

        .bg-pubg-gold\/10 { background-color: rgba(244,166,35,0.1); }
        .bg-pubg-gold\/20 { background-color: rgba(244,166,35,0.2); }
        .bg-pubg-gold\/60 { background-color: rgba(244,166,35,0.6); }
        .bg-pubg-darker\/50 { background-color: rgba(6,9,18,0.5); }

        .text-pubg-gold\/40 { color: rgba(244,166,35,0.4); }
        .text-pubg-gold\/50 { color: rgba(244,166,35,0.5); }
        .text-pubg-gold\/60 { color: rgba(244,166,35,0.6); }

        .cheat-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .cheat-card p {
            font-family: 'Rajdhani', sans-serif;
            font-size: 14px;
            color: #9ca3af;
            margin-bottom: 16px;
            font-weight: 500;
            line-height: 1.5;
        }
        
        footer ul {
            list-style: none;
            padding-left: 0;
        }

        .cyber-btn i {
            margin-right: 6px;
        }

        footer a {
            text-decoration: none;
        }

        button {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
        }

        .stat-value {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        .stat-label {
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        footer {
            overflow: hidden;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        #mobile-menu-btn {
            color: #F4A623;
            font-size: 24px;
            background: transparent !important;
            border: none !important;
            outline: none !important;
            padding: 0 !important;
            box-shadow: none !important;
        }

        #close-menu {
            color: #F4A623;
            font-size: 24px;
            background: transparent !important;
            border: none !important;
            outline: none !important;
            padding: 0 !important;
            box-shadow: none !important;
        }

        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 640px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 768px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (min-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 640px) {
            .cheat-card {
                overflow: visible !important;
            }
            
            .cheat-card .w-full.h-56 {
                height: auto !important;
                aspect-ratio: 16/9 !important;
            }
            
            .cheat-card img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
            }
            
            .testimonial-card p {
                word-break: break-word;
            }
        }

        @media (max-width: 374px) {
            .cheat-card-inner {
                padding: 10px 8px !important;
            }
            
            .cheat-card-inner > div:first-child {
                margin-top: 2px !important;
                margin-bottom: -20px !important;
            }
            
            .cheat-card-inner > div:first-child span {
                font-size: 12px !important;
                padding: 2px 8px !important;
            }
            
            .feature-item {
                font-size: 14px !important;
                padding-left: 14px !important;
            }
            
            .feature-item::before {
                font-size: 10px !important;
            }
            
            .price-shine {
                font-size: 16px !important;
            }
            
            .custom-select {
                font-size: 14px !important;
                padding: 2px 16px 2px 4px !important;
                max-width: 100px !important;
                background-position: right 3px center !important;
            }
            
            .cheat-card .cyber-btn {
                font-size: 10px !important;
                padding: 8px 10px !important;
                gap: 4px !important;
            }
            
            .testimonial-card {
                padding: 10px 8px !important;
            }
            
            .testimonial-card p {
                font-size: 11px !important;
            }
            
            .testimonial-card .w-10.h-10 {
                width: 28px !important;
                height: 28px !important;
                font-size: 10px !important;
            }
            
            .products-grid {
                gap: 12px !important;
            }
            
            .reviews-grid {
                gap: 12px !important;
            }
        }

@media (min-width: 375px) and (max-width: 390px) {
    .cheat-card-inner > div:first-child {
        margin-top: 0px !important;
        margin-bottom: -28px !important;
    }
    .cheat-card-inner > div:first-child span {
        font-size: 16px !important;
        padding: 3px 12px !important;
    }
}

@media (min-width: 390px) and (max-width: 460px) {
    .cheat-card-inner > div:first-child {
        margin-top: -2px !important;
        margin-bottom: -28px !important;
    }
    .cheat-card-inner > div:first-child span {
        font-size: 16px !important;
        padding: 3px 12px !important;
    }
}

@media (min-width: 460px) and (max-width: 639px) {
    .cheat-card-inner > div:first-child {
        margin-top: 0px !important;
        margin-bottom: -28px !important;
    }
    .cheat-card-inner > div:first-child span {
        font-size: 16px !important;
        padding: 3px 12px !important;
    }
}

@media (min-width: 640px) {
    .cheat-card {
        overflow: hidden !important;
    }
    
    .cheat-card .w-full.h-56 {
        aspect-ratio: auto !important;
        height: 175px !important;
    }
}

.product-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .product-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-container {
            background: linear-gradient(135deg, rgba(10,14,23,0.98), rgba(6,9,18,0.99));
            border: 1px solid rgba(244,166,35,0.3);
            border-radius: 24px;
            max-width: 500px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.4s ease;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), 0 0 50px rgba(244,166,35,0.2);
        }
        
        .product-modal.active .modal-container {
            transform: scale(1);
        }
        
        .modal-container::-webkit-scrollbar {
            width: 4px;
        }
        
        .modal-header {
            background: linear-gradient(135deg, rgba(244,166,35,0.15), rgba(232,121,30,0.1));
            padding: 20px;
            border-bottom: 1px solid rgba(244,166,35,0.2);
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            width: 32px;
            height: 32px;
            background: rgba(244,166,35,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(244,166,35,0.2);
        }
        
        .modal-close:hover {
            background: rgba(244,166,35,0.3);
            transform: rotate(90deg);
        }
        
        .modal-close i {
            color: #F4A623;
            font-size: 18px;
        }
        
        .modal-body {
            padding: 24px;
        }
        
        .price-option {
            background: linear-gradient(135deg, rgba(26,58,92,0.2), rgba(10,14,23,0.6));
            border: 1px solid rgba(244,166,35,0.1);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price-option:hover {
            border-color: rgba(244,166,35,0.4);
            background: rgba(244,166,35,0.05);
            transform: translateX(5px);
        }
        
        .price-option.selected {
            border-color: #F4A623;
            background: rgba(244,166,35,0.1);
            box-shadow: 0 0 20px rgba(244,166,35,0.2);
        }
        
        .price-option-days {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .price-option-days i {
            font-size: 24px;
            color: #F4A623;
        }
        
        .price-option-price {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 24px;
            background: linear-gradient(135deg, #F4A623, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .buy-btn {
            width: 100%;
            background: linear-gradient(135deg, #F4A623, #E8791E);
            border: none;
            padding: 14px;
            border-radius: 12px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #0A0E17;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 24px;
        }
        
        .buy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(244,166,35,0.3);
        }
        
        .payment-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.97);
            backdrop-filter: blur(20px);
            z-index: 1100;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .payment-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .payment-container {
            background: linear-gradient(135deg, #0A0E17, #060912);
            border: 1px solid rgba(244,166,35,0.3);
            border-radius: 24px;
            max-width: 450px;
            width: 90%;
            padding: 32px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .payment-modal.active .payment-container {
            transform: scale(1);
        }
        
        .payment-container h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            margin-bottom: 24px;
            text-align: center;
        }
        
        .payment-container input {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(244,166,35,0.2);
            border-radius: 12px;
            padding: 14px 16px;
            color: white;
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
            margin-bottom: 20px;
        }
        
        .payment-container input:focus {
            border-color: #F4A623;
            box-shadow: 0 0 15px rgba(244,166,35,0.2);
        }
        
        .offer-link {
            color: #F4A623;
            cursor: pointer;
            text-decoration: underline;
            font-size: 13px;
            margin: 16px 0;
            display: inline-block;
        }
        
        .offer-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1200;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .offer-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .offer-container {
            background: linear-gradient(135deg, #0A0E17, #060912);
            border: 1px solid rgba(244,166,35,0.3);
            border-radius: 24px;
            max-width: 700px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 24px;
        }
        
        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 20px 0;
            cursor: pointer;
        }
        
        .checkbox-container input {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #F4A623;
        }
        
        .checkbox-container label {
            font-family: 'Rajdhani', sans-serif;
            font-size: 14px;
            color: #9ca3af;
            cursor: pointer;
        }
        
        .pay-btn-disabled {
            opacity: 0.5;
            pointer-events: none;
        }
        
        .price-summary {
            background: rgba(244,166,35,0.1);
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .price-summary span {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: bold;
            color: #F4A623;
        }
        
        .faq-item-full {
            background: linear-gradient(to right, rgba(26,58,92,0.1), transparent);
            border: 1px solid rgba(244,166,35,0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            margin-bottom: 16px;
        }
        
#modalProductIcon {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px currentColor);
}

.modal-container:hover #modalProductIcon {
    transform: scale(1.1) rotate(5deg);
}