/* Dopewars Online Custom Aesthetic Stylesheet */

body {
    background-color: #0b0f19; /* Deep criminal-underground midnight background */
    color: #cbd5e1;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Neon Text Glow Effect */
.title-neon {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255,255,255,0.3), 0 0 15px #0d6efd, 0 0 30px #0d6efd;
    letter-spacing: -1px;
}

/* Terminal / Matrix Text Style for Hero Copy */
.text-matrix {
    color: #a7f3d0 !important; /* Soft electronic terminal green */
}

/* Jumbotron Replacement: High-Contrast Terminal Box */
.hero-terminal {
    background-color: #111827 !important; /* Solid charcoal slate */
    border: 1px solid #1f2937 !important;
}

/* Dark Support Box Container */
.card-dark {
    background-color: #1f2937;
    border: 1px solid #374151;
}

/* High-Impact Animated Play Button */
.btn-action-glow {
    background-color: #22c55e; /* Vibrant street green */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
    transition: all 0.2s ease-in-out;
}

    .btn-action-glow:hover {
        background-color: #16a34a;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
    }

/* Header Banner Neon Blur styling */
.banner-glow {
    border: 1px solid #1f2937;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Interactive Element Hover Animations */
.kofi-hover {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.kofi-hover:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.small-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Tracking indicator alignment styling rules */
#season-heading {
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}