/* ===== VIDA Muziek Bingo - Dark Modern Theme ===== */
:root {
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-sidebar: #12121f;
    --bg-input: #252540;
    --bg-hover: #2a2a45;
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --accent-secondary: #ff2d75;
    --accent-green: #00e676;
    --accent-orange: #ff9100;
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #6a6a8a;
    --border: #2a2a45;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== ADMIN LAYOUT ===== */
.admin-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px);
    padding-top: 56px;
}

/* ===== TOP BAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--bg-sidebar);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 2px;
}

.topbar-logo {
    width: 34px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.topbar-brand {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.topbar-title {
    font-size: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.topbar-center {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 45, 117, 0.1));
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.nav-icon { font-size: 18px; }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-fullscreen-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-fullscreen-topbar:hover {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 12px rgba(0,212,255,0.2);
}

.btn-spotify-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(29, 185, 84, 0.12);
    border: 1px solid rgba(29, 185, 84, 0.3);
    border-radius: 50px;
    color: #1DB954;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-spotify-topbar:hover {
    background: rgba(29, 185, 84, 0.25);
    box-shadow: 0 0 16px rgba(29, 185, 84, 0.2);
}
.btn-spotify-topbar.connected {
    border-color: #1DB954;
    background: rgba(29, 185, 84, 0.2);
}
.spotify-icon { flex-shrink: 0; }

/* Main Content */
.main-content {
    flex: 1;
    padding: 20px 28px;
    min-height: calc(100vh - 56px);
}

.main-content > section {
    margin-bottom: 28px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.section-header h1 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #0099cc);
    color: #000;
    box-shadow: 0 2px 12px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-secondary {
    background: var(--bg-input);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-hover); color: var(--text-primary); }

.btn-success {
    background: linear-gradient(135deg, var(--accent-green), #00b05e);
    color: #000;
}
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0, 230, 118, 0.3); }

.btn-danger {
    background: linear-gradient(135deg, var(--accent-secondary), #cc0044);
    color: #fff;
}
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255, 45, 117, 0.3); }

.btn-spotify {
    background: #1DB954;
    color: #fff;
    font-size: 13px;
    padding: 10px 20px;
}
.btn-spotify:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(29, 185, 84, 0.4); }

.btn-large { padding: 10px 20px; font-size: 13px; }
.btn-small { padding: 5px 10px; font-size: 11px; }
.btn-back { background: none; color: var(--text-secondary); padding: 8px 0; }
.btn-back:hover { color: var(--accent); }
.btn-copy { background: var(--bg-input); color: var(--text-secondary); padding: 6px 10px; border: 1px solid var(--border); }

/* ===== CARDS GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
}
.card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-meta {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 6px;
}

.card-meta span { margin-right: 16px; }

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-songs {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent);
}
.badge-waiting {
    background: rgba(255, 145, 0, 0.15);
    color: var(--accent-orange);
}
.badge-playing {
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-green);
    animation: pulse 2s infinite;
}
.badge-finished {
    background: rgba(160, 160, 192, 0.15);
    color: var(--text-secondary);
}
.badge-success {
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-green);
}
.badge-warning {
    background: rgba(255, 145, 0, 0.15);
    color: var(--accent-orange);
}

/* Track counter in playlist cards */
.track-counter {
    font-weight: 600;
}
.track-ready {
    color: var(--accent-green);
}
.track-needed {
    color: var(--accent-orange);
}

/* Playlist info bar */
.playlist-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}
.playlist-info-bar .info-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 4px;
}

/* Form hint */
.form-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--accent);
    opacity: 0.8;
}

/* Form display (read-only value) */
.form-display {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ===== MODALS ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}
.modal-close:hover { color: var(--accent-secondary); background: var(--bg-hover); }

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.form-group textarea { min-height: 80px; resize: vertical; }
.form-group select option { background: var(--bg-card); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

/* ===== SEARCH BAR ===== */
.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
}

.search-bar input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
.search-bar input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}

/* ===== SEARCH RESULTS ===== */
.search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
    z-index: 50;
}
.search-results h3 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.search-result-item:hover { background: var(--bg-hover); }

.search-result-item img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
}

.search-result-info { flex: 1; min-width: 0; }
.search-result-info .title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-info .artist {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== SONG LIST ===== */
.song-list h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.song-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: var(--transition);
}
.song-item:hover { border-color: var(--accent); }

.song-number {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 28px;
    text-align: center;
}

.song-item img {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
}

.song-info { flex: 1; min-width: 0; }
.song-info .title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.song-info .artist {
    font-size: 12px;
    color: var(--text-secondary);
}

.song-item .btn-danger { opacity: 0; transition: var(--transition); }
.song-item:hover .btn-danger { opacity: 1; }

/* Play button in song list */
.btn-play {
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.btn-play:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 12px var(--accent-glow);
}
.btn-play.playing {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    animation: playPulse 1.5s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 16px 6px var(--accent-glow); }
}

/* ===== SPOTIFY EMBED PLAYER BAR ===== */
.spotify-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #000;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.spotify-embed-wrapper {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    height: 80px;
}
.spotify-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 152px;
    margin-top: -72px;
}

.player-close {
    position: absolute;
    top: 4px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 201;
    transition: var(--transition);
}
.player-close:hover {
    color: var(--accent-secondary);
    background: rgba(0,0,0,0.9);
}

/* ===== DETAIL HEADERS ===== */
.detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.detail-header h2 { font-size: 20px; font-weight: 600; }

/* ===== GAME INFO BAR ===== */
.game-info-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.join-code {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

/* ===== GAME CONTROLS ===== */
.game-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-orange), #cc7400);
    color: #000;
}
.btn-warning:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255, 145, 0, 0.3); }

/* Player link */
.player-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 12px;
    word-break: break-all;
}
.player-link:hover { text-decoration: underline; }

.info-item-link {
    margin-left: auto;
}

.btn-qr {
    white-space: nowrap;
    margin-left: auto;
}

.qr-code-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.25s ease;
}
.qr-code-overlay.hidden {
    display: none;
}

.qr-code-popup {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 56px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popIn 0.3s ease;
}

.qr-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.qr-popup-close:hover {
    color: #333;
}

.qr-code {
    display: inline-block;
}
.qr-code svg {
    width: 600px;
    height: 600px;
}

.qr-label {
    margin-top: 16px;
    font-size: 20px;
    color: #444;
    font-weight: 600;
}

@keyframes popIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===== GAME SETTINGS BAR ===== */
.game-settings-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    align-items: center;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.setting-item-full {
    width: 100%;
}

.setting-label {
    font-size: 15px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Duration selector buttons */
.duration-selector {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}

.duration-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-input);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.duration-btn:not(:last-child) {
    border-right: 1px solid var(--border);
}
.duration-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}
.duration-btn.active {
    background: var(--accent);
    color: #000;
}

/* Toggle switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--bg-input);
    border-radius: 22px;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.toggle-slider::before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider {
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--accent);
}
.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(18px);
    background: var(--accent);
}

/* ===== DJ CONSOLE ===== */
.dj-console {
    background: linear-gradient(145deg, var(--bg-card), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 16px;
    width: 480px;
    text-align: center;
}

/* Embed area — container */
.console-embed-area {
    width: 450px;
    height: 340px;
    margin: 0 auto 10px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.console-waiting {
    height: 340px;
    background: #121212;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--text-secondary);
}
.console-waiting-icon {
    font-size: 36px;
    margin-bottom: 8px;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.console-spotify-embed {
    width: 450px;
    height: 340px;
    overflow: hidden;
    line-height: 0;
    position: relative;
}
.console-spotify-embed iframe,
.console-spotify-embed > div {
    width: 450px !important;
    height: 410px !important;
    border: none;
    display: block;
    position: relative;
    top: -70px;
}

/* Now playing info */
.console-playing {
    margin-bottom: 6px;
}

.console-np-label {
    font-size: 10px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.console-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.console-artist {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 8px 0;
}

.console-progress {
    max-width: 300px;
    margin: 0 auto;
}

.console-timer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.console-time {
    font-size: 12px;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.console-timer {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

/* Controls centered */
.console-controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 6px;
}

.console-secondary-controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-large {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== GAME CONSOLE GRID (3 columns) ===== */
.game-console-grid {
    display: grid;
    grid-template-columns: 0.7fr auto 1fr;
    gap: 14px;
    align-items: start;
}

.console-side-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.console-side-panel h3 {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    flex-shrink: 0;
}

.side-panel-scroll {
    flex: 1;
    overflow-y: auto;
    max-height: 480px;
}

.side-panel-scroll::-webkit-scrollbar {
    width: 5px;
}
.side-panel-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.side-panel-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
.side-panel-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== NOW PLAYING ===== */
.now-playing {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 212, 255, 0.08));
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    margin-bottom: 24px;
    box-shadow: 0 0 30px var(--accent-glow);
}

.now-playing-art img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.now-playing-info { flex: 1; min-width: 0; }
.now-playing-info .np-label {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.now-playing-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.now-playing-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.now-playing-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-input);
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 3px;
    width: 0%;
    transition: width 1s linear;
}
.np-timer {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

/* ===== PLAYED SONGS ===== */
.played-songs { margin-bottom: 0; }
.played-songs h3, .players-list h3 {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.played-song-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.played-song-item.now-playing {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow), 0 0 20px rgba(0,212,255,0.15);
    background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(29,185,84,0.08));
}
.played-song-item.now-playing .title {
    color: var(--accent);
}
.now-playing-indicator {
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
    margin-left: auto;
}
.played-song-item img {
    width: 34px;
    height: 34px;
    border-radius: 4px;
}
.played-song-item .title {
    font-size: 13px;
    font-weight: 500;
}
.played-song-item .artist {
    font-size: 12px;
    color: var(--text-secondary);
}
.played-song-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 18px;
    text-align: center;
}

/* ===== PLAYERS LIST ===== */
.player-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
}
.player-item .player-name { flex: 1; font-weight: 500; font-size: 15px; }
.player-item .bingo-badge {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-orange));
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}
.player-item.has-bingo {
    background: linear-gradient(135deg, rgba(29,185,84,0.15), rgba(255,165,0,0.15));
    border-color: var(--accent-secondary);
    box-shadow: 0 0 12px rgba(29,185,84,0.4), 0 0 24px rgba(255,165,0,0.2);
    animation: bingoGlow 2s ease-in-out infinite;
}
.player-item.has-bingo .player-name {
    color: var(--accent-secondary);
    font-weight: 700;
    font-size: 1.05em;
}
@keyframes bingoGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(29,185,84,0.4), 0 0 24px rgba(255,165,0,0.2); }
    50% { box-shadow: 0 0 20px rgba(29,185,84,0.7), 0 0 40px rgba(255,165,0,0.4); }
}

/* ===== BINGO ALERT OVERLAY ===== */
.bingo-alert-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}
.bingo-alert-box {
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--accent-secondary);
    border-radius: 24px;
    padding: 48px 64px;
    box-shadow: 0 0 60px rgba(29,185,84,0.5), 0 0 120px rgba(255,165,0,0.3);
    animation: bingoPopIn 0.5s cubic-bezier(0.18, 1.2, 0.4, 1);
}
.bingo-alert-emoji {
    font-size: 80px;
    margin-bottom: 12px;
    animation: bingoSpin 1s ease-in-out;
}
.bingo-alert-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-orange), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    margin-bottom: 8px;
}
.bingo-alert-player {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.bingo-alert-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.bingo-alert-close {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-orange));
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bingo-alert-close:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(29,185,84,0.4);
}
@keyframes bingoPopIn {
    0% { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes bingoSpin {
    0% { transform: rotate(0deg) scale(0.5); }
    50% { transform: rotate(15deg) scale(1.2); }
    100% { transform: rotate(0deg) scale(1); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* False Bingo Alert */
.bingo-alert-box.bingo-false {
    border-color: #ff4444;
    box-shadow: 0 0 60px rgba(255,68,68,0.5), 0 0 120px rgba(255,165,0,0.3);
}
.bingo-false-title {
    background: linear-gradient(135deg, #ff4444, #ff8800, #ff4444) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.bingo-punishment {
    font-size: 24px;
    font-weight: 700;
    color: #ff8800;
    margin: 16px 0 24px;
    padding: 16px 24px;
    background: rgba(255,136,0,0.1);
    border: 2px solid rgba(255,136,0,0.3);
    border-radius: 12px;
    animation: punishPop 0.6s cubic-bezier(0.18, 1.2, 0.4, 1);
}
@keyframes punishPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}
.bingo-false-btn {
    background: linear-gradient(135deg, #ff4444, #ff8800) !important;
}
.bingo-false-btn:hover {
    box-shadow: 0 4px 20px rgba(255,68,68,0.4) !important;
}

/* False Bingo player item */
.player-item.has-false-bingo {
    background: linear-gradient(135deg, rgba(255,68,68,0.1), rgba(255,136,0,0.1));
    border-color: #ff4444;
}
.player-item.has-false-bingo .player-name {
    color: #ff8800;
}
.bingo-badge.false-badge {
    background: linear-gradient(135deg, #ff4444, #ff8800);
}

/* ===== SPOTIFY STATUS ===== */
.spotify-status-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin-bottom: 24px;
}
.spotify-status .status-icon { font-size: 48px; display: block; margin-bottom: 16px; }
.spotify-status h3 { font-size: 20px; margin-bottom: 8px; }
.spotify-status p { color: var(--text-secondary); margin-bottom: 20px; }

.spotify-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    max-width: 500px;
}
.spotify-info h3 { font-size: 16px; margin-bottom: 12px; color: var(--accent); }
.spotify-info ul { list-style: none; padding: 0; }
.spotify-info li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.spotify-info li:last-child { border: none; }

/* ===== HIDDEN UTILITY ===== */
.hidden { display: none !important; }

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.empty-state .icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; margin-bottom: 8px; color: var(--text-secondary); }
.empty-state p { font-size: 14px; }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease;
    min-width: 280px;
}
.toast-success { background: linear-gradient(135deg, #00c853, #00a040); }
.toast-error { background: linear-gradient(135deg, #ff1744, #d50000); }
.toast-info { background: linear-gradient(135deg, var(--accent), #0099cc); color: #000; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== LOADING ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    color: var(--text-muted);
}
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   PLAYER PAGE STYLES
   ============================================ */
.player-body {
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Join Screen */
.join-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.join-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow);
}

.join-card .logo {
    width: 100px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 16px var(--accent-glow));
}

.join-card h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.join-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 14px;
}

.join-card .form-group { text-align: left; }

.join-code-input input {
    text-align: center;
    font-size: 28px !important;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* Game Screen */
.game-screen {
    width: 100%;
    max-width: 600px;
    padding: 16px;
}

.game-header {
    text-align: center;
    padding: 16px 0;
}
.game-header .game-logo {
    max-height: 50px;
    margin-bottom: 8px;
}
.game-header h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.game-header .player-name-display {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
}

/* Bingo Card */
.bingo-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin: 16px 0;
    background: var(--border);
    border-radius: var(--radius);
    padding: 4px;
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.bingo-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 6px;
    padding: 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bingo-cell .cell-title {
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bingo-cell .cell-artist {
    font-size: 7px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bingo-cell.free {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 2px;
}
.free-cell-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 6px;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.3));
}

.bingo-cell.checked {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 45, 117, 0.2));
    border: 2px solid var(--accent);
}
.bingo-cell.checked::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 700;
}
.bingo-cell.free.checked::after {
    display: none;
}

.bingo-cell.played {
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

/* Bingo Button */
.bingo-button-container {
    text-align: center;
    margin: 16px 0;
}

.btn-bingo {
    padding: 16px 60px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-orange));
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 4px;
    box-shadow: 0 4px 20px rgba(255, 45, 117, 0.4);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.btn-bingo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 45, 117, 0.6);
}

/* Player Now Playing */
.player-now-playing {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 212, 255, 0.08));
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: 0 0 20px var(--accent-glow);
}
.player-now-playing img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
}
.player-now-playing .np-info h4 {
    font-size: 15px;
    font-weight: 600;
}
.player-now-playing .np-info p {
    font-size: 12px;
    color: var(--text-secondary);
}
.player-now-playing .np-label {
    font-size: 10px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Waiting screen */
.waiting-screen {
    text-align: center;
    padding: 40px 20px;
}
.waiting-screen .waiting-icon {
    font-size: 64px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}
.waiting-screen h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.waiting-screen p {
    color: var(--text-secondary);
}

/* Bingo celebration */
.bingo-celebration {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(12px);
}
.bingo-celebration-content {
    text-align: center;
    animation: scaleIn 0.5s ease;
}
.bingo-celebration h1 {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.bingo-celebration p {
    font-size: 20px;
    color: var(--text-secondary);
}

@keyframes scaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===== BINGO ROUND MODE SELECTOR ===== */
.round-mode-selector {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}

.round-mode-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-input);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.round-mode-btn:not(:last-child) {
    border-right: 1px solid var(--border);
}
.round-mode-btn:hover:not(.completed):not(.active) {
    background: var(--bg-hover);
    color: var(--text-primary);
}
.round-mode-btn.active {
    background: var(--accent);
    color: #000;
}
.round-mode-btn.completed {
    background: var(--bg-input);
    color: var(--text-muted);
    text-decoration: line-through;
    cursor: default;
    opacity: 0.5;
}

.round-mode-status {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

/* Round mode prompt overlay */
.round-mode-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease;
}
.round-mode-dialog {
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 40px 48px;
    box-shadow: 0 0 60px var(--accent-glow);
    animation: bingoPopIn 0.5s cubic-bezier(0.18, 1.2, 0.4, 1);
    max-width: 500px;
    width: 90%;
}
.round-mode-dialog h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.round-mode-dialog p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 14px;
}
.round-mode-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.round-mode-choice {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-input);
    color: var(--text-primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.round-mode-choice:hover:not(:disabled) {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--accent-glow);
}
.round-mode-choice:disabled {
    text-decoration: line-through;
    opacity: 0.4;
    cursor: default;
}

/* ===== PRINT PER PAGE OPTIONS ===== */
.print-per-page-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--bg-hover);
    border: 2px solid transparent;
    transition: all 0.2s;
}
.print-per-page-option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(156, 39, 176, 0.15);
}
.print-per-page-option input { display: none; }
.print-per-page-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .topbar {
        padding: 0 16px;
        height: 50px;
    }
    .topbar-brand { font-size: 13px; }
    .topbar-title { font-size: 13px; }
    .topbar-center { display: none; }
    .admin-container { padding-top: 50px; }
    .main-content { padding: 16px; }
    .card-grid { grid-template-columns: 1fr; }
    .game-info-bar { flex-direction: column; gap: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; gap: 12px; align-items: flex-start; }
    .bingo-cell .cell-title { font-size: 8px; }
    .bingo-cell .cell-artist { font-size: 6px; }
    .btn-spotify-topbar span:not(.spotify-icon) { display: none; }
    .console-embed-area { width: 450px; margin: 0 auto 10px; }
    .console-spotify-embed {
    width: 450px;
    height: 340px; }
    .console-spotify-embed iframe, .console-spotify-embed > div {
    width: 450px !important;
    height: 410px !important; top: -70px; }
    .game-console-grid { grid-template-columns: 1fr; }
    .side-panel-scroll { max-height: 300px; }
    .game-bottom-grid { grid-template-columns: 1fr; }
    .game-settings-bar { flex-direction: column; gap: 12px; }
    .dj-console { padding: 12px; }
}

/* ===== 4K / HIGH-RES SCALING ===== */
/* QHD screens (2560px wide, or 4K at 150% Windows scaling) */
@media (min-width: 1921px) and (max-width: 2560px) {
    html {
        zoom: 1.333;
    }
}

/* 4K screens at 125% Windows scaling (~3072px effective) */
@media (min-width: 2561px) and (max-width: 3200px) {
    html {
        zoom: 1.6;
    }
}

/* 4K screens at 100% scaling (3840px wide) */
@media (min-width: 3201px) {
    html {
        zoom: 2;
    }
}
