:root {
    --neon-green: #ccff00;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #050505;
    color: white;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand-font {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

/* Text Effects */
.text-outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
}

.text-outline:hover {
    color: var(--neon-green);
    -webkit-text-stroke: 1px var(--neon-green);
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    width: max-content !important;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    padding-right: 0;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Menu & Dropdowns */
.dropdown-menu {
    display: none;
    animation: fadeIn 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-open {
    transform: translateX(0) !important;
}

.menu-closed {
    transform: translateX(100%) !important;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-logo {
    height: 150px !important;
    width: auto;
    max-width: 150px;
    animation: pulse 1s infinite ease-in-out;
}

.loader-text {
    font-family: 'Anton';
    font-size: 4rem;
    animation: pulse 1s infinite;
    color: var(--neon-green);
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
}

.hide-scroll::-webkit-scrollbar {
    display: none;
}

.hide-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Form Elements */
input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    background: #000;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background: var(--neon-green);
    border-color: var(--neon-green);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: black;
    font-size: 12px;
    top: -2px;
    left: 1px;
    font-weight: bold;
}

input[type="radio"]:checked+label {
    background-color: var(--neon-green);
    color: black;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.3);
}

.color-btn.active {
    box-shadow: 0 0 0 2px #ccff00;
    border-color: white;
    transform: scale(1.1);
}

/* --- GAME CHANGER UPGRADES --- */
/* Grain overlay: disabled for performance */
.grain-overlay {
    display: none;
}


/* Legacy Cursor Styles System v4.0 Removed - Using Dynamic Experience Engine v5.1 */