/* Ultra Professional Gaming Style - Enhanced Security & Modern Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a78bfa;
    --secondary: #2563eb;
    --accent: #dc2626;
    --dark: #0a0a0a;
    --dark-light: #18181b;
    --card-bg: #0f0f11;
    --card-hover: #1a1a1f;
    --text: #f4f4f5;
    --text-dim: #71717a;
    --border: #27272a;
    --border-light: #3f3f46;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --gradient: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    --gradient-hover: linear-gradient(135deg, #5b21b6 0%, #1d4ed8 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --glow: #7c3aed;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent text selection and right-click */
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Advanced Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* Animated Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Professional Header */
.header {
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(15, 15, 17, 0.98);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(30px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateY(-2px) scale(1.02);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.logo-icon i {
    font-size: 18px;
    color: white;
}

.logo:hover .logo-icon {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.6);
    transform: rotate(-5deg);
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Mobile Navigation - Enhanced */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: rgba(15, 15, 17, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 20px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-header h3 {
    font-size: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-menu .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-menu .nav-link:hover {
    background: rgba(124, 58, 237, 0.1);
    padding-left: 24px;
}

.mobile-nav-menu .nav-link.active {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary);
}

/* Overlay for mobile menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section - Enhanced */
.hero {
    margin-top: 70px;
    padding: 40px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-10%, -10%) scale(1.1); opacity: 1; }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f4f4f5 0%, #a78bfa 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 80px rgba(124, 58, 237, 0.5);
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1) contrast(1); }
    50% { filter: brightness(1.2) contrast(1.1); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Products Section */
.products-section {
    padding: 30px 0 60px;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 10px;
}

/* Ultra Professional Game Card - Enhanced */
.game-card {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.95), rgba(24, 24, 27, 0.95));
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(124, 58, 237, 0.1), 
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

/* Card Badges */
.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge i {
    font-size: 12px;
}

.badge-popular {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(239, 68, 68, 0.9));
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.badge-risk {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(251, 191, 36, 0.9));
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.badge-updating {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(96, 165, 250, 0.9));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Price Badge Bottom Left - Like Screenshot */
.price-badge-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .price-badge-overlay {
    transform: scale(1.05);
    background: rgba(16, 185, 129, 0.3);
}

.price-badge-overlay::before {
    content: '

/* Game Image - EXACT Like Screenshot */
.game-image-wrapper {
    height: 240px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.game-icon {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Game Info */
.game-info {
    padding: 18px;
}

.game-header {
    margin-bottom: 14px;
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.title-icon {
    font-size: 16px;
    color: var(--primary);
}

/* Features List - Enhanced */
.features-list {
    margin-bottom: 16px;
}

.features-list h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.features-icon {
    font-size: 13px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.feature-item {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary);
    transform: translateX(3px);
}

.feature-item i {
    font-size: 11px;
}

/* Card Actions - Enhanced */
.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    font-size: 14px;
}

.btn-buy {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-demo {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-demo:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* Features Section - Enhanced */
.features-section {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.02), transparent);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-icon {
    font-size: 32px;
    color: var(--primary);
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.9), rgba(24, 24, 27, 0.9));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.2);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.5;
}

/* Resellers Section - Enhanced */
.resellers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(37, 99, 235, 0.05));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resellers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    animation: floatBg 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -50px); }
}

.reseller-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reseller-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.btn-reseller {
    background: var(--gradient);
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.btn-reseller:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Footer - Enhanced Responsive */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer-section h3 {
        justify-content: center;
    }
}

.footer-icon {
    font-size: 20px;
    color: var(--primary);
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-dim);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }
}

.link-icon {
    font-size: 10px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-dim);
}

/* Modal Styles - Enhanced */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    animation: modalFadeIn 0.3s ease;
    padding: 20px;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.98), rgba(24, 24, 27, 0.98));
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-dim);
}

.modal-close:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.modal-content h2 {
    padding: 24px 24px 16px;
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal Sections */
.modal-section {
    padding: 0 24px 20px;
}

.modal-section h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Modal Variant Options - Enhanced */
.variant-options {
    display: grid;
    gap: 8px;
}

.variant-card {
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.variant-card:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(3px);
}

.variant-card.selected {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.variant-card input {
    position: absolute;
    opacity: 0;
}

.variant-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
}

.variant-duration {
    font-weight: 600;
    font-size: 15px;
    color: white;
}

.variant-price {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.variant-price::before {
    content: '$';
    font-size: 14px;
    opacity: 0.8;
}

/* Quantity Section - Same Size as Variant */
.quantity-section {
    padding: 0 24px 20px;
}

.quantity-section h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.quantity-selector:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 60px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

/* Variant Popular Badge - Smaller */
.variant-badge-popular {
    position: absolute;
    top: -8px;
    right: 8px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.variant-badge-popular i {
    font-size: 9px;
}

/* Total Section - Same Size as Button */
.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: rgba(124, 58, 237, 0.08);
    border-top: 1px solid var(--border);
}

.total-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
}

.total-price {
    font-size: 16px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal Footer - Compact Button */
.modal-footer {
    padding: 0 24px 24px;
    text-align: right;
}

.btn-checkout {
    display: inline-block;
    width: auto;
    padding: 10px 24px;
    font-size: 13px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

/* Demo Modal Enhanced */
.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
}

.demo-header h2 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-stats {
    display: flex;
    gap: 20px;
    padding: 0 24px 16px;
    font-size: 13px;
    color: var(--text-dim);
}

.demo-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-stat i {
    color: var(--primary);
}

.demo-content {
    padding: 0 24px 24px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-actions {
    display: flex;
    gap: 12px;
}

/* Checkout Page Styles */
.checkout-container {
    max-width: 1100px;
    margin: 80px auto 40px;
    padding: 0 15px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.checkout-header p {
    font-size: 16px;
    color: var(--text-dim);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.checkout-card {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.9), rgba(24, 24, 27, 0.9));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.checkout-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Timer Styles - Top Right Corner Compact */
.checkout-timer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.timer-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.timer-icon {
    font-size: 16px;
    color: var(--primary);
}

.timer-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.timer-label {
    font-size: 11px;
    opacity: 0.7;
    display: none;
}

.timer-countdown {
    font-size: 16px;
    font-weight: 600;
    font-family: monospace;
    color: var(--primary);
}

.timer-warning .timer-countdown {
    color: var(--warning);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    background-size: 200% 100%;
    animation: urgencyGradient 3s ease-in-out infinite;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes urgencyGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-banner i {
    font-size: 20px;
    animation: bellRing 1s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Order Summary Compact */
.order-summary-compact {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.order-summary-compact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.order-details {
    flex: 1;
}

.order-details h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: white;
    font-weight: 700;
}

.order-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.order-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.order-meta i {
    font-size: 11px;
    color: var(--primary);
}

.order-price {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.order-price::before {
    content: '$';
    font-size: 20px;
    opacity: 0.8;
}

/* Payment Methods Grid */
.payment-section-mobile {
    order: -1;
}

@media (min-width: 769px) {
    .payment-section-mobile {
        order: 1;
    }
}

.payment-methods-grid {
    display: grid;
    gap: 12px;
}

.payment-method-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.payment-method-compact:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(3px);
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.payment-address-short {
    font-family: monospace;
    font-size: 12px;
    color: var(--text-dim);
}

.copy-btn-small {
    padding: 8px;
    width: 36px;
    height: 36px;
    font-size: 14px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn-small:hover {
    background: var(--primary);
    color: white;
}

.copy-btn-small.copied {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

/* Form Styles - Enhanced */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.form-control::placeholder {
    color: var(--text-dim);
}

.form-help {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* File Input - Enhanced */
input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

input[type="file"]::-webkit-file-upload-button:hover {
    transform: scale(1.05);
}

/* Alerts - Enhanced */
.alert {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    animation: alertSlide 0.3s ease-out;
}

@keyframes alertSlide {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--warning);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

/* Success Page - Enhanced */
.success-container {
    max-width: 700px;
    margin: 100px auto 40px;
}

.success-card {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.9), rgba(24, 24, 27, 0.9));
    border: 2px solid var(--success);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: successGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes successGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.success-icon {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 24px;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 16px;
}

.order-info {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: left;
}

.order-info p {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.order-info strong {
    color: var(--text);
}

/* Expired Overlay */
.expired-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.expired-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    border: 2px solid var(--danger);
    animation: expiredBounce 0.5s ease-out;
}

@keyframes expiredBounce {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.expired-icon {
    font-size: 60px;
    color: var(--danger);
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.expired-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--danger);
}

.expired-text {
    color: var(--text-dim);
    margin-bottom: 20px;
}

/* Security Overlay */
.security-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.security-overlay h1 {
    color: var(--danger);
    font-size: 48px;
    margin-bottom: 20px;
}

.security-overlay p {
    color: var(--text-dim);
    font-size: 18px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

/* Button States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Scrollbar - Enhanced */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--secondary));
}

/* Mobile Responsive - Enhanced */
@media (max-width: 768px) {
    /* Timer Mobile - Top Right Corner */
    .checkout-timer {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
    }
    
    .timer-countdown {
        font-size: 14px;
    }
    
    .timer-icon {
        font-size: 14px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    /* Hero Mobile */
    .hero {
        margin-top: 60px;
        padding: 30px 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 10px;
    }
    
    .game-card {
        max-width: 100%;
    }
    
    /* Modal Mobile */
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 90vh;
    }
    
    .modal-content h2 {
        padding: 20px 20px 14px;
        font-size: 20px;
    }
    
    .modal-section {
        padding: 0 20px 16px;
    }
    
    .quantity-section {
        padding: 0 20px 16px;
    }
    
    .variant-card {
        padding: 12px 14px;
    }
    
    .variant-content {
        grid-template-columns: 1fr auto;
    }
    
    .variant-duration {
        font-size: 14px;
    }
    
    .variant-price {
        font-size: 16px;
    }
    
    .quantity-selector {
        gap: 12px;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .total-section {
        padding: 16px 20px;
    }
    
    .total-label {
        font-size: 14px;
    }
    
    .total-price {
        font-size: 24px;
    }
    
    .modal-footer {
        padding: 0 20px 20px;
    }
    
    .btn-checkout {
        width: 100% !important;
        padding: 14px 24px;
    }
    
    /* Checkout Mobile */
    .checkout-container {
        margin-top: 70px;
    }
    
    .checkout-header h1 {
        font-size: 28px;
    }
    
    .checkout-header p {
        font-size: 14px;
    }
    
    .checkout-card {
        padding: 20px;
    }
    
    .checkout-card h2 {
        font-size: 18px;
    }
    
    .order-summary-compact {
        padding: 14px;
    }
    
    .order-summary-compact h4 {
        font-size: 14px;
    }
    
    .order-summary-compact .order-meta {
        font-size: 11px;
        gap: 8px;
    }
    
    .order-summary-compact .order-price {
        font-size: 24px;
    }
    
    .order-summary-compact .order-price::before {
        font-size: 18px;
    }
    
    .payment-methods-grid {
        gap: 10px;
    }
    
    .payment-method-compact {
        padding: 10px;
    }
    
    .payment-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .payment-info .payment-label {
        font-size: 12px;
    }
    
    .payment-address-short {
        font-size: 11px;
    }
    
    .copy-btn-small {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .form-label {
        font-size: 12px;
    }
    
    .form-control {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-help {
        font-size: 11px;
    }
    
    .checkout-card .btn-checkout {
        width: 100% !important;
        float: none !important;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 25px 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .reseller-content p {
        font-size: 1.1rem;
    }
    
    .btn-reseller {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Success Mobile */
    .success-container {
        margin-top: 80px;
    }
    
    .success-card {
        padding: 40px 20px;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .success-title {
        font-size: 28px;
    }
    
    /* Demo Modal Mobile */
    .demo-header {
        padding: 20px 20px 14px;
    }
    
    .demo-header h2 {
        font-size: 18px;
    }
    
    .demo-stats {
        padding: 0 20px 14px;
        font-size: 12px;
        gap: 15px;
    }
    
    .demo-content {
        padding: 0 20px 20px;
    }
    
    .demo-actions {
        flex-direction: column;
    }
    
    .demo-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-icon i {
        font-size: 16px;
    }
    
    .game-title {
        font-size: 16px;
    }
    
    .price-badge-overlay {
        padding: 3px 8px;
    }
    
    .price-badge-overlay::before {
        font-size: 9px;
    }
    
    .price-badge-overlay .price-amount {
        font-size: 14px;
    }
    
    .price-badge-overlay .price-period {
        font-size: 8px;
    }
    
    .alert {
        font-size: 12px;
        padding: 12px;
    }
    
    .alert i {
        font-size: 18px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .header, .footer, .btn, .modal {
        display: none;
    }
    
    .success-card {
        border: 2px solid black;
        box-shadow: none;
    }
}

/* Custom Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
    50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.6); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

.bounce-in {
    animation: bounceIn 0.5s ease-out;
}

/* Clear floats */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* No JS fallback */
.no-js .modal {
    display: none !important;
}

/* Performance optimizations */
img {
    loading: lazy;
}

/* Prevent layout shift */
.game-image-wrapper {
    aspect-ratio: 16/9;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #8b5cf6;
        --text: #ffffff;
        --dark: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode is default, but light mode support */
@media (prefers-color-scheme: light) {
    /* Keep dark theme as gaming sites typically use dark themes */
}

/* End of Enhanced CSS */;
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

.price-badge-overlay .price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.price-badge-overlay .price-period {
    font-size: 11px;
    color: #10b981;
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.8;
}

/* Game Image - EXACT Like Screenshot */
.game-image-wrapper {
    height: 240px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.game-icon {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Game Info */
.game-info {
    padding: 18px;
}

.game-header {
    margin-bottom: 14px;
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.title-icon {
    font-size: 16px;
    color: var(--primary);
}

/* Features List - Enhanced */
.features-list {
    margin-bottom: 16px;
}

.features-list h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.features-icon {
    font-size: 13px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.feature-item {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary);
    transform: translateX(3px);
}

.feature-item i {
    font-size: 11px;
}

/* Card Actions - Enhanced */
.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    font-size: 14px;
}

.btn-buy {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-demo {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-demo:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* Features Section - Enhanced */
.features-section {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.02), transparent);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-icon {
    font-size: 32px;
    color: var(--primary);
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.9), rgba(24, 24, 27, 0.9));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.2);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.5;
}

/* Resellers Section - Enhanced */
.resellers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(37, 99, 235, 0.05));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resellers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    animation: floatBg 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -50px); }
}

.reseller-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reseller-content p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.btn-reseller {
    background: var(--gradient);
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.btn-reseller:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Footer - Enhanced Responsive */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer-section h3 {
        justify-content: center;
    }
}

.footer-icon {
    font-size: 20px;
    color: var(--primary);
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-dim);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }
}

.link-icon {
    font-size: 10px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-dim);
}

/* Modal Styles - Enhanced */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    animation: modalFadeIn 0.3s ease;
    padding: 20px;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.98), rgba(24, 24, 27, 0.98));
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-dim);
}

.modal-close:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.modal-content h2 {
    padding: 24px 24px 16px;
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal Sections */
.modal-section {
    padding: 0 24px 20px;
}

.modal-section h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Modal Variant Options - Enhanced */
.variant-options {
    display: grid;
    gap: 8px;
}

.variant-card {
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.variant-card:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(3px);
}

.variant-card.selected {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.variant-card input {
    position: absolute;
    opacity: 0;
}

.variant-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
}

.variant-duration {
    font-weight: 600;
    font-size: 15px;
    color: white;
}

.variant-price {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.variant-price::before {
    content: '$';
    font-size: 14px;
    opacity: 0.8;
}

/* Quantity Section - Same Size as Variant */
.quantity-section {
    padding: 0 24px 20px;
}

.quantity-section h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.quantity-selector:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 60px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

/* Variant Popular Badge - Smaller */
.variant-badge-popular {
    position: absolute;
    top: -8px;
    right: 8px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.variant-badge-popular i {
    font-size: 9px;
}

/* Total Section - Same Size as Button */
.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: rgba(124, 58, 237, 0.08);
    border-top: 1px solid var(--border);
}

.total-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
}

.total-price {
    font-size: 16px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal Footer - Compact Button */
.modal-footer {
    padding: 0 24px 24px;
    text-align: right;
}

.btn-checkout {
    display: inline-block;
    width: auto;
    padding: 10px 24px;
    font-size: 13px;
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

/* Demo Modal Enhanced */
.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
}

.demo-header h2 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-stats {
    display: flex;
    gap: 20px;
    padding: 0 24px 16px;
    font-size: 13px;
    color: var(--text-dim);
}

.demo-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-stat i {
    color: var(--primary);
}

.demo-content {
    padding: 0 24px 24px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-actions {
    display: flex;
    gap: 12px;
}

/* Checkout Page Styles */
.checkout-container {
    max-width: 1100px;
    margin: 80px auto 40px;
    padding: 0 15px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.checkout-header p {
    font-size: 16px;
    color: var(--text-dim);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.checkout-card {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.9), rgba(24, 24, 27, 0.9));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.checkout-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Timer Styles - Top Right Corner Compact */
.checkout-timer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.timer-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.timer-icon {
    font-size: 16px;
    color: var(--primary);
}

.timer-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.timer-label {
    font-size: 11px;
    opacity: 0.7;
    display: none;
}

.timer-countdown {
    font-size: 16px;
    font-weight: 600;
    font-family: monospace;
    color: var(--primary);
}

.timer-warning .timer-countdown {
    color: var(--warning);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    background-size: 200% 100%;
    animation: urgencyGradient 3s ease-in-out infinite;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes urgencyGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-banner i {
    font-size: 20px;
    animation: bellRing 1s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Order Summary Compact */
.order-summary-compact {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.order-summary-compact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.order-details {
    flex: 1;
}

.order-details h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: white;
    font-weight: 700;
}

.order-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.order-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.order-meta i {
    font-size: 11px;
    color: var(--primary);
}

.order-price {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.order-price::before {
    content: '$';
    font-size: 20px;
    opacity: 0.8;
}

/* Payment Methods Grid */
.payment-section-mobile {
    order: -1;
}

@media (min-width: 769px) {
    .payment-section-mobile {
        order: 1;
    }
}

.payment-methods-grid {
    display: grid;
    gap: 12px;
}

.payment-method-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.payment-method-compact:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(3px);
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.payment-address-short {
    font-family: monospace;
    font-size: 12px;
    color: var(--text-dim);
}

.copy-btn-small {
    padding: 8px;
    width: 36px;
    height: 36px;
    font-size: 14px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn-small:hover {
    background: var(--primary);
    color: white;
}

.copy-btn-small.copied {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

/* Form Styles - Enhanced */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.form-control::placeholder {
    color: var(--text-dim);
}

.form-help {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* File Input - Enhanced */
input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

input[type="file"]::-webkit-file-upload-button:hover {
    transform: scale(1.05);
}

/* Alerts - Enhanced */
.alert {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    animation: alertSlide 0.3s ease-out;
}

@keyframes alertSlide {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--warning);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

/* Success Page - Enhanced */
.success-container {
    max-width: 700px;
    margin: 100px auto 40px;
}

.success-card {
    background: linear-gradient(135deg, rgba(15, 15, 17, 0.9), rgba(24, 24, 27, 0.9));
    border: 2px solid var(--success);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: successGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes successGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.success-icon {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 24px;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 16px;
}

.order-info {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: left;
}

.order-info p {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.order-info strong {
    color: var(--text);
}

/* Expired Overlay */
.expired-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.expired-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    border: 2px solid var(--danger);
    animation: expiredBounce 0.5s ease-out;
}

@keyframes expiredBounce {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.expired-icon {
    font-size: 60px;
    color: var(--danger);
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.expired-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--danger);
}

.expired-text {
    color: var(--text-dim);
    margin-bottom: 20px;
}

/* Security Overlay */
.security-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.security-overlay h1 {
    color: var(--danger);
    font-size: 48px;
    margin-bottom: 20px;
}

.security-overlay p {
    color: var(--text-dim);
    font-size: 18px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

/* Button States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Scrollbar - Enhanced */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--secondary));
}

/* Mobile Responsive - Enhanced */
@media (max-width: 768px) {
    /* Timer Mobile - Top Right Corner */
    .checkout-timer {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
    }
    
    .timer-countdown {
        font-size: 14px;
    }
    
    .timer-icon {
        font-size: 14px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    /* Hero Mobile */
    .hero {
        margin-top: 60px;
        padding: 30px 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 10px;
    }
    
    .game-card {
        max-width: 100%;
    }
    
    /* Modal Mobile */
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 90vh;
    }
    
    .modal-content h2 {
        padding: 20px 20px 14px;
        font-size: 20px;
    }
    
    .modal-section {
        padding: 0 20px 16px;
    }
    
    .quantity-section {
        padding: 0 20px 16px;
    }
    
    .variant-card {
        padding: 12px 14px;
    }
    
    .variant-content {
        grid-template-columns: 1fr auto;
    }
    
    .variant-duration {
        font-size: 14px;
    }
    
    .variant-price {
        font-size: 16px;
    }
    
    .quantity-selector {
        gap: 12px;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .total-section {
        padding: 16px 20px;
    }
    
    .total-label {
        font-size: 14px;
    }
    
    .total-price {
        font-size: 24px;
    }
    
    .modal-footer {
        padding: 0 20px 20px;
    }
    
    .btn-checkout {
        width: 100% !important;
        padding: 14px 24px;
    }
    
    /* Checkout Mobile */
    .checkout-container {
        margin-top: 70px;
    }
    
    .checkout-header h1 {
        font-size: 28px;
    }
    
    .checkout-header p {
        font-size: 14px;
    }
    
    .checkout-card {
        padding: 20px;
    }
    
    .checkout-card h2 {
        font-size: 18px;
    }
    
    .order-summary-compact {
        padding: 14px;
    }
    
    .order-summary-compact h4 {
        font-size: 14px;
    }
    
    .order-summary-compact .order-meta {
        font-size: 11px;
        gap: 8px;
    }
    
    .order-summary-compact .order-price {
        font-size: 24px;
    }
    
    .order-summary-compact .order-price::before {
        font-size: 18px;
    }
    
    .payment-methods-grid {
        gap: 10px;
    }
    
    .payment-method-compact {
        padding: 10px;
    }
    
    .payment-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .payment-info .payment-label {
        font-size: 12px;
    }
    
    .payment-address-short {
        font-size: 11px;
    }
    
    .copy-btn-small {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .form-label {
        font-size: 12px;
    }
    
    .form-control {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-help {
        font-size: 11px;
    }
    
    .checkout-card .btn-checkout {
        width: 100% !important;
        float: none !important;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 25px 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .reseller-content p {
        font-size: 1.1rem;
    }
    
    .btn-reseller {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Success Mobile */
    .success-container {
        margin-top: 80px;
    }
    
    .success-card {
        padding: 40px 20px;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .success-title {
        font-size: 28px;
    }
    
    /* Demo Modal Mobile */
    .demo-header {
        padding: 20px 20px 14px;
    }
    
    .demo-header h2 {
        font-size: 18px;
    }
    
    .demo-stats {
        padding: 0 20px 14px;
        font-size: 12px;
        gap: 15px;
    }
    
    .demo-content {
        padding: 0 20px 20px;
    }
    
    .demo-actions {
        flex-direction: column;
    }
    
    .demo-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-icon i {
        font-size: 16px;
    }
    
    .game-title {
        font-size: 16px;
    }
    
    .price-badge-overlay {
        padding: 3px 8px;
    }
    
    .price-badge-overlay::before {
        font-size: 9px;
    }
    
    .price-badge-overlay .price-amount {
        font-size: 14px;
    }
    
    .price-badge-overlay .price-period {
        font-size: 8px;
    }
    
    .alert {
        font-size: 12px;
        padding: 12px;
    }
    
    .alert i {
        font-size: 18px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .header, .footer, .btn, .modal {
        display: none;
    }
    
    .success-card {
        border: 2px solid black;
        box-shadow: none;
    }
}

/* Custom Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
    50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.6); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

.bounce-in {
    animation: bounceIn 0.5s ease-out;
}

/* Clear floats */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* No JS fallback */
.no-js .modal {
    display: none !important;
}

/* Performance optimizations */
img {
    loading: lazy;
}

/* Prevent layout shift */
.game-image-wrapper {
    aspect-ratio: 16/9;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #8b5cf6;
        --text: #ffffff;
        --dark: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode is default, but light mode support */
@media (prefers-color-scheme: light) {
    /* Keep dark theme as gaming sites typically use dark themes */
}

/* End of Enhanced CSS */