:root {
    --mimpi-black: #0b0b0b;
    --mimpi-gray: #1f1f1f;
    --mimpi-charcoal: #242424;
    --mimpi-orange: #ff6a00;
    --mimpi-orange-soft: #ff9248;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--mimpi-black);
    color: #ffffff;
}

.futuristic-font {
    font-family: 'Orbitron', sans-serif;
}

.navy-gradient {
    background: linear-gradient(135deg, var(--mimpi-black) 0%, var(--mimpi-charcoal) 35%, var(--mimpi-orange) 100%);
}

.game-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(255, 106, 0, 0.35);
}

.carousel-slide {
    transition: transform 0.5s ease-in-out;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.55);
}

.interactive-section {
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.85) 0%, rgba(11, 11, 11, 0.95) 65%, var(--mimpi-black) 100%);
}

.btn-hover-effect {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-solid-neon {
    background: var(--mimpi-orange);
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.55), 0 0 28px rgba(255, 106, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-solid-neon:hover {
    background: #ff7b1f;
    box-shadow: 0 0 18px rgba(255, 124, 31, 0.7), 0 0 36px rgba(255, 124, 31, 0.45);
    transform: translateY(-1px);
}

.btn-solid-neon:focus {
    outline: 2px solid rgba(255, 124, 31, 0.5);
    outline-offset: 2px;
}

.btn-solid-neon:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.45);
}

.btn-solid-neon:disabled {
    background: rgba(255, 106, 0, 0.5);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.75;
}

.btn-hover-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-hover-effect:hover::after {
    left: 100%;
}

.login-modal {
    transition: all 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
}

.login-modal.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
