/* Import Orbitron font for futuristic look */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations to prevent flickering 
*,
*::before,
*::after {
    backface-visibility: hidden;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}*/

:root {
    /* Futuristic Arcade Colors */
    --primary-color: #00ffff;
    --primary-dark: #00cccc;
    --primary-light: #66ffff;
    --secondary-color: #ff00ff;
    --accent-color: #00ff00;
    --danger-color: #ff0040;
    --warning-color: #ffff00;
    
    /* Dark theme base */
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: #1e1e2e;
    
    /* Neon colors */
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
    --neon-yellow: #ffff00;
    --neon-purple: #8000ff;
    --neon-orange: #ff8000;
    
    /* Text colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Arcade Gradients */
    --gradient-primary: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #00ff00 100%);
    --gradient-secondary: linear-gradient(135deg, #ff00ff 0%, #8000ff 50%, #00ffff 100%);
    --gradient-accent: linear-gradient(135deg, #00ff00 0%, #ffff00 50%, #ff8000 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    
    /* Typography */
    --font-primary: 'Orbitron', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Orbitron', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max-width: 1400px;
    --section-padding: 5rem 0;
    
    /* Simplified Shadows & Glows - Reduced intensity */
    --shadow-sm: 0 1px 2px 0 rgba(0, 255, 255, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 255, 255, 0.1), 0 2px 4px -1px rgba(255, 0, 255, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 255, 255, 0.15), 0 4px 6px -2px rgba(255, 0, 255, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 255, 255, 0.2), 0 10px 10px -5px rgba(255, 0, 255, 0.15);
    
    --glow-cyan: 0 0 10px rgba(0, 255, 255, 0.3);
    --glow-pink: 0 0 10px rgba(255, 0, 255, 0.3);
    --glow-green: 0 0 10px rgba(0, 255, 0, 0.3);
    --glow-yellow: 0 0 10px rgba(255, 255, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Faster, smoother transitions */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.4s ease-out;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    padding-top: 100px; /* Account for fixed header */
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Simplified background - removed heavy animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.4;
    /* Removed heavy animation */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    /* Reduced text-shadow intensity */
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

h1 { 
    font-size: 3.5rem; 
    color: var(--white);
    /* Only apply gradient effect where explicitly needed */
}

/* Gradient text for homepage/main areas only */
.hero h1,
.main-content h1,
.landing h1 {
    background: var(--gradient-primary);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2 { 
    font-size: 2.5rem;
    color: var(--neon-cyan);
}
h3 { 
    font-size: 2rem;
    color: var(--neon-pink);
}
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Simplified Buttons - Reduced effects */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    /* Removed heavy ::before animation */
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan), 0 6px 12px rgba(0, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    border: 2px solid var(--neon-pink);
    box-shadow: var(--glow-pink);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-pink), 0 6px 12px rgba(255, 0, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: var(--glow-cyan);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Simplified CTA button - reduced animation intensity */
.btn-cta-large {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: var(--gradient-primary) !important;
    border: 2px solid var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    /* Reduced animation intensity */
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* Header - removed backdrop filter which can cause flickering */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    /* Removed backdrop-filter which causes flickering */
    border-bottom: 1px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    z-index: 1000;
    transition: transform var(--transition-normal);
    transform: translateY(0);
}

.header.nav-hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 1rem 0;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    width: 100%;
    padding: 0 1.5rem;
    /* Prevent collapse under pressure */
    flex-wrap: nowrap;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Prevent logo from being crushed */
    min-width: fit-content;
    z-index: 1002;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.nav-logo i {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-right: 0.5rem;
    /* Simplified filter */
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

/* Logo Image Styles */
.logo-image {
    height: 80px;
    max-height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
    transition: all var(--transition-normal);
}

.nav-logo a:hover .logo-image {
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.8));
    transform: scale(1.05);
}

.footer-logo-image {
    height: 32px;
    max-height: 32px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.4));
}

/* Global logo image constraints - applies to any logo image anywhere */
img[src*="logo"], 
img[alt*="logo"], 
img[alt*="Logo"],
.logo img,
.nav-logo img,
.footer-logo img,
.header-logo img {
    max-height: 85px !important;
    width: auto !important;
    max-width: 320px !important;
    object-fit: contain !important;
    vertical-align: middle !important;
}

/* Hide mobile logo on desktop */
.mobile-nav-logo {
    display: none;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
    /* Prevent menu from breaking */
    flex-shrink: 1;
    min-width: 0;
}

.nav-menu .nav-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    align-items: center;
    /* Better flexibility */
    flex-wrap: nowrap;
    min-width: fit-content;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-300);
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Simplified nav link animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item.active .nav-link {
    color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
}

.nav-item.active .nav-link::after {
    width: 0;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    /* Prevent button area from collapsing */
    flex-shrink: 0;
    min-width: fit-content;
    z-index: 1002;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    /* Ensure toggle button is always accessible */
    position: relative;
    z-index: 1003;
    flex-shrink: 0;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* Simplified Hero Section */
.hero {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Removed heavy hero animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    /* Removed animation */
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    /* Simplified filter */
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gray-200);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-cta .btn {
    min-width: 200px;
}

/* Simplified Features Section */
.features {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

/* Removed heavy features animation */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
    /* Removed animation */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-cyan), 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-pink);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-primary);
    box-shadow: mediumaquamarine;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray-300);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2rem;
    transition: transform var(--transition-normal);
    cursor: default;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--neon-green);
    box-shadow: var(--glow-green);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-green), 0 10px 20px rgba(0, 255, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    display: block;
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
}

.stat-label {
    font-size: 1.125rem;
    color: var(--gray-300);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0.7;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.cta-section p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Pricing Section Fixes */
.pricing {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    margin-top: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--glow-cyan);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    transform: translateY(-10px);
}

.pricing-card.popular {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--neon-pink);
    box-shadow: var(--glow-pink);
}

.pricing-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-left: 0.25rem;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.price-description {
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.token-highlight {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--neon-green);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--glow-green);
    backdrop-filter: blur(10px);
}

.token-highlight i {
    color: var(--neon-yellow);
    font-size: 1.25rem;
    filter: drop-shadow(0 0 5px var(--neon-yellow));
}

.token-highlight span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.token-highlight small {
    color: var(--neon-green);
    font-weight: 700;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--neon-green);
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: var(--gray-300);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

.pricing-features li i {
    color: var(--neon-green);
    filter: drop-shadow(0 0 3px var(--neon-green));
    width: 16px;
    text-align: center;
}

/* Custom Development Section */
.custom-dev-grid {
    display: grid;
    gap: 2rem;
}

.custom-dev-card {
    background: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.custom-dev-card:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    transform: translateY(-5px);
}

.custom-dev-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-cyan);
}

.custom-dev-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.custom-dev-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-dev-card p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.custom-dev-features {
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.custom-dev-features ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.custom-dev-features li {
    color: var(--gray-300);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.custom-dev-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    filter: drop-shadow(0 0 3px var(--neon-green));
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-form-section h2 {
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.contact-form-section p {
    margin-bottom: 2rem;
    color: var(--gray-300);
}

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.contact-info-section h2 {
    margin-bottom: 2rem;
    color: var(--neon-pink);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--neon-purple);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-pink);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.contact-method:hover::before {
    opacity: 1;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-pink), 0 15px 30px rgba(255, 0, 255, 0.2);
    border-color: var(--neon-yellow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--glow-pink);
    position: relative;
    z-index: 1;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--neon-purple);
    position: relative;
    z-index: 1;
}

.contact-details p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Form Label Icons */
.form-label i {
    margin-right: 0.5rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.faq-item:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    transform: translateY(-2px);
}

.faq-question {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-question i {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.faq-answer {
    margin: 0;
}

.faq-answer p {
    color: var(--gray-300);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--neon-cyan);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    opacity: 0.5;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: var(--glow-cyan);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--glow-cyan);
}

.social-link:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan), 0 10px 20px rgba(0, 255, 255, 0.3);
}

.footer-section h4 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--neon-cyan);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-500);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--neon-cyan);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-card);
    color: var(--white);
    font-family: var(--font-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    background: rgba(255, 0, 255, 0.05);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input.error {
    border-color: var(--danger-color);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
}

.form-error {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-success {
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-success.show {
    display: block;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--neon-green);
    border-radius: var(--radius-xl);
    box-shadow: var(--glow-green);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-green), 0 20px 40px rgba(0, 255, 0, 0.3);
    border-color: var(--neon-yellow);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--glow-green);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--neon-green);
    position: relative;
    z-index: 1;
}

.process-step p {
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    text-align: left;
}

.feature-list li {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '▶';
    color: var(--neon-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes neonPulse {
    0%, 100% { 
        text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor;
    }
    50% { 
        text-shadow: 0 0 2px currentColor, 0 0 5px currentColor, 0 0 8px currentColor;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.loading {
    animation: spin 1s linear infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.neon-pulse {
    animation: neonPulse 2s ease-in-out infinite;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: inherit;
}

/* Glitch effect for special elements */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch {
    animation: glitch 0.3s ease-in-out infinite;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--neon-cyan);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

/* Selection styling */
::selection {
    background: var(--neon-cyan);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--neon-cyan);
    color: var(--bg-primary);
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Navigation adjustments for tablet */
    .nav-menu {
        margin-left: 1rem;
    }
    
    .nav-menu .nav-list {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .nav-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Navigation pressure point fixes - 820px to 768px */
@media (max-width: 820px) and (min-width: 769px) {
    .nav-menu {
        margin-left: 0.5rem;
    }
    
    .nav-menu .nav-list {
        gap: 0.75rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .nav-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.popular {
        order: -1;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .custom-dev-card {
        margin-bottom: 2rem;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Image handling and layout safety rules */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.image-container.hero-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    max-height: 400px;
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.image-container.gaming-setup-image {
    width: 100%;
    max-width: 600px;
    height: 450px;
    max-height: 450px;
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
}

.image-container.vr-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    max-height: 400px;
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
}

.image-container.arcade-image {
    width: 100%;
    max-width: 600px;
    height: 350px;
    max-height: 350px;
    border-color: var(--neon-yellow);
    box-shadow: var(--glow-yellow);
}

.image-container.game-thumbnail {
    width: 100%;
    max-width: 300px;
    height: 200px;
    max-height: 200px;
    border: 1px solid var(--gray-600);
    box-shadow: none;
    border-radius: var(--radius-lg);
}

.responsive-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease;
    display: block !important;
}

.responsive-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.hero-overlay {
    background: linear-gradient(45deg, rgba(0,255,255,0.1), rgba(255,0,255,0.1));
}

.gaming-overlay {
    background: linear-gradient(45deg, rgba(255,0,255,0.1), rgba(0,255,0,0.1));
}

.vr-overlay {
    background: linear-gradient(45deg, rgba(0,255,0,0.1), rgba(255,255,0,0.1));
}

.arcade-overlay {
    background: linear-gradient(45deg, rgba(255,255,0,0.1), rgba(255,0,255,0.1));
}

/* Force all images to respect container boundaries */
* img {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
}

/* Prevent any element from overflowing */
.hero, .features, .pricing, .contact, .cta-section {
    overflow-x: hidden;
}

/* Grid layout safety rules */
.hero .container,
.features .container,
.pricing .container,
.contact .container,
.cta-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Ensure grid items don't grow beyond their containers */
.hero .container > div > .image-container,
.features .container > div > .image-container,
.cta-section .container > div > .image-container {
    justify-self: center;
    align-self: center;
}

/* Specific constraints for image containers in grids */
div[style*="grid-template-columns"] .image-container {
    max-width: 600px !important;
    width: 100% !important;
}

/* Additional safety for flex and grid items */
.hero > *,
.features > *,
.pricing > *,
.contact > *,
.cta-section > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Mobile responsive images */
@media (max-width: 768px) {
    .image-container.hero-image,
    .image-container.gaming-setup-image,
    .image-container.vr-image {
        width: 100%;
        max-width: 100%;
        height: 250px;
        max-height: 250px;
    }
    
    .image-container.arcade-image {
        width: 100%;
        max-width: 100%;
        height: 200px;
        max-height: 200px;
    }
    
    .image-container.game-thumbnail {
        width: 100%;
        max-width: 100%;
        height: 150px;
        max-height: 150px;
    }
    
    /* Force proper sizing on mobile */
    .responsive-image {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .hero .container > div,
    .features .container > div,
    .pricing .container > div,
    .contact .container > div,
    .cta-section .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Universal image safety - most aggressive constraints */
img, .responsive-image, .image-container img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* Override any inline width/height styles */
img[style*="width"],
img[style*="height"] {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
}

/* Ensure responsive images in containers */
.image-container .responsive-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
}

/* Game status badges */
.game-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.game-status.featured {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.game-status.new {
    background: linear-gradient(135deg, var(--neon-green), var(--accent-color));
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.game-status.popular {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.game-status.active {
    background: linear-gradient(135deg, var(--accent-color), var(--neon-yellow));
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

.game-status.top-played {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.game-status.top-grossing {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.game-status.earning {
    background: linear-gradient(135deg, #32cd32, #90ee90);
    color: var(--black);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.5);
}

/* Play count badge */
.play-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.play-count i {
    color: var(--neon-cyan);
}

/* Revenue badge */
.revenue-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.9);
    color: var(--black);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
    border: 1px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.revenue-badge i {
    color: #b8860b;
}

/* New badge */
.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 255, 0, 0.9);
    color: var(--black);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.new-badge i {
    color: #006400;
}

/* Special styling for top games */
.game-card.top-played {
    border: 2px solid #ff6b35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.game-card.top-grossing {
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.game-card.newly-added {
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

/* Simplified Build Banner - Removed heavy animations */
.build-banner {
    margin-top: -100px;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 50%, var(--neon-cyan) 100%);
    padding: 1rem 0;
    position: relative;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
}

.build-banner.sticky-banner {
    position: sticky;
    top: 0;
    z-index: 999;
    transform: translateZ(0);
    /* Removed heavy animation */
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.banner-icon {
    font-size: 2rem;
    color: var(--bg-primary);
    /* Removed spinning animation */
}

.banner-text h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--bg-primary);
    text-shadow: none;
}

.banner-text p {
    margin: 0;
    font-size: 1rem;
    color: var(--bg-primary);
    opacity: 0.9;
}

.banner-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.banner-price {
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Quick Build Section */
.quick-build-section {
    background: var(--bg-secondary);
    position: relative;
}

.build-examples {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.example-prompts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.prompt-card {
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

.prompt-card:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    transform: translateY(-3px) translateZ(0);
}

.prompt-card i {
    font-size: 2rem;
    color: var(--neon-cyan);
    min-width: 3rem;
}

.prompt-card p {
    margin: 0;
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
}

.build-cta {
    text-align: center;
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--neon-green);
    box-shadow: var(--glow-green);
}

.build-cta h3 {
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.build-price {
    margin-top: 1rem;
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* Stats Build Section */
.build-stats {
    background: var(--gradient-dark);
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header h2 {
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.stats-header p {
    font-size: 1.2rem;
    color: var(--gray-300);
}

.stat-subtitle {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
    font-style: italic;
}

.stats-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Game Cards Enhancements */
.creator-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--gradient-accent);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.creator-badge i {
    font-size: 0.8rem;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    border: 2px solid var(--neon-pink);
}

.section-cta h3 {
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.section-cta p {
    margin-bottom: 1.5rem;
    color: var(--gray-300);
}

/* Inspiration Section */
.inspiration-section {
    background: var(--gradient-secondary);
    color: var(--white);
}

.inspiration-content h2 {
    color: var(--white);
    text-shadow: var(--glow-cyan);
}

.inspiration-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.inspiration-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.inspiration-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.inspiration-item i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    min-width: 2rem;
}

.inspiration-item span {
    color: var(--white);
    font-size: 1.1rem;
}

.inspiration-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--bg-primary);
}

/* Developer Section */
.developer-section {
    background: var(--bg-tertiary);
}

.developer-features {
    display: grid;
    gap: 1.5rem;
}

.developer-card {
    background: var(--bg-card);
    border: 2px solid var(--neon-purple);
}

.developer-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--neon-green);
}

.testimonial-content p {
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--neon-cyan);
    display: block;
}

.testimonial-author span {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Mobile Responsive for New Elements */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .banner-text {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .banner-text h3 {
        font-size: 1.2rem;
    }
    
    .build-examples {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .inspiration-cta {
        flex-direction: column;
    }
    
    .prompt-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .developer-section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .stats-header h2 {
        font-size: 1.8rem;
    }
}

/* Hide mobile-only elements on desktop */
.mobile-logout {
    display: none;
}

/* Global Token-specific fa-coins icon coloring */
.fa-coins {
    color: var(--neon-yellow); /* Default token color */
}

/* Promo tokens context - purple (#4338ca) */
.promo-tokens .fa-coins,
.token-promo .fa-coins,
[data-token-type="promo"] .fa-coins,
[data-token-type="promo_tokens"] .fa-coins,
.promo-token-context .fa-coins {
    color: #4338ca !important;
}

/* Earned tokens context - green (#228b22) */
.earned-tokens .fa-coins,
.token-earned .fa-coins,
[data-token-type="earned"] .fa-coins,
[data-token-type="earned_tokens"] .fa-coins,
.earned-token-context .fa-coins {
    color: #228b22 !important;
}

/* Builder tokens context - yellow (var(--neon-yellow)) */
.builder-tokens .fa-coins,
.token-builder .fa-coins,
[data-token-type="builder"] .fa-coins,
[data-token-type="builder_tokens"] .fa-coins,
.builder-token-context .fa-coins {
    color: var(--neon-yellow) !important;
}

/* Page-specific contexts */
.earnings-page .section-header .fa-coins {
    color: #228b22 !important; /* Earnings use earned token color */
}

.payouts-page .fa-coins {
    color: #228b22 !important; /* Payouts use earned token color */
}

/* Sidebar navigation - earnings link */
.nav-link[href="/dashboard/earnings"] .fa-coins {
    color: #228b22 !important;
}

/* User token display in header */
.user-tokens .fa-coins {
    color: var(--neon-yellow) !important;
}

/* Navigation */ 