/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 12.8px;
    /* 80% of default 16px */
}

/* Enhanced Status Bar */
.status-bar {
    background: linear-gradient(135deg, #0a0a0a, #1a0a1a, #0f0a1f);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    padding: 10px 0;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
}

.status-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.status-item:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-dot.working {
    background: #8B5CF6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.status-icon {
    font-size: 1rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Enhanced Navigation */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
    font-family: 'Orbitron', monospace;
}

/* Remove any red styling from logo area */
.nav-logo, .nav-logo *, .logo-icon, .logo-text, .logo-text * {
    border: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.nav-logo::before, .nav-logo::after,
.logo-icon::before, .logo-icon::after,
.logo-text::before, .logo-text::after {
    display: none !important;
}

.logo-text h2 {
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 2px;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 0.8rem;
}

.nav-btn {
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}

.download-btn {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
}

.download-btn:hover {
    background: #7C3AED;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-icon {
    font-size: 1rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.highlight {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #0f0a1f 50%, #1a0a1a 75%, #0a0a0a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Floating Gold Orbs Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 80px at 15% 25%, rgba(88, 28, 135, 0.8) 0%, rgba(88, 28, 135, 0.2) 40%, transparent 70%),
        radial-gradient(circle 120px at 85% 15%, rgba(107, 33, 168, 0.7) 0%, rgba(107, 33, 168, 0.15) 40%, transparent 70%),
        radial-gradient(circle 60px at 25% 75%, rgba(124, 58, 237, 0.9) 0%, rgba(124, 58, 237, 0.25) 40%, transparent 70%),
        radial-gradient(circle 100px at 75% 85%, rgba(91, 33, 182, 0.75) 0%, rgba(91, 33, 182, 0.18) 40%, transparent 70%),
        radial-gradient(circle 40px at 50% 50%, rgba(88, 28, 135, 1.0) 0%, rgba(88, 28, 135, 0.3) 40%, transparent 70%);
    animation: orbsFloat 15s ease-in-out infinite;
    z-index: -2;
}

@keyframes orbsFloat {

    0%,
    100% {
        transform: translate(0px, 0px) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-15px, 20px) scale(0.9);
        opacity: 0.7;
    }

    75% {
        transform: translate(25px, 10px) scale(1.05);
    }
}

/* Smaller Floating Particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle 3px at 10% 20%, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(circle 2px at 30% 40%, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(circle 4px at 60% 10%, rgba(139, 92, 246, 0.7), transparent),
        radial-gradient(circle 2px at 80% 30%, rgba(139, 92, 246, 0.5), transparent),
        radial-gradient(circle 3px at 20% 80%, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(circle 2px at 90% 70%, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(circle 3px at 40% 90%, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(circle 2px at 70% 60%, rgba(139, 92, 246, 0.6), transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: particlesFloat 25s linear infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-300px) translateX(150px) rotate(360deg);
    }
}

/* Additional Glowing Orbs Layer */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-orbs::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: orb1Float 20s ease-in-out infinite;
}

.floating-orbs::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation: orb2Float 18s ease-in-out infinite reverse;
}

@keyframes orb1Float {

    0%,
    100% {
        transform: translate(0px, 0px) scale(1);
        opacity: 0.3;
    }

    33% {
        transform: translate(50px, -80px) scale(1.2);
        opacity: 0.6;
    }

    66% {
        transform: translate(-30px, 60px) scale(0.8);
        opacity: 0.4;
    }
}

@keyframes orb2Float {

    0%,
    100% {
        transform: translate(0px, 0px) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-70px, -40px) scale(1.3);
        opacity: 0.7;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(139, 92, 246, 0.1);
    border-bottom: 2px solid rgba(139, 92, 246, 0.6);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #8B5CF6, #8B5CF6, #8B5CF6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Oswald', 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-shadow:
        0 0 10px rgba(139, 92, 246, 0.9),
        0 0 20px rgba(139, 92, 246, 0.5),
        0 0 30px rgba(139, 92, 246, 0.3);
    animation: logoGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

@keyframes logoGlow {
    0% {
        background-position: 0% 50%;
        text-shadow:
            0 0 10px rgba(139, 92, 246, 0.8),
            0 0 20px rgba(139, 92, 246, 0.4),
            0 0 30px rgba(139, 92, 246, 0.2);
    }

    100% {
        background-position: 100% 50%;
        text-shadow:
            0 0 15px rgba(139, 92, 246, 1),
            0 0 25px rgba(139, 92, 246, 0.6),
            0 0 35px rgba(139, 92, 246, 0.4);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFFFFF;
}

.download-btn {
    background: linear-gradient(135deg, #8B5CF6, #8B5CF6, #8B5CF6);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.5);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(139, 92, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.8);
}

.download-btn:hover::before {
    left: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #8B5CF6;
    margin: 3px 0;
    transition: 0.3s;
}

/* Modern Hero Section */
.hero {
    padding: 112px 0 80px;
    background: transparent;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Modern Hero Title */
.hero-announcement {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.announcement-badge {
    background: #8B5CF6;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.announcement-text {
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-phantom {
    display: block;
    font-size: 3.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF, #8B5CF6, #FFFFFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
    text-shadow: 0 0 32px rgba(139, 92, 246, 0.5);
    margin-bottom: 0.4rem;
}

.title-description {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
        transform: perspective(500px) rotateX(15deg) scale(1);
    }

    100% {
        background-position: 100% 50%;
        transform: perspective(500px) rotateX(15deg) scale(1.02);
    }
}

.title-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.2) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: titleGlowPulse 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes titleGlowPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.title-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(1px 1px at 130% 80%, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(2px 2px at 70% 20%, rgba(139, 92, 246, 0.7), transparent);
    background-repeat: no-repeat;
    animation: titleParticles 6s linear infinite;
    opacity: 0.7;
}

@keyframes titleParticles {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-20px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Responsive title adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .title-executor {
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0px;
    }

    .title-executor {
        letter-spacing: 1px;
    }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #FFFFFF;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #8B5CF6;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #7C3AED;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #FFFFFF;
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Executor Interface Styling */
.executor-interface {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.executor-window {
    width: 400px;
    background: linear-gradient(145deg, #8B5CF6, #16213e, #8B5CF6);
    border-radius: 10px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.window-header {
    background: linear-gradient(145deg, #8B5CF6, #8B5CF6);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.control.close {
    background: #8B5CF6;
}

.control.minimize {
    background: #8B5CF6;
}

.control.maximize {
    background: #8B5CF6;
}

.window-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.executor-content {
    padding: 16px;
}

.script-editor {
    background: #8B5CF6;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 12px;
}

.editor-header {
    background: #161b22;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    gap: 8px;
}

.tab {
    background: #21262d;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab.active {
    background: rgba(139, 92, 246, 0.2);
    color: #FFFFFF;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.code-area {
    display: flex;
    min-height: 180px;
}

.line-numbers {
    background: #8B5CF6;
    padding: 12px 8px;
    border-right: 1px solid rgba(139, 92, 246, 0.2);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.code-content {
    flex: 1;
    padding: 12px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.5;
    color: #FFFFFF;
}

.code-line {
    margin-bottom: 2px;
}

.keyword {
    color: #FFFFFF;
    font-weight: bold;
}

.variable {
    color: #FFFFFF;
}

.function {
    color: #FFFFFF;
}

.property {
    color: #FFFFFF;
}

.string {
    color: #FFFFFF;
}

.number {
    color: #FFFFFF;
}

.comment {
    color: #FFFFFF;
    font-style: italic;
}

.executor-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.exec-btn {
    background: linear-gradient(145deg, #8B5CF6, #8B5CF6);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.exec-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.exec-btn.clear {
    background: linear-gradient(145deg, #8B5CF6, #8B5CF6);
}

.exec-btn.inject {
    background: linear-gradient(145deg, #8B5CF6, #8B5CF6);
}

.output-console {
    background: #8B5CF6;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.console-header {
    background: #161b22;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 600;
}

.console-content {
    padding: 12px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    max-height: 80px;
    overflow-y: auto;
}

.console-line {
    margin-bottom: 4px;
    padding: 2px 0;
}

.console-line.success {
    color: #FFFFFF;
}

.console-line.info {
    color: #FFFFFF;
}

.console-line.error {
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .executor-window {
        width: 90%;
        max-width: 400px;
    }

    .code-content {
        font-size: 10px;
    }

    .line-numbers {
        font-size: 10px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* 2x2 Grid Layout for Features */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Square Feature Cards */
.feature-card-premium {
    background: linear-gradient(145deg, #050505, #0a0a0a, #0f0f0f);
    padding: 1.6rem;
    border-radius: 13px;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(88, 28, 135, 0.4),
        inset 0 1px 0 rgba(88, 28, 135, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid rgba(88, 28, 135, 0.6);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card-standalone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.15));
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.feature-card-standalone::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: cardRotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card-premium:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 25px 60px rgba(88, 28, 135, 0.7),
        0 15px 35px rgba(107, 33, 168, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.9),
        inset 0 2px 0 rgba(88, 28, 135, 0.6),
        0 0 0 3px rgba(88, 28, 135, 0.8);
    border-color: rgba(88, 28, 135, 0.9);
}

.feature-card-standalone:hover::before {
    opacity: 1;
}

.feature-card-standalone:hover::after {
    opacity: 0.3;
}

.feature-card-premium .feature-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 20px rgba(88, 28, 135, 1.0);
    filter: drop-shadow(0 0 12px rgba(88, 28, 135, 0.8));
}

.feature-card-premium h3 {
    font-size: 1.12rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(88, 28, 135, 0.8);
    line-height: 1.2;
}

.feature-card-standalone p {
    color: #FFFFFF;
    line-height: 1.7;
    font-size: 1.1rem;
    transform: translateZ(8px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Responsive design for features grid */
@media (max-width: 768px) {
    .features-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .feature-card-standalone {
        padding: 2.5rem 2rem;
    }

    .feature-card-standalone .feature-icon {
        font-size: 3.5rem;
    }

    .feature-card-standalone h3 {
        font-size: 1.6rem;
    }

    .feature-card-standalone p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid-2x2 {
        gap: 1.5rem;
    }

    .feature-card-standalone {
        padding: 2rem 1.5rem;
    }
}

.feature-card {
    background: linear-gradient(145deg, #8B5CF6, #A855F7, #7C3AED);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.8),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 2px 0 rgba(139, 92, 246, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(139, 92, 246, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.5);
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.15));
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: cardRotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

@keyframes cardRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(8deg) rotateY(8deg) scale(1.02);
    box-shadow:
        0 25px 80px rgba(139, 92, 246, 0.6),
        0 15px 40px rgba(139, 92, 246, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.8),
        inset 0 3px 0 rgba(139, 92, 246, 0.5),
        inset 0 -3px 0 rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(139, 92, 246, 0.8),
        0 0 30px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.8);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 0.3;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow:
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.8);
    transform: translateZ(30px);
    animation: iconFloat 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

@keyframes iconFloat {
    0% {
        transform: translateZ(30px) translateY(0px);
    }

    100% {
        transform: translateZ(30px) translateY(-5px);
    }
}

.feature-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    font-weight: 700;
    text-shadow:
        0 0 10px rgba(139, 92, 246, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.8);
    transform: translateZ(15px);
    letter-spacing: 0.5px;
}

.feature-card p {
    color: #FFFFFF;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    font-size: 1rem;
    transform: translateZ(8px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* All feature cards maintain purple theme for realism */
.feature-card:nth-child(1):hover,
.feature-card:nth-child(2):hover,
.feature-card:nth-child(3):hover,
.feature-card:nth-child(4):hover {
    box-shadow:
        0 25px 80px rgba(139, 92, 246, 0.6),
        0 15px 40px rgba(139, 92, 246, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.8),
        inset 0 3px 0 rgba(139, 92, 246, 0.5),
        inset 0 -3px 0 rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(139, 92, 246, 0.8),
        0 0 30px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.8);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.about-text p {
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 0.5rem 0;
    color: #475569;
    font-weight: 500;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #8B5CF6;
    border-radius: 12px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #FFFFFF;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #8B5CF6;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.6;
}

.contact-item strong {
    color: #FFFFFF;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #8B5CF6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
    background: #8B5CF6;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }
}

/* Modern About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 10, 31, 0.6), rgba(26, 10, 26, 0.4), rgba(10, 10, 10, 0.8));
    position: relative;
}

/* About Header */
.about-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.highlight-gradient {
    background: linear-gradient(135deg, #8B5CF6, #A855F7, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.visual-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #8B5CF6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Story Cards */
.about-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.story-card {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.story-card:hover::before {
    opacity: 1;
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.story-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Creators Section */
.creators-section {
    margin-bottom: 5rem;
}

.creators-title {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    font-weight: 700;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.creator-card {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.creator-card:hover::before {
    opacity: 1;
}

.creator-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.creator-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
}

.creator-status.online {
    background: #10B981;
}

.creator-info h4 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.creator-role {
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.creator-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.creator-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-platform {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-handle {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Enhanced Features Grid */
.about-features-enhanced {
    margin-bottom: 5rem;
}

.about-features-enhanced h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

.feature-icon-small {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Enhanced Stats */
.about-stats-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(145deg, #8B5CF6, #A855F7);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.stat-sublabel {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .creators-grid {
        grid-template-columns: 1fr;
    }

    .creator-card {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .about-stats-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: transparent;
    text-align: center;
    position: relative;
}

.download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.download-section p {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.download-container {
    max-width: 500px;
    margin: 0 auto;
}

.download-main-btn {
    background: linear-gradient(145deg, #10b981, #059669, #047857);
    color: white;
    border: none;
    padding: 24px 48px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow:
        0 12px 40px rgba(16, 185, 129, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(16, 185, 129, 0.6);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.download-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.download-main-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-main-btn:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 24px 70px rgba(16, 185, 129, 0.6),
        0 12px 40px rgba(16, 185, 129, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
    border-color: rgba(16, 185, 129, 0.9);
}

.download-main-btn:hover::before {
    left: 100%;
}

.download-main-btn:hover::after {
    width: 300px;
    height: 300px;
}

.download-main-btn:active {
    transform: translateY(-4px) scale(1.01);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 1;
    position: relative;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2px;
}

.download-icon {
    font-size: 1.5rem;
}

.download-size {
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-info {
    display: grid;
    gap: 0.5rem;
}

.download-info p {
    color: #FFFFFF;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.contact-item strong {
    color: #FFFFFF;
}

.contact-form {
    background: linear-gradient(145deg, #8B5CF6, #8B5CF6, #8B5CF6);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 2px 0 rgba(139, 92, 246, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #475569;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #8B5CF6, #334155);
    color: #FFFFFF;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFFFF;
    box-shadow:
        0 0 0 3px rgba(139, 92, 246, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(139, 92, 246, 0.1);
}

/* Footer */
.footer {
    background: transparent;
    color: #FFFFFF;
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: inset 0 1px 0 rgba(139, 92, 246, 0.2);
}

/* Premium Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card-premium {
    background: linear-gradient(145deg, #8B5CF6, #8B5CF6, #8B5CF6);
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.9),
        0 10px 30px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(139, 92, 246, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.8);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card-premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8B5CF6, #8B5CF6, #8B5CF6, #8B5CF6);
    background-size: 400% 400%;
    border-radius: 24px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.feature-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 40px 120px rgba(139, 92, 246, 0.4),
        0 20px 60px rgba(139, 92, 246, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 2px 0 rgba(139, 92, 246, 0.5);
    border-color: rgba(139, 92, 246, 0.8);
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-card-premium:hover::after {
    opacity: 1;
}

.feature-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #8B5CF6, #8B5CF6);
    color: white;
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.feature-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon-container .feature-icon {
    font-size: 4rem;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 1));
    }
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 2s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes glowPulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.feature-card-premium h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    line-height: 1.2;
}

.feature-subtitle {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

.feature-card-premium p {
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.feature-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stat-item {
    background: rgba(139, 92, 246, 0.1);
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(139, 92, 246, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-showcase {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .feature-card-premium {
        padding: 2rem 1.5rem;
    }

    .feature-card-premium h3 {
        font-size: 1.5rem;
    }
}

/* Square Feature Card Styles */
.feature-card-premium p {
    color: #FFFFFF;
    line-height: 1.4;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.feature-subtitle {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.feature-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #581C87, #6B21A8);
    color: white;
    padding: 6px 12px;
    border-radius: 0 0 10px 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(88, 28, 135, 0.6);
}

.feature-stats {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-item {
    background: rgba(139, 92, 246, 0.15);
    color: #a855f7;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(139, 92, 246, 0.2);
}

/* Responsive Design for Features */
@media (max-width: 768px) {
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .feature-card-premium {
        padding: 1.2rem;
    }

    .feature-card-premium h3 {
        font-size: 1.1rem;
    }

    .feature-card-premium p {
        font-size: 0.85rem;
    }
}

/* Important Download Notices */
.important-notices {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #1a0a0a, #2a1a1a);
    border-radius: 12px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(139, 92, 246, 0.2);
}

.important-notices h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.notice-text {
    color: #FFFFFF;
    line-height: 1.5;
    font-size: 0.95rem;
}

.notice-text strong {
    color: #8B5CF6;
    font-weight: 600;
}

.notice-text em {
    color: #A855F7;
    font-style: italic;
    font-weight: 500;
}

/* Responsive notices */
@media (max-width: 768px) {
    .important-notices {
        padding: 1rem;
    }

    .notice-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .notice-icon {
        align-self: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: transparent;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: linear-gradient(145deg, #050505, #0a0a0a, #0f0f0f);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 50px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.5);
}

.testimonial-content p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    color: #8B5CF6;
    font-weight: 600;
    display: block;
}

.author-info span {
    color: #A855F7;
    font-size: 0.9rem;
}

/* Changelog Section */
.changelog-section {
    padding: 80px 0;
    background: transparent;
}

.changelog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.changelog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.version-item {
    background: linear-gradient(145deg, #050505, #0a0a0a);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.version-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.version-item.current {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.version-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.version-number {
    color: #8B5CF6;
    font-weight: 700;
    font-size: 1.2rem;
}

.version-date {
    color: #A855F7;
    font-size: 0.9rem;
}

.version-badge {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.version-changes {
    list-style: none;
    padding: 0;
}

.version-changes li {
    color: #FFFFFF;
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .changelog-container {
        padding: 0 1rem;
    }

    .version-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Animated Reviews Section */
.reviews-section {
    padding: 80px 0 40px 0;
    background: transparent;
    overflow: hidden;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.reviews-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.reviews-scroll {
    display: flex;
    gap: 2rem;
    animation: scrollReviews 120s linear infinite;
    width: max-content;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

.review-card {
    background: linear-gradient(145deg, #000000, #0a0a0a, #1a0a1a);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 300px;
    max-width: 350px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow:
        0 12px 35px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
}

.review-card p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-card span {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.9rem;
}
}

.review-card {
    position: relative;
    z-index: 2;
}

.author-name {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {


    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .reviews-section h2 {
        font-size: 2rem;
    }

    .avatar-circle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .message-text {
        font-size: 0.9rem;
    }
}

/* Review Cards with Profile Pictures */
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #8B5CF6;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-avatar {
    background: #8B5CF6;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.avatar-red {
    background: #EF4444 !important;
}

.avatar-green {
    background: #10B981 !important;
}

.avatar-blue {
    background: #3B82F6 !important;
}

.avatar-orange {
    background: #F97316 !important;
}

.avatar-pink {
    background: #EC4899 !important;
}

.avatar-cyan {
    background: #06B6D4 !important;
}

.avatar-purple {
    background: #8B5CF6 !important;
}

.review-user {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.username {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.user-id {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.review-stars {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Gl
itch Effect */
.glitch-text {
    position: relative;
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: lowercase;
    animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #8B5CF6;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #A855F7;
    z-index: -2;
}

@keyframes glitch {

    0%,
    74%,
    76%,
    100% {
        transform: translate(0);
    }

    75% {
        transform: translate(-2px, 2px);
    }
}

@keyframes glitch-1 {

    0%,
    74%,
    76%,
    100% {
        transform: translate(0);
    }

    75% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {

    0%,
    74%,
    76%,
    100% {
        transform: translate(0);
    }

    75% {
        transform: translate(-2px, -2px);
    }
}

/* 
Cool Feature Card Animations */
.feature-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before {
    animation: shine 0.6s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* An
imated Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #8B5CF6;
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 5s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* T
yping Effect */
.typing-effect {
    overflow: hidden;
    border-right: 2px solid #8B5CF6;
    white-space: nowrap;
    animation: typing 3s steps(100, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #8B5CF6;
    }
}

/* Enhan
ced Feature Card Text Visibility */
.feature-card h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.feature-subtitle {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Make feature cards more vibrant */
.feature-card:nth-child(1) {
    background: linear-gradient(145deg, #EF4444, #F97316, #EAB308);
}

.feature-card:nth-child(2) {
    background: linear-gradient(145deg, #10B981, #059669, #047857);
}

.feature-card:nth-child(3) {
    background: linear-gradient(145deg, #3B82F6, #2563EB, #1D4ED8);
}

.feature-card:nth-child(4) {
    background: linear-gradient(145deg, #8B5CF6, #7C3AED, #6D28D9);
}

/* Fin
al Polish - Consistent Styling */

/* Make all section titles consistent */
section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

/* Consistent button styling across the site */
.btn,
.download-main-btn,
.nav-btn {
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Consistent spacing */
section {
    padding: 80px 0;
}

/* Make sure all text is readable */
p,
li,
span {
    line-height: 1.6;
}

/* Consistent hover effects */
.feature-card:hover,
.review-card:hover,
.btn:hover,
.nav-btn:hover {
    transform: translateY(-2px);
}

/* Smooth animations for everything */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Make sure the site looks good on all screen sizes */
@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 2rem;
    }

    .feature-subtitle {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    section h2 {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.6rem;
    }

    .feature-subtitle {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

/* 
Enhanced Features Title */
.features-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.title-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    background: linear-gradient(135deg, #FFFFFF, #8B5CF6, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7, #8B5CF6);
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    }

    100% {
        text-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.3);
    }
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(139, 92, 246, 0.3);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .title-main {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}

/* Enhanc
ed Hero Section */
.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge.primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.hero-badge.secondary {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.hero-badge.accent {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #8B5CF6;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn-subtitle {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.security-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.security-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.security-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.security-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.security-badge {
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Enhanced Download Section */
.download-header {
    text-align: center;
    margin-bottom: 4rem;
}

.version-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.version-badge {
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.version-date,
.version-size {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.download-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-main-btn {
    width: 100%;
    padding: 2rem;
    margin-bottom: 2rem;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-text {
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.download-alternatives {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.alt-download {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.alt-download:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.system-requirements,
.download-stats {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 2rem;
}

.system-requirements h3,
.download-stats h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.system-requirements ul {
    list-style: none;
    padding: 0;
}

.system-requirements li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.stat-value {
    color: #8B5CF6;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #8B5CF6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.notice-grid {
    display: grid;
    gap: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: transparent;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question h3 {
    color: #FFFFFF;
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: #8B5CF6;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Enhanced Contact Section */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card.primary {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(145deg, #1a1a2e, #2a2a4a);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #8B5CF6;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.contact-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.member-avatar {
    width: 50px;
    height: 50px;
    background: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.member-info h4 {
    color: #FFFFFF;
    margin: 0 0 0.3rem 0;
}

.member-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.member-status {
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.member-status.online {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.response-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.response-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.platform {
    color: rgba(255, 255, 255, 0.8);
}

.time {
    color: #8B5CF6;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .status-container {
        gap: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .download-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Hero Content Styling */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-description strong {
    color: #8B5CF6;
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.4s ease;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-stat {
    text-align: center;
}

.social-stat .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #8B5CF6;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.social-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-icon {
    font-weight: bold;
}

/* Responsive Hero Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .title-phantom {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .title-description {
        font-size: 1.4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-stats {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .title-phantom {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .title-description {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-content {
        padding: 0.8rem 1.2rem;
    }

    .social-stats {
        gap: 1rem;
    }
}

/* St
ory Section */
.story-section {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-content.reverse {
    direction: rtl;
}

.story-content.reverse>* {
    direction: ltr;
}

.story-text h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-item,
.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.problem-item {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.solution-item {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.problem-icon,
.solution-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Team Section */
.team-section {
    max-width: 1000px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.team-title {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.member-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.member-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-text {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.online-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #10B981;
    border: 3px solid rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.member-name {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-label {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-value {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Final Stats */
.final-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.final-stat {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.final-stat:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.stat-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.stat-number-large {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #8B5CF6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    display: block;
    font-size: 1.2rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-content.reverse {
        direction: ltr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-card {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .visual-stats {
        gap: 1rem;
    }

    .big-number {
        font-size: 2.5rem;
    }
}

/* Modern Features Section */
.features {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.features-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card-modern {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 0 0 12px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-badge.premium {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.feature-badge.ultimate {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.feature-badge.free {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.feature-badge.secure {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
}

.feature-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.feature-icon-modern {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    animation: iconFloat 3s ease-in-out infinite alternate;
}

@keyframes iconFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 2;
}

.feature-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Features */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .feature-card-modern {
        padding: 2rem;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 2rem;
    }

    .feature-card-modern {
        padding: 1.5rem;
    }

    .feature-icon-modern {
        font-size: 3rem;
    }
}

/* 
Override Features Section */
.features {
    padding: 96px 0 !important;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 10, 26, 0.8), rgba(15, 10, 31, 0.9)) !important;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.features-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.6) !important;
    line-height: 1.1 !important;
    text-align: center !important;
}

.title-highlight {
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.features-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fix Feature Cards Text Visibility */
.feature-card-modern {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a) !important;
    border: 3px solid rgba(139, 92, 246, 0.4) !important;
    border-radius: 24px !important;
    padding: 3rem !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(139, 92, 246, 0.7) !important;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3) !important;
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    position: relative !important;
    z-index: 2 !important;
}

.feature-description {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 1rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
}

.feature-highlights {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.highlight-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 1rem 1.2rem !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border: 2px solid rgba(139, 92, 246, 0.4) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.highlight-item:hover {
    background: rgba(139, 92, 246, 0.2) !important;
    border-color: rgba(139, 92, 246, 0.6) !important;
    transform: translateX(5px) !important;
}

.highlight-text {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* Fix Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 0.8rem;
}

.contact-btn {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED) !important;
    color: white !important;
    padding: 4px 10px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2) !important;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #7C3AED, #6D28D9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6) !important;
}

/* Simple Antivirus Warning Styles */
.antivirus-warning {
    margin: 20px 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.warning-content {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border: 2px solid #ff4500;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: warningPulse 2s ease-in-out infinite;
}

.warning-icon {
    font-size: 24px;
    flex-shrink: 0;
    animation: warningShake 1s ease-in-out infinite;
}

.warning-text {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.warning-text strong {
    font-weight: 700;
    color: #fff;
}

@keyframes warningPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    }

    50% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    }
}

@keyframes warningShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(2deg);
    }
}

/* Responsive warning */
@media (max-width: 768px) {
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin: 0 10px;
    }

    .warning-text {
        font-size: 13px;
    }
}





/* Enh
anced Features Section Styles */
.section-badge-premium {
    background: linear-gradient(135deg, #581c87, #6b21a8, #7c3aed);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(88, 28, 135, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

.features-title-mega {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.title-ultimate {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.title-free {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.title-executor {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.features-subtitle-enhanced {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

.features-subtitle-enhanced strong {
    color: #10b981;
    font-weight: 700;
}

.features-comparison {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.comparison-item {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid #475569;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.comparison-other {
    color: #ef4444;
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.7;
}

.comparison-phantom {
    color: #10b981;
    font-size: 18px;
    font-weight: 700;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Enhanced responsive features */
@media (max-width: 768px) {
    .features-title-mega {
        font-size: 2.5rem;
    }

    .features-subtitle-enhanced {
        font-size: 1.1rem;
    }
}

/* Profes
sional FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0f0a1f 100%);
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: #8b5cf6;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 0 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }
}

/ * Professional Design Improvements */
/* Cleaner button styles */
.btn-primary {
    background: linear-gradient(135deg, #6b21a8, #581c87);
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(107, 33, 168, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #581c87, #4c1d95);
    box-shadow: 0 12px 40px rgba(107, 33, 168, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced trust badges */
.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Professional feature cards */
.feature-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.feature-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Cleaner navigation */
.nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

/* Professional status bar */
.status-bar {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Enhanced hero section */
.hero {
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2) 0%, rgba(26, 10, 26, 0.3) 50%, transparent 70%);
}

.hero-title {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Professional download section */
.download-main-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.download-main-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .features-title-mega {
        font-size: 2rem;
    }

    .feature-card-modern {
        margin-bottom: 20px;
    }
}

/* Dar
k Purple Theme Updates */


.contact-section {
    background: linear-gradient(135deg, rgba(15, 10, 31, 0.8), rgba(10, 10, 10, 0.9), rgba(26, 10, 26, 0.6));
}

/* Update feature cards to be darker */
.feature-card-modern {
    background: rgba(26, 10, 26, 0.3) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    backdrop-filter: blur(20px) !important;
}

.feature-card-modern:hover {
    background: rgba(26, 10, 26, 0.5) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
}

/* Update FAQ items to be darker */
.faq-item {
    background: rgba(26, 10, 26, 0.3) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
}

.faq-item:hover {
    background: rgba(26, 10, 26, 0.5) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
}

/* Update trust badges */
.trust-badge {
    background: rgba(26, 10, 26, 0.4) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
}

.trust-badge:hover {
    background: rgba(26, 10, 26, 0.6) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
}

/* Update social stats */
.social-stats {
    background: rgba(26, 10, 26, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
}

/* Update contact cards */
.contact-card {
    background: rgba(26, 10, 26, 0.4) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
}

.contact-card:hover {
    background: rgba(26, 10, 26, 0.6) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
}

/* Update team member cards */
.member-card {
    background: rgba(26, 10, 26, 0.4) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
}

/* Update system requirements */
.system-requirements {
    background: rgba(26, 10, 26, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.download-stats {
    background: rgba(26, 10, 26, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
}

/* Update particles to be purple */
.particle {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), rgba(139, 92, 246, 0.2), transparent);
}

/* Update floating orbs */
body::before {
    background-image:
        radial-gradient(circle 4px at 20% 80%, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(circle 3px at 80% 20%, rgba(168, 85, 247, 0.6), transparent),
        radial-gradient(circle 5px at 40% 40%, rgba(124, 58, 237, 0.7), transparent),
        radial-gradient(circle 2px at 90% 90%, rgba(139, 92, 246, 0.5), transparent),
        radial-gradient(circle 6px at 10% 10%, rgba(168, 85, 247, 0.4), transparent);
}

/* Update status items */
.status-item {
    background: rgba(26, 10, 26, 0.3) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
}

.status-item:hover {
    background: rgba(26, 10, 26, 0.5) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
}

/* Fake
 Game Screenshot Styles */
.game-screenshot {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.game-window {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(139, 92, 246, 0.3);
    width: 100%;
    height: 550px;
}

.game-header {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.game-controls {
    display: flex;
    gap: 8px;
}

.game-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.game-control.minimize {
    background: #fbbf24;
}

.game-control.maximize {
    background: #10b981;
}

.game-control.close {
    background: #ef4444;
}

.game-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.game-content {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 25%, #10b981 50%, #3b82f6 75%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gameBackground 10s ease infinite;
    overflow: visible;
}

@keyframes gameBackground {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Game UI Elements */
.game-ui {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.health-bar {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    position: relative;
    width: 120px;
}

.health-fill {
    background: linear-gradient(90deg, #10b981, #059669);
    height: 6px;
    width: 85%;
    border-radius: 3px;
    margin-bottom: 4px;
}

.health-text {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.ammo-counter {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.score-display {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #8b5cf6;
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    font-size: 12px;
}

.kills,
.deaths {
    display: block;
    font-weight: bold;
}

.kills {
    color: #10b981;
}

.deaths {
    color: #ef4444;
}

/* Phantom Executor Overlay */
.phantom-overlay {
    position: absolute;
    top: 60px;
    right: 20px;
    z-index: 20;
}

.phantom-window {
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.phantom-header {
    background: linear-gradient(135deg, #581c87, #6b21a8);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}

.phantom-logo {
    font-size: 16px;
}

.phantom-title {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.phantom-controls {
    display: flex;
    gap: 8px;
}

.phantom-minimize,
.phantom-close {
    color: white;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: bold;
}

.phantom-content {
    padding: 15px;
}

.phantom-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.phantom-tab {
    background: rgba(139, 92, 246, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.phantom-tab.active {
    background: rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
}

.phantom-code {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.code-lines {
    color: #666;
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.code-text {
    color: white;
    line-height: 1.4;
}

.comment {
    color: #10b981;
}

.keyword {
    color: #8b5cf6;
}

.variable {
    color: #f59e0b;
}

.number {
    color: #ef4444;
}

.string {
    color: #10b981;
}

.function {
    color: #3b82f6;
}

.phantom-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.phantom-btn {
    background: linear-gradient(135deg, #6b21a8, #581c87);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phantom-btn:hover {
    background: linear-gradient(135deg, #581c87, #4c1d95);
    transform: translateY(-1px);
}

.phantom-console {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 10px;
}

.console-header {
    color: #8b5cf6;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
}

.console-messages {
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.console-msg {
    margin-bottom: 4px;
}

.console-msg.success {
    color: #10b981;
}

.console-msg.info {
    color: #3b82f6;
}

/* Game Environment Elements */
.crosshair {
    position: absolute;
    top: 250px;
    left: 200px;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 5;
}

.crosshair::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: red;
    border-radius: 50%;
}

.enemy-indicator {
    position: absolute;
    top: 150px;
    right: 150px;
    z-index: 15;
}

.enemy-box {
    width: 40px;
    height: 60px;
    border: 2px solid #ef4444;
    border-radius: 4px;
    background: rgba(239, 68, 68, 0.1);
}

.enemy-name,
.enemy-distance {
    display: block;
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.enemy-name {
    color: #ef4444;
}

.enemy-distance {
    color: #f59e0b;
}

.esp-box {
    position: absolute;
    border: 1px solid #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.esp-box-1 {
    top: 100px;
    left: 80px;
    width: 30px;
    height: 50px;
}

.esp-box-2 {
    bottom: 120px;
    right: 80px;
    width: 25px;
    height: 40px;
}

/* Game Chat */
.game-chat {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    max-width: 250px;
}

.chat-msg {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 10px;
    margin-bottom: 4px;
    border-radius: 6px;
    font-size: 12px;
    border-left: 3px solid #8b5cf6;
}

.player-name {
    color: #8b5cf6;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .game-screenshot {
        max-width: 100%;
        margin: 0 20px;
    }

    .game-window {
        height: 400px;
    }

    .game-content {
        height: 350px;
    }

    .phantom-window {
        width: 240px;
    }

    .phantom-overlay {
        top: 40px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .phantom-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
        display: flex;
        justify-content: center;
    }

    .phantom-window {
        width: 260px;
    }
}

/* Pe
rformance Highlight Section */
.performance-highlight {
    background: rgba(26, 10, 26, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.perf-badge {
    background: linear-gradient(135deg, #581c87, #6b21a8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(88, 28, 135, 0.3);
}

.perf-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.perf-text strong {
    color: #8b5cf6;
    font-weight: 600;
}

/* 
New Hero Section Layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    min-height: 80vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enhanced Announcement */
.hero-announcement {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(26, 10, 26, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.announcement-badge {
    background: linear-gradient(135deg, #581c87, #6b21a8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.announcement-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

/* Redesigned Title */
.hero-title {
    margin: 0;
}

.title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* Enhanced Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.hero-description strong {
    color: #a855f7;
    font-weight: 600;
}

/* New Highlights Layout */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(26, 10, 26, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(26, 10, 26, 0.5);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(8px);
}

.highlight-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #581c87, #6b21a8);
    border-radius: 12px;
    flex-shrink: 0;
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.highlight-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.cta-icon {
    font-size: 20px;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-title {
    font-size: 16px;
    font-weight: 600;
}

.cta-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

/* Enhanced Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .title-main {
        font-size: 3.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 1rem;
        gap: 30px;
    }

    .title-main {
        font-size: 2.8rem;
    }

    .title-sub {
        font-size: 1.4rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.2rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/*
 Game Demo Styles */
.game-demo {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.demo-window {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
}

.demo-header {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.demo-controls {
    display: flex;
    gap: 8px;
}

.demo-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.demo-control.red {
    background: #ef4444;
}

.demo-control.yellow {
    background: #fbbf24;
}

.demo-control.green {
    background: #10b981;
}

.demo-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.demo-content {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #2d5016 0%, #365314 25%, #4d7c0f 50%, #65a30d 75%, #84cc16 100%);
    overflow: hidden;
}

.game-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: gameBackgroundShift 8s ease-in-out infinite;
}

@keyframes gameBackgroundShift {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(2deg);
    }
}

/* Player Stats */
.player-stats {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.stat-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 120px;
}

.stat-label {
    display: block;
    color: #10b981;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.stat-value {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-top: 2px;
}

/* Farm Notifications */
.farm-notifications {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 15;
}

.notification {
    background: rgba(0, 0, 0, 0.7);
    color: #fbbf24;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border-left: 3px solid #fbbf24;
    animation: notificationSlide 3s ease-in-out infinite;
}

@keyframes notificationSlide {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }

    10%,
    90% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

.notification:nth-child(2) {
    animation-delay: 0.5s;
}

.notification:nth-child(3) {
    animation-delay: 1s;
}

.notification:nth-child(4) {
    animation-delay: 1.5s;
}

.notification:nth-child(5) {
    animation-delay: 2s;
}

.notification:nth-child(6) {
    animation-delay: 2.5s;
}

/* Phantom GUI */
.phantom-gui {
    position: absolute;
    top: 80px;
    right: 30px;
    width: 280px;
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 20;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.gui-header {
    background: linear-gradient(135deg, #581c87, #6b21a8);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}

.gui-logo {
    font-size: 14px;
}

.gui-title {
    color: white;
    font-weight: bold;
    font-size: 13px;
}

.gui-controls {
    display: flex;
    gap: 6px;
}

.gui-minimize,
.gui-close {
    color: white;
    cursor: pointer;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: bold;
}

.gui-content {
    padding: 12px;
}

.gui-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.gui-tab {
    background: rgba(139, 92, 246, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.gui-tab.active {
    background: rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
}

.gui-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-label {
    color: white;
    font-size: 11px;
    font-weight: 500;
}

.toggle-switch {
    width: 32px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: #10b981;
}

.toggle-slider {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    left: 18px;
}

.gui-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

.status-text {
    color: #10b981;
    font-size: 10px;
    font-weight: bold;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.status-indicator.active {
    background: #10b981;
    animation: statusBlink 1s ease-in-out infinite;
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Game Character */
.game-character {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.character-sprite {
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 8px;
    position: relative;
    animation: characterBob 2s ease-in-out infinite;
}

.character-sprite::before {
    content: '🥷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

@keyframes characterBob {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.character-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.effect-ring {
    width: 80px;
    height: 80px;
    border: 2px solid #8b5cf6;
    border-radius: 50%;
    animation: effectRing 3s linear infinite;
}

.effect-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border-radius: 50%;
    animation: effectGlow 2s ease-in-out infinite;
}

@keyframes effectRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes effectGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Damage Numbers */
.damage-numbers {
    position: absolute;
    bottom: 180px;
    right: 100px;
    z-index: 15;
}

.damage-number {
    color: #fbbf24;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: damageFloat 2s ease-out infinite;
    position: absolute;
}

.damage-number:nth-child(1) {
    animation-delay: 0s;
    left: 0px;
}

.damage-number:nth-child(2) {
    animation-delay: 0.3s;
    left: 20px;
}

.damage-number:nth-child(3) {
    animation-delay: 0.6s;
    left: 40px;
}

@keyframes damageFloat {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }

    100% {
        transform: translateY(-40px);
        opacity: 0;
    }
}

/* Responsive Demo */
@media (max-width: 1024px) {
    .game-demo {
        max-width: 100%;
        margin: 0 auto;
    }

    .demo-window {
        transform: scale(1);
    }

    .phantom-gui {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .game-demo {
        max-width: 100%;
        margin: 0 10px;
    }

    .demo-content {
        height: 350px;
    }

    .phantom-gui {
        width: 200px;
        top: 40px;
        right: 15px;
    }

    .player-stats {
        top: 15px;
        left: 15px;
    }

    .stat-box {
        min-width: 100px;
        padding: 6px 8px;
    }
}

/* Re
alistic Executor Showcase */
.executor-showcase {
    width: 700px;
    margin: -20px auto 0;
}

.executor-window {
    background: #1e1e1e;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid #3a3a3a;
    height: 400px;
    width: 700px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.window-header {
    background: linear-gradient(180deg, #3c3c3c, #2c2c2c);
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #404040;
    min-height: 32px;
    backdrop-filter: blur(20px);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.control.minimize {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 1px 3px rgba(251, 191, 36, 0.3);
}

.control.maximize {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
}

.control.close {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 1px 3px rgba(239, 68, 68, 0.3);
}

.window-title {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    letter-spacing: 0.3px;
}

.executor-content {
    background: #1a1a1a;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.script-editor {
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.editor-header {
    background: #2a2a2a;
    padding: 8px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.tab {
    background: rgba(139, 92, 246, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.tab.active {
    background: rgba(139, 92, 246, 0.3);
    color: white;
    border-color: rgba(139, 92, 246, 0.5);
}

.tab:hover:not(.active) {
    background: rgba(139, 92, 246, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.code-area {
    display: flex;
    background: #0f0f0f;
    min-height: 250px;
}

.line-numbers {
    background: #1a1a1a;
    padding: 16px 8px;
    color: #666;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    border-right: 1px solid rgba(139, 92, 246, 0.2);
    user-select: none;
}

.code-content {
    flex: 1;
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: white;
}

.code-line {
    margin-bottom: 2px;
}

/* Realistic Syntax Highlighting (VS Code Dark Theme) */
.comment {
    color: #6a9955;
    font-style: italic;
}

.keyword {
    color: #569cd6;
    font-weight: 500;
}

.variable {
    color: #9cdcfe;
}

.function {
    color: #dcdcaa;
}

.string {
    color: #ce9178;
}

.number {
    color: #b5cea8;
}

.executor-controls {
    padding: 16px;
    background: #2a2a2a;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.exec-btn {
    background: linear-gradient(145deg, #3a3a3a, #4a4a4a);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exec-btn:hover {
    background: linear-gradient(145deg, #4a4a4a, #5a5a5a);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
}

.exec-btn.execute {
    background: linear-gradient(145deg, #10b981, #059669);
    border-color: #10b981;
}

.exec-btn.execute:hover {
    background: linear-gradient(145deg, #059669, #047857);
}

.output-console {
    background: #0f0f0f;
}

.console-header {
    background: #1a1a1a;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.console-header span:first-child {
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.console-status {
    color: #10b981;
    font-size: 11px;
    font-weight: 500;
}

.console-content {
    padding: 12px 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    max-height: 120px;
    overflow-y: auto;
}

.console-line {
    margin-bottom: 4px;
}

.console-line.success {
    color: #10b981;
}

.console-line.info {
    color: #3b82f6;
}

.console-line.error {
    color: #ef4444;
}

/* Responsive Executor */
@media (max-width: 768px) {
    .executor-showcase {
        max-width: 100%;
        margin: 0 10px;
    }

    .code-area {
        min-height: 200px;
    }

    .executor-controls {
        flex-wrap: wrap;
        gap: 8px;
    }

    .exec-btn {
        flex: 1;
        min-width: 80px;
    }
}

/* 
Professional Executor Features */

/* Main Toolbar */
.main-toolbar {
    background: linear-gradient(180deg, #2c2c2c, #242424);
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3a3a3a;
    font-size: 11px;
}

.toolbar-left {
    display: flex;
    gap: 8px;
}

.toolbar-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.toolbar-btn.active,
.toolbar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.process-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 3px;
}

.injection-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-size: 11px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.status-dot.active {
    background: #10b981;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Main Content Layout */
.main-content {
    display: flex;
    height: 220px;
}

/* File Explorer */
.file-explorer {
    width: 180px;
    background: #1a1a1a;
    border-right: 1px solid rgba(139, 92, 246, 0.3);
}

.explorer-header {
    background: #2a2a2a;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.explorer-title {
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.explorer-btn {
    background: rgba(139, 92, 246, 0.2);
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-tree {
    padding: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2px;
}

.file-item:hover {
    background: rgba(139, 92, 246, 0.1);
}

.file-item.active {
    background: rgba(139, 92, 246, 0.3);
}

.file-icon {
    font-size: 12px;
}

.file-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
}

.file-item.active .file-name {
    color: white;
    font-weight: 500;
}

/* Editor Area */
.editor-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.editor-header {
    background: #2a2a2a;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.editor-tabs {
    display: flex;
    gap: 4px;
    align-items: center;
}

.tab {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 6px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.4);
}

.tab-icon {
    font-size: 10px;
}

.tab-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
}

.tab.active .tab-name {
    color: white;
}

.tab-close {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-left: 4px;
    cursor: pointer;
}

.tab-close:hover {
    color: #ef4444;
}

.new-tab {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: rgba(255, 255, 255, 0.7);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editor-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    background: rgba(139, 92, 246, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    color: white;
}

/* Enhanced Code Editor */
.code-editor {
    flex: 1;
    display: flex;
    background: #0f0f0f;
    min-height: 180px;
}

.code-editor .line-numbers {
    background: #0d1117;
    padding: 8px 6px;
    color: #6e7681;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.5;
    border-right: 1px solid #30363d;
    user-select: none;
    min-width: 35px;
    text-align: right;
}

.code-editor .code-content {
    flex: 1;
    padding: 8px 12px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.5;
    color: #e0e0e0;
    overflow-y: auto;
    background: #0d1117;
}

/* Advanced Controls */
.advanced-controls {
    background: #2a2a2a;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444444;
    flex-shrink: 0;
}

.control-group {
    display: flex;
    gap: 8px;
}

.advanced-controls .exec-btn {
    background: linear-gradient(145deg, #3a3a3a, #4a4a4a);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.advanced-controls .exec-btn:hover {
    background: linear-gradient(145deg, #4a4a4a, #5a5a5a);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
}

.advanced-controls .exec-btn.execute {
    background: linear-gradient(145deg, #10b981, #059669);
    border-color: #10b981;
}

.advanced-controls .exec-btn.stop {
    background: linear-gradient(145deg, #ef4444, #dc2626);
    border-color: #ef4444;
}

.execution-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-family: 'Courier New', monospace;
}

/* Enhanced Console */
.enhanced-console {
    background: #0f0f0f;
    height: 100px;
    display: flex;
    flex-direction: column;
}

.enhanced-console .console-header {
    background: #1a1a1a;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.console-tabs {
    display: flex;
    gap: 8px;
}

.console-tab {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.console-tab.active {
    background: rgba(139, 92, 246, 0.3);
    color: white;
}

.console-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.console-btn {
    background: rgba(139, 92, 246, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.console-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    color: white;
}

.enhanced-console .console-content {
    flex: 1;
    padding: 8px 16px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.4;
    overflow-y: auto;
}

.console-line.timestamp {
    color: #666;
}

.console-line .success {
    color: #10b981;
}

.console-line .info {
    color: #3b82f6;
}

.console-line .error {
    color: #ef4444;
}

/* Professional Responsive Design */
@media (max-width: 1024px) {
    .executor-showcase {
        max-width: 100%;
        margin: 0 10px;
    }

    .main-content {
        height: 350px;
    }

    .file-explorer {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        height: auto;
    }

    .file-explorer {
        width: 100%;
        height: 120px;
        border-right: none;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    }

    .file-tree {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 8px;
    }

    .file-item {
        white-space: nowrap;
        margin-bottom: 0;
    }

    .code-editor {
        height: 250px;
    }

    .enhanced-console {
        height: 120px;
    }

    .toolbar-right {
        display: none;
    }

    .advanced-controls {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .control-group {
        justify-content: center;
    }
}

/* U
X Design Improvements */

/* UX Rule: Clear Visual Hierarchy */
.hero-title {
    margin-bottom: 24px;
}

.title-main {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.title-sub {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    display: block;
}

/* UX Rule: Scannable Content */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-description strong {
    color: #10b981;
    font-weight: 600;
}

/* UX Rule: Clear Call-to-Action */
.cta-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-primary:focus {
    outline: 3px solid rgba(16, 185, 129, 0.5);
    outline-offset: 2px;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-secondary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* UX Rule: Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.trust-icon {
    font-size: 16px;
}

/* UX Rule: Improved Navigation */
.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a:focus {
    outline: 2px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

.nav-download {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
}

.nav-download:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    transform: translateY(-1px);
}

/* UX Rule: Better Spacing and Rhythm */
.hero-highlights {
    margin: 32px 0;
}

.highlight-item {
    padding: 20px;
    margin-bottom: 16px;
    background: rgba(26, 10, 26, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(26, 10, 26, 0.5);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(8px);
}

.highlight-item:focus-within {
    outline: 2px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

/* UX Rule: Accessible Stats */
.hero-stats {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* UX Rule: Responsive Improvements */
@media (max-width: 768px) {
    .title-main {
        font-size: 2.8rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* UX Rule: Focus States for Accessibility */
*:focus {
    outline: 2px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 3px solid rgba(139, 92, 246, 0.6);
    outline-offset: 2px;
}

/* UX Rule: Loading States */
.cta-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.cta-secondary:active {
    transform: translateY(0);
}

/* UX Rule: Better Error Prevention */
.hero-announcement {
    background: rgba(26, 10, 26, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-bottom: 24px;
}

.announcement-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.announcement-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-left: 12px;
}

/* Rea
listic Application Details */

/* Add realistic window chrome */
.executor-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 10;
}

/* Realistic file explorer styling */
.file-item {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
}

.file-item.active {
    background: #264f78;
    color: white;
}

.file-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

/* Realistic tab styling */
.tab {
    background: #2d2d30;
    border: none;
    border-right: 1px solid #3e3e42;
    border-radius: 0;
    padding: 6px 12px;
    font-size: 11px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.tab.active {
    background: #1e1e1e;
    color: white;
    border-bottom: 2px solid #007acc;
}

.tab:not(.active) {
    color: #cccccc;
}

/* Realistic button styling */
.advanced-controls .exec-btn {
    background: #0e639c;
    border: 1px solid #14679e;
    color: white;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.advanced-controls .exec-btn:hover {
    background: #1177bb;
    border-color: #1177bb;
}

.advanced-controls .exec-btn.execute {
    background: #16825d;
    border-color: #16825d;
}

.advanced-controls .exec-btn.execute:hover {
    background: #1e9973;
}

.advanced-controls .exec-btn.stop {
    background: #a1260d;
    border-color: #a1260d;
}

/* Realistic console styling */
.enhanced-console .console-content {
    background: #0d1117;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    color: #c9d1d9;
}

.console-line.timestamp {
    color: #8b949e;
}

.console-line .success {
    color: #7ee787;
}

.console-line .info {
    color: #79c0ff;
}

.console-line .error {
    color: #f85149;
}

/* Realistic scrollbars */
.code-editor .code-content::-webkit-scrollbar,
.enhanced-console .console-content::-webkit-scrollbar {
    width: 12px;
}

.code-editor .code-content::-webkit-scrollbar-track,
.enhanced-console .console-content::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.code-editor .code-content::-webkit-scrollbar-thumb,
.enhanced-console .console-content::-webkit-scrollbar-thumb {
    background: #424242;
    border-radius: 6px;
}

.code-editor .code-content::-webkit-scrollbar-thumb:hover,
.enhanced-console .console-content::-webkit-scrollbar-thumb:hover {
    background: #4f4f4f;
}

/* Realistic status indicators */
.injection-status {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
}

.status-dot.active {
    background: #7ee787;
    box-shadow: 0 0 4px rgba(126, 231, 135, 0.5);
}

/* Add realistic window reflection */
.executor-window::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
/* Tutoria
l Video Section */
.tutorial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0f0a1f 100%);
    position: relative;
    overflow: hidden;
}

.tutorial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tutorial-header {
    text-align: center;
    margin-bottom: 60px;
}

.tutorial-header .section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tutorial-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
}

.video-placeholder-content {
    text-align: center;
    color: white;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.7);
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.video-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.tutorial-steps h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(8px);
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tutorial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tutorial-steps {
        order: -1;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}/* Scre
enshot Showcase Styles */
.screenshot-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.screenshot-container {
    max-width: 1200px;
    width: 100%;
}

.screenshot-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(139, 92, 246, 0.4),
        0 15px 40px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.3);
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.screenshot-frame:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 35px 100px rgba(139, 92, 246, 0.6),
        0 20px 50px rgba(139, 92, 246, 0.3),
        0 0 0 2px rgba(139, 92, 246, 0.6);
}

.screenshot-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-frame:hover .screenshot-image {
    transform: scale(1.02);
}

.screenshot-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-badge {
    background: rgba(139, 92, 246, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

.feature-badge.keyless {
    background: rgba(16, 185, 129, 0.9);
}

.feature-badge.low-usage {
    background: rgba(245, 158, 11, 0.9);
}

.feature-badge.instant {
    background: rgba(239, 68, 68, 0.9);
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.benefit-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive design for screenshot showcase */
@media (max-width: 768px) {
    .screenshot-showcase {
        padding: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .screenshot-overlay {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .feature-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-frame {
        border-radius: 8px;
    }
}
/* Screensh
ot Placeholder Styles */
.screenshot-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.placeholder-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.placeholder-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

.placeholder-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.placeholder-content {
    text-align: center;
}

.placeholder-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.placeholder-subtext {
    font-size: 0.9rem;
    color: rgba(139, 92, 246, 0.8);
    font-style: italic;
}

/* Instructions for replacing screenshot */
.screenshot-placeholder::after {
    content: "📸 To add your screenshot: Replace this placeholder with your apex-screenshot.png file";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: rgba(139, 92, 246, 0.6);
    text-align: center;
    max-width: 80%;
}/* Zoom Hi
nt */
.zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.screenshot-frame:hover .zoom-hint {
    opacity: 1;
}

.zoom-icon {
    font-size: 1rem;
}

/* Zoom Overlay */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.zoom-overlay.active {
    opacity: 1;
    visibility: visible;
}

.zoom-container {
    position: relative;
    max-width: 50vw;
    max-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 
        0 25px 80px rgba(139, 92, 246, 0.6),
        0 15px 40px rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.zoom-close:hover {
    background: rgba(139, 92, 246, 1);
    transform: scale(1.1);
}

.zoom-instructions {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

/* Responsive zoom */
@media (max-width: 768px) {
    .zoom-container {
        max-width: 70vw;
        max-height: 60vh;
    }
    
    .zoom-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .zoom-instructions {
        bottom: -35px;
        font-size: 0.8rem;
    }
}/* Antivir
us Warning Styles */
.antivirus-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.warning-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.warning-text strong {
    color: #ffffff;
    font-weight: 600;
}



.download-header {
    text-align: center;
    margin-bottom: 2rem;
}

.download-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.download-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.download-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.download-main {
    margin-bottom: 1.5rem;
}

.download-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.5);
    width: 100%;
    margin-bottom: 1rem;
}

.download-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(16, 185, 129, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(16, 185, 129, 0.8);
}

.download-icon {
    font-size: 1.3rem;
}

.download-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.download-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.download-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.download-options {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-option {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.download-option:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    color: #ffffff;
}

.option-icon {
    font-size: 0.9rem;
}

.option-text {
    font-weight: 500;
}

/* Responsive antivirus warning */
@media (max-width: 768px) {
    .antivirus-warning {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .warning-icon {
        font-size: 1.3rem;
    }
    
    .warning-title {
        font-size: 0.9rem;
    }
    
    .warning-text {
        font-size: 0.8rem;
    }
    
    .cta-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1rem;
    }
    
    .cta-subtitle {
        font-size: 0.7rem;
    }
}/* Do
wnload Page Styles */
.download-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #0f0a1f 50%, #1a0a1a 75%, #0a0a0a 100%);
    position: relative;
}

.download-page-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.download-section {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.download-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.system-requirements, .download-stats {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.system-requirements h3, .download-stats h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.stat-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* Fix CTA buttons */
.cta-primary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(139, 92, 246, 0.8);
}

.cta-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive download page */
@media (max-width: 768px) {
    .download-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-section {
        padding: 1.5rem;
    }
    
    .system-requirements, .download-stats {
        padding: 1rem;
    }
}
/* Ant
ivirus Warning Section */
.antivirus-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: #1f2937;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.warning-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.warning-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.warning-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: #374151;
}

.warning-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.warning-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.step-num {
    background: #1f2937;
    color: #f59e0b;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.warning-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.safety-badge {
    background: rgba(255, 255, 255, 0.3);
    color: #1f2937;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments for antivirus warning */
@media (max-width: 768px) {
    .antivirus-warning {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .warning-header h3 {
        font-size: 1.1rem;
    }
    
    .warning-content p {
        font-size: 0.95rem;
    }
    
    .warning-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .safety-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
}