/* ========================================
   Rise of Companies - Modern Website 2026
   "Hyper-Corporate Future" Design System
   ======================================== */

/* CSS Variables - Spatial Glass & Neon */
:root {
    /* Neon Colors */
    --neon-cyan: #00f3ff;
    --neon-cyan-rgb: 0, 243, 255;
    --primary: #00f3ff;
    --primary-dark: #00c4cc;
    --secondary: #ff6b35;
    --accent: #ffd700;
    --purple: #7c3aed;

    /* Dark Theme */
    --dark: #050810;
    --dark-light: #0c1220;
    --dark-lighter: #141e30;
    --dark-glass: rgba(12, 18, 32, 0.7);

    /* Text */
    --text: #ffffff;
    --text-muted: #8892a6;
    --text-dim: #5a6478;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f3ff 0%, #0099ff 50%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(0, 243, 255, 0.25);
    --shadow-neon: 0 0 30px rgba(0, 243, 255, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-elevated: 0 25px 50px rgba(0, 0, 0, 0.5);

    /* Layout */
    --border-radius: 20px;
    --border-radius-lg: 28px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility - Screen reader only */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-feature-settings: 'cv11', 'ss01';
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - Outfit for headings */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Neon text glow effect */
.neon-text {
    text-shadow: 0 0 20px rgba(var(--neon-cyan-rgb), 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(var(--neon-cyan-rgb), 0.4);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(var(--neon-cyan-rgb), 0.6),
                0 0 60px rgba(var(--neon-cyan-rgb), 0.3);
}

.btn-secondary {
    background: var(--dark-lighter);
    color: var(--text);
    border: 2px solid var(--dark-lighter);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: transparent;
}

.btn-outline {
    background: rgba(var(--neon-cyan-rgb), 0.05);
    color: var(--neon-cyan);
    border: 2px solid rgba(var(--neon-cyan-rgb), 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--neon-cyan);
    color: var(--dark);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(var(--neon-cyan-rgb), 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-lg span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-lg small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--dark-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 128px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 14, 23, 0.9) 0%,
        rgba(10, 14, 23, 0.7) 50%,
        rgba(10, 14, 23, 1) 100%);
}

/* Hero Split Layout */
.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(var(--neon-cyan-rgb), 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    animation: neonPulse 3s ease-in-out infinite;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Visual - Game Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 212, 255, 0.15);
}

.game-preview .preview-main {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
}

.game-preview .preview-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

/* Hero Highlights - Feature badges */
.hero-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(var(--neon-cyan-rgb), 0.1);
    border-color: rgba(var(--neon-cyan-rgb), 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-item i {
    color: var(--primary);
    font-size: 16px;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ========================================
   Section Styles
   ======================================== */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Features Section - Bento Grid Layout
   ======================================== */
.features {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

/* Bento Grid Container */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

/* Glassmorphism Card Base */
.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Glass shine effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Neon glow on hover */
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--neon-cyan), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
}

.feature-card:hover::after {
    opacity: 1;
}

/* Bento Grid Layout - Different card sizes */
.feature-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
}

.feature-card:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}

.feature-card:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.feature-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.feature-card:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}

.feature-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--neon-cyan-rgb), 0.15), rgba(var(--neon-cyan-rgb), 0.05));
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--neon-cyan);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 0 25px rgba(var(--neon-cyan-rgb), 0.5);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Large card (spans 2 columns) gets more content space */
.feature-card:nth-child(1) h3,
.feature-card:nth-child(5) h3 {
    font-size: 1.6rem;
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card,
    .feature-card:nth-child(1),
    .feature-card:nth-child(5) {
        grid-column: span 1;
    }

    .feature-card {
        padding: 25px 20px;
    }
}

/* ========================================
   Buildings Unified Section
   ======================================== */
.buildings-unified {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
}

/* Building Tabs - Compact Selector */
.building-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.building-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: var(--dark-lighter);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.building-tab img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: var(--transition);
}

.building-tab span {
    font-size: 11px;
    font-weight: 500;
}

.building-tab:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    color: var(--text);
}

.building-tab:hover img {
    transform: scale(1.1);
}

.building-tab.active {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.15);
    color: var(--text);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.more-buildings {
    padding: 10px 16px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* Main Display Grid - 3 Column Layout */
.building-display-grid {
    display: grid;
    grid-template-columns: 280px 1fr 200px;
    gap: 30px;
    align-items: center;
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Left: Building Preview */
.building-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.preview-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.preview-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

.building-preview .level-badge {
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--gradient-primary);
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
}

.building-preview .level-text {
    font-size: 10px;
    color: var(--dark);
    font-weight: 600;
}

.building-preview .level-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Orbitron', sans-serif;
}

/* Center: Controls */
.building-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.building-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.building-title h3 {
    font-size: 1.5rem;
    margin: 0;
}

.building-category {
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
}

.building-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Level Control */
.level-control {
    position: relative;
    padding: 15px 0;
}

.level-markers {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.level-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition);
}

.level-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.level-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--dark);
    border-radius: 3px;
    outline: none;
    position: relative;
    z-index: 2;
}

.level-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    transition: var(--transition);
}

.level-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.level-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-fill {
    position: absolute;
    bottom: 15px;
    left: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    z-index: 1;
    pointer-events: none;
    transition: width 0.3s ease;
}

/* Control Actions */
.control-actions {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.auto-play-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.auto-play-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Right: Features */
.building-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--dark);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-mini:hover {
    background: rgba(0, 212, 255, 0.1);
}

.feature-mini i {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 14px;
    flex-shrink: 0;
}

.feature-mini div {
    display: flex;
    flex-direction: column;
}

.feature-mini strong {
    font-size: 13px;
    color: var(--text);
}

.feature-mini span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Responsive - Buildings Unified */
@media (max-width: 1024px) {
    .building-display-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .building-preview {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }

    .building-controls {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
    }

    .building-features {
        grid-row: 2 / 3;
        grid-column: 1 / 3;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .building-tabs {
        gap: 8px;
    }

    .building-tab {
        padding: 8px 10px;
    }

    .building-tab img {
        width: 30px;
        height: 30px;
    }

    .building-tab span {
        font-size: 10px;
    }

    .building-display-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .building-preview {
        grid-row: auto;
        grid-column: auto;
        height: 180px;
    }

    .preview-img {
        width: 150px;
        height: 150px;
    }

    .building-controls {
        grid-row: auto;
        grid-column: auto;
        text-align: center;
    }

    .building-title {
        justify-content: center;
        flex-wrap: wrap;
    }

    .control-actions {
        justify-content: center;
    }

    .building-features {
        grid-row: auto;
        grid-column: auto;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .building-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .more-buildings {
        grid-column: 1 / -1;
        text-align: center;
    }

    .feature-mini {
        padding: 10px 12px;
    }
}

/* ========================================
   Download Section
   ======================================== */
.download-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.download-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.download-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 14, 23, 0.95) 0%,
        rgba(10, 14, 23, 0.8) 100%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-text {
    max-width: 500px;
}

.download-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-lighter);
    border: 2px solid var(--dark-lighter);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.store-btn i {
    font-size: 28px;
}

.store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.store-btn small {
    font-size: 10px;
    color: var(--text-muted);
}

.store-btn strong {
    font-size: 16px;
}

.store-btn:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.store-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.store-btn.disabled:hover {
    border-color: var(--dark-lighter);
    background: var(--dark-lighter);
}

.download-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.df-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.df-item i {
    color: var(--primary);
}

/* Phone Mockup */
.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--dark);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-lighter);
    border-radius: 32px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-el {
    position: absolute;
    width: 80px;
    animation: float 4s ease-in-out infinite;
}

.float-el.el1 {
    top: 20%;
    left: -40px;
    animation-delay: 0s;
}

.float-el.el2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1s;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
    animation: float 3s ease-in-out infinite;
}

.coin1 {
    top: 10%;
    right: 10%;
    animation-delay: 0.5s;
}

.coin2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1.5s;
}

/* ========================================
   Other Games Section
   ======================================== */
.other-games {
    padding: 120px 0;
    background: var(--dark);
}

.game-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--dark-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--dark-lighter);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.game-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-light);
    position: relative;
    padding-top: 120px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    color: var(--dark);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--dark-lighter);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-studio img {
    height: 40px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-highlights {
        justify-content: center;
    }

    .game-preview .preview-main {
        max-width: 500px;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-text {
        max-width: 100%;
    }

    .download-buttons {
        justify-content: center;
    }

    .download-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark-light);
        flex-direction: column;
        padding: 100px 40px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-actions {
        display: none;
    }

    .hero-split {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .game-preview .preview-main {
        max-width: 100%;
        border-radius: 15px;
    }

    .game-preview {
        border-radius: 15px;
    }

    .hero-highlights {
        justify-content: center;
        gap: 10px;
    }

    .highlight-item {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        grid-template-columns: 1fr;
    }

    .game-image {
        height: 200px;
    }

    .game-info {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }

    .store-btn {
        justify-content: center;
    }
}

/* ========================================
   Animations & Effects
   ======================================== */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* Glow effect on hover */
.glow-hover {
    transition: var(--transition);
}

.glow-hover:hover {
    box-shadow: var(--shadow-glow);
}

/* Glow Pulse Button */
.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(var(--neon-cyan-rgb), 0.4); }
    50% { box-shadow: 0 4px 40px rgba(var(--neon-cyan-rgb), 0.8), 0 0 60px rgba(var(--neon-cyan-rgb), 0.4); }
}

/* ========================================
   Enhanced Micro-Interactions (2026)
   ======================================== */

/* Magnetic Button Effect */
.btn-magnetic {
    position: relative;
    transition: transform 0.2s ease;
}

/* Smooth hover lift for all interactive cards */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Neon border animation */
@keyframes neonPulse {
    0%, 100% {
        border-color: rgba(var(--neon-cyan-rgb), 0.3);
        box-shadow: 0 0 15px rgba(var(--neon-cyan-rgb), 0.1);
    }
    50% {
        border-color: rgba(var(--neon-cyan-rgb), 0.6);
        box-shadow: 0 0 30px rgba(var(--neon-cyan-rgb), 0.3);
    }
}

.neon-border {
    animation: neonPulse 3s ease-in-out infinite;
}

/* Shimmer effect for cards */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Floating animation for decorative elements */
@keyframes floatSmooth {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.float-smooth {
    animation: floatSmooth 4s ease-in-out infinite;
}

/* Scale up on focus for accessibility */
.focus-scale:focus {
    transform: scale(1.05);
    outline: 2px solid var(--neon-cyan);
    outline-offset: 4px;
}

/* Icon rotation on hover */
.icon-rotate:hover i {
    transform: rotate(15deg) scale(1.1);
    transition: transform 0.3s ease;
}

/* Text reveal animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-reveal {
    animation: textReveal 0.6s ease-out forwards;
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    animation: textReveal 0.5s ease-out forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-lighter);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* ========================================
   Production Chain Demo
   ======================================== */
.production-demo {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.chain-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.chain-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: var(--dark-lighter);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
    min-width: 140px;
}

.chain-step:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.step-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

.step-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.chain-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

.chain-products {
    display: flex;
    justify-content: center;
}

.product-flow {
    display: flex;
    gap: 20px;
    padding: 20px 40px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
}

.flow-item {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: itemBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.flow-item:nth-child(1) { animation-delay: 0s; }
.flow-item:nth-child(2) { animation-delay: 0.2s; }
.flow-item:nth-child(3) { animation-delay: 0.4s; }
.flow-item:nth-child(4) { animation-delay: 0.6s; }
.flow-item:nth-child(5) { animation-delay: 0.8s; }

@keyframes itemBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .chain-demo {
        gap: 15px;
    }

    .chain-arrow {
        transform: rotate(90deg);
    }

    @keyframes arrowPulse {
        0%, 100% { opacity: 0.5; transform: rotate(90deg) translateX(0); }
        50% { opacity: 1; transform: rotate(90deg) translateX(5px); }
    }
}

@media (max-width: 600px) {
    .chain-demo {
        flex-direction: column;
    }

    .chain-step {
        width: 100%;
        max-width: 250px;
    }

    .product-flow {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
        padding: 15px 20px;
    }
}

/* ========================================
   Sectors Section
   ======================================== */
.sectors-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sector-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-lg);
    padding: 30px 25px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Glass top highlight */
.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.sector-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
}

.sector-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.sector-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sector-card:hover .sector-icon img {
    transform: scale(1.1);
}

.sector-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text);
}

.sector-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.sector-features {
    list-style: none;
    text-align: left;
}

.sector-features li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
}

.sector-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Sectors Responsive */
@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sector-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sector-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        text-align: left;
        padding: 15px;
        gap: 15px;
    }

    .sector-icon {
        width: 80px;
        height: 80px;
        margin: 0;
    }

    .sector-card h3 {
        font-size: 1rem;
    }

    .sector-card p {
        display: none;
    }
}

/* ========================================
   Managers Section
   ======================================== */
.managers-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.managers-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.manager-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-lg);
    padding: 25px 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}

/* Glass highlight */
.manager-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.manager-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-neon);
}

.manager-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.manager-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
}

.manager-title {
    font-size: 0.75rem;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.manager-bonuses {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.bonus-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.more-managers {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-style: italic;
}

/* Managers Responsive */
@media (max-width: 1200px) {
    .managers-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .managers-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .manager-avatar {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .managers-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .manager-card {
        padding: 15px 10px;
    }

    .manager-avatar {
        width: 70px;
        height: 70px;
    }

    .manager-card h4 {
        font-size: 0.85rem;
    }
}

/* ========================================
   Global Economy Section
   ======================================== */
.global-section {
    padding: 120px 0;
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.global-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.global-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.global-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gf-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text);
}

.gf-item i {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

/* Globe Animation */
.global-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
}

.globe-ring.ring1 {
    width: 100%;
    height: 100%;
    animation: rotateRing 20s linear infinite;
}

.globe-ring.ring2 {
    width: 80%;
    height: 80%;
    border-color: rgba(0, 212, 255, 0.3);
    animation: rotateRing 15s linear infinite reverse;
}

.globe-center {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--dark);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

.orbiting-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    border: 2px solid var(--primary);
    animation: orbit 10s linear infinite;
}

.orbiting-icon.o1 {
    animation-delay: 0s;
}

.orbiting-icon.o2 {
    animation-delay: -3.33s;
}

.orbiting-icon.o3 {
    animation-delay: -6.66s;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(160px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(160px) rotate(-360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 100px rgba(0, 212, 255, 0.7);
    }
}

/* Global Section Responsive */
@media (max-width: 1024px) {
    .global-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .global-stats {
        justify-content: center;
    }

    .global-features {
        align-items: center;
    }

    .globe-container {
        width: 280px;
        height: 280px;
    }

    .globe-center {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .orbiting-icon {
        width: 40px;
        height: 40px;
    }

    @keyframes orbit {
        from {
            transform: rotate(0deg) translateX(130px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(130px) rotate(-360deg);
        }
    }
}

@media (max-width: 480px) {
    .global-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .globe-container {
        width: 220px;
        height: 220px;
    }

    .globe-center {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }

    @keyframes orbit {
        from {
            transform: rotate(0deg) translateX(100px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(100px) rotate(-360deg);
        }
    }
}

/* ========================================
   Mobile Performance Optimizations
   ======================================== */

/* Reduce motion for users who prefer it and for performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #particles-js {
        display: none;
    }
}

/* Disable heavy effects on mobile for better performance */
@media (max-width: 768px) {
    /* Disable particles on mobile */
    #particles-js {
        display: none;
    }

    /* Simplify animations */
    .hero-bg img,
    .download-bg img {
        transform: none !important;
    }

    /* Reduce blur intensity for better mobile GPU performance */
    .navbar.scrolled,
    .feature-card,
    .sector-card,
    .manager-card,
    .building-preview {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Disable hover transforms on touch devices */
    .feature-card:hover,
    .sector-card:hover,
    .manager-card:hover,
    .btn:hover {
        transform: none;
    }

    /* Optimize image rendering */
    img {
        content-visibility: auto;
    }
}

/* GPU acceleration hints for smooth scrolling */
.hero,
.features,
.sectors-section,
.managers-section,
.buildings-unified,
.download-section {
    will-change: auto;
    contain: layout style;
}

/* Critical above-the-fold styles for faster FCP */
.hero {
    contain: layout style paint;
}

