/* Modern CSS for Global Radio Player */

/* ==================== ROOT & VARIABLES ==================== */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #0ea5e9;
    --bg-dark: #0f172a;
    --bg-darker: #080c1a;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --border-light: #475569;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

.app-bg {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

p,
span,
li {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-light {
    color: var(--text-secondary) !important;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    transition: var(--transition);
    white-space: nowrap;
}

.navbar-brand:hover {
    color: var(--primary-light) !important;
    transform: translateY(-2px);
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.btn-outline-light {
    color: var(--text-secondary);
    border-color: var(--border-color);
    transition: var(--transition);
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
    white-space: nowrap;
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==================== HERO SECTION ==================== */
.display-3 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary) !important;
}

/* ==================== MOBILE NAVIGATION DRAWER ==================== */
.mobile-nav-drawer {
    position: fixed;
    left: -100%;
    top: 0;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.95) 100%);
    border-right: 1px solid var(--border-color);
    z-index: 1001;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    left: 0;
}

.mobile-nav-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-header h5 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.btn-close-drawer {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 0.5rem;
}

.btn-close-drawer:hover {
    background-color: var(--bg-darker);
    color: var(--text-primary);
}

.mobile-nav-content {
    padding: 1rem 0;
    flex: 1;
}

.nav-drawer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nav-drawer-item:hover {
    background-color: var(--bg-darker);
    color: var(--primary-light);
    transform: translateX(5px);
}

.nav-drawer-item i {
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-nav-overlay.active {
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: all;
}

/* ==================== BUTTONS ==================== */
.btn {
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
}

.btn-success {
    background-color: var(--success-color);
}

.btn-success:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.btn-warning {
    background-color: var(--warning-color);
    color: white;
}

.btn-warning:hover {
    background-color: #d97706;
    color: white;
    transform: translateY(-2px);
}

/* ==================== CARDS ==================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    transition: var(--transition);
    color: var(--text-primary);
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.2);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-muted);
}

.hover-lift {
    position: relative;
    overflow: hidden;
}

.hover-lift::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.hover-lift:hover::before {
    opacity: 1;
}

/* ==================== BADGES ==================== */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-warning {
    background-color: var(--warning-color) !important;
}

.badge:hover {
    transform: scale(1.05);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    background: transparent !important;
    padding: 0 !important;
}

.breadcrumb-item {
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--primary-light);
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ==================== SEARCH CONTAINER ==================== */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-container i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1.125rem;
    pointer-events: none;
}

.form-control {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border-radius: 0.75rem;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    background: var(--bg-card);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ==================== STATION CARDS ==================== */
.station-item {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid var(--border-color) !important;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.station-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: var(--transition);
}

.station-item:hover::before {
    left: 100%;
}

.station-item:hover {
    border-color: var(--primary-color) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.3);
}

.station-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.station-details {
    font-size: 0.875rem;
}

.detail-item {
    color: var(--text-muted);
    transition: var(--transition);
}

.detail-item:hover {
    color: var(--primary-light);
}

.station-card:hover .detail-item {
    color: var(--primary-light);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== PLAYER SECTION ==================== */
.player-container {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.player-header {
    text-align: center;
    margin-bottom: 2rem;
}

.player-station-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-play-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-play-large:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.5);
}

.btn-play-large:active {
    transform: scale(0.95);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.volume-slider {
    width: 200px;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--primary-light);
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--primary-light);
}

/* ==================== MINI PLAYER BAR ==================== */
.mini-player-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    bottom: 0;
    z-index: 100;
    animation: slideUp 0.3s ease-out;
    padding: 0.75rem 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mini-player-info {
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
}

#miniPlayerStation {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

#miniPlayerCountry {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

#miniPlayBtn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    transition: var(--transition);
    min-width: 40px;
    min-height: 40px;
    touch-action: manipulation;
}

#miniPlayBtn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

#miniPlayBtn:active {
    transform: scale(0.95);
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    color: var(--text-secondary);
}

footer p {
    color: var(--text-muted);
    margin: 0;
}

footer i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ==================== ALERTS ==================== */
.alert {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    border-radius: 0.75rem;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #86efac !important;
}

.btn-close {
    filter: brightness(2);
}

/* ==================== STATS SECTION ==================== */
.stat-card {
    text-align: center;
    transition: var(--transition);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card:hover {
    transform: translateY(-8px);
}

/* ==================== GRID LAYOUT ==================== */
.container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 1399.98px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: calc(25% - 0.75rem);
    }
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: calc(33.333% - 0.75rem);
    }
}

@media (max-width: 767.98px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: calc(50% - 0.75rem);
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==================== TRANSITIONS & ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==================== UTILITY CLASSES ==================== */
.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.text-primary-emphasis {
    color: var(--primary-light) !important;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-lg-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.flex-grow-1 {
    flex-grow: 1;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.text-decoration-none {
    text-decoration: none !important;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Premium Navigation - Hide on Mobile/Android, Show on Desktop */
@media (max-width: 767.98px) {

    /* Hide premium nav buttons on mobile devices */
    .navbar>.container-fluid>div[class*="d-md-flex"] {
        display: none !important;
    }
}

@media (min-width: 768px) {

    /* Ensure premium nav buttons are visible on desktop */
    .navbar>.container-fluid>div[class*="d-md-flex"] {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.25rem;
    }

    .lead {
        font-size: 1rem;
    }

    .player-station-name {
        font-size: 1.5rem;
    }

    .btn-play-large {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }

    .volume-slider {
        width: 150px;
    }

    .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .col-lg-2-4 {
        width: 100%;
        margin-bottom: 1rem;
    }

    .navbar {
        padding: 0.5rem 0.5rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-brand i {
        display: none;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .mini-player-bar {
        padding: 0.5rem 0;
    }

    .mini-player-bar .row {
        gap: 0.5rem;
    }

    .mini-player-bar .col-md-6 {
        flex: 0 1 auto;
    }

    .mini-player-info {
        min-width: 0;
    }

    /* Ensure mini player items are properly sized */
    #miniPlayerStation {
        font-size: 0.8rem;
    }

    #miniPlayerCountry {
        font-size: 0.65rem;
    }

    #miniPlayBtn {
        min-width: 36px;
        min-height: 36px;
        font-size: 0.85rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    /* Mobile nav drawer adjustments */
    .mobile-nav-drawer {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.75rem;
    }

    .card-body {
        padding: 1rem;
    }

    .player-container {
        padding: 1rem;
    }

    .btn-play-large {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .col-lg-2-4 {
        width: 100%;
    }

    .stat-card i {
        font-size: 2rem;
    }

    .form-control-lg {
        padding: 0.625rem 1rem 0.625rem 2.5rem;
        font-size: 0.95rem;
    }

    .gap-4 {
        gap: 1rem;
    }

    footer {
        font-size: 0.9rem;
    }

    .navbar {
        padding: 0.5rem;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .btn-outline-light {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .lead {
        font-size: 0.9rem;
    }

    .mini-player-bar {
        padding: 0.5rem 0;
    }

    .mini-player-bar .container-fluid {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .mini-player-bar .px-3 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    /* Reduce mini player info text on small screens */
    #miniPlayerStation {
        font-size: 0.75rem !important;
    }

    #miniPlayerCountry {
        font-size: 0.6rem !important;
    }

    #miniPlayBtn {
        min-width: 36px;
        min-height: 36px;
        width: 36px !important;
        height: 36px !important;
        font-size: 0.75rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }

    .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    /* Improve text visibility */
    .navbar-brand {
        font-size: 1rem;
        white-space: normal;
    }

    /* Mobile nav drawer for very small screens */
    .mobile-nav-drawer {
        width: 85vw;
        max-width: 85vw;
    }

    .mobile-nav-header {
        padding: 1rem;
    }

    .nav-drawer-item {
        padding: 0.875rem 1rem;
    }
}

/* ==================== DARK MODE (already applied by default) ==================== */
/* The entire color scheme is dark by default */

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== FOCUS STATES ==================== */
.btn:focus,
.form-control:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    body {
        background: white;
        color: black;
    }

    .navbar,
    .mini-player-bar,
    footer {
        display: none;
    }
}