:root {
    --bg-dark: #09090b;
    --panel-bg: rgba(24, 24, 27, 0.65);
    --border-color: rgba(145, 70, 255, 0.15);
    --border-color-hover: rgba(145, 70, 255, 0.4);
    --twitch-purple: #9146ff;
    --twitch-purple-hover: #772ce8;
    --neon-green: #00f59b;
    --neon-green-glow: rgba(0, 245, 155, 0.4);
    --text-primary: #f4f4f5;
    --text-muted: #a1a1aa;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --card-gradient: linear-gradient(135deg, rgba(39, 39, 42, 0.5) 0%, rgba(24, 24, 27, 0.8) 100%);
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reusable Ad Wrapper Styling */
.ad-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0 25px 0;
    min-height: 90px;
}

.ad-mobile {
    display: none;
}

.ad-desktop {
    display: block;
}

@media (max-width: 768px) {
    .ad-wrapper {
        min-height: 60px;
    }
    .ad-mobile {
        display: block;
    }
    .ad-desktop {
        display: none;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background animated glow spots */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(145, 70, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 245, 155, 0.08) 0%, transparent 45%);
}

/* App Layout */
.app-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar Navigation */
.sidebar-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sidebar-close-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.sidebar-close-btn:hover {
    color: #fff;
}

.hamburger-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    font-size: 1.25rem;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-items: center;
    justify-content: center;
}

.hamburger-menu-btn:hover {
    background: rgba(145, 70, 255, 0.15);
    border-color: var(--twitch-purple);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sidebar {
    background: var(--panel-bg);
    backdrop-filter: blur(16px);
    border-right: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    background: var(--twitch-purple);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 0 15px rgba(145, 70, 255, 0.4);
}

.brand-text .brand-name {
    font-family: var(--font-header);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-item:hover, .nav-item.active {
    background: rgba(145, 70, 255, 0.1);
    color: #fff;
    border-color: var(--border-color);
}

.nav-item.active i {
    color: var(--twitch-purple);
}

/* Glass Panels */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    border-color: var(--border-color-hover);
}

/* Stats Card */
.stats-card h3, .activity-log h3 {
    font-family: var(--font-header);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.text-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

/* Verification Logger */
.activity-log {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.log-entries {
    flex-grow: 1;
    overflow-y: auto;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 250px;
    padding-right: 0.25rem;
}

.log-placeholder {
    color: var(--text-muted);
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

.log-entry {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--twitch-purple);
    line-height: 1.3;
    animation: slideIn 0.3s ease forwards;
}

.log-entry.success {
    border-left-color: var(--neon-green);
}

.log-time {
    color: var(--text-muted);
    font-size: 0.7rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* Main Content Area */
.main-content {
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.header-welcome h2 {
    font-family: var(--font-header);
    font-size: 1.75rem;
    font-weight: 800;
}

.header-welcome p {
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.highlight {
    color: var(--twitch-purple);
}

.header-status-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-badge i {
    color: var(--twitch-purple);
}

.code-badge {
    cursor: pointer;
    transition: all 0.2s ease;
}

.code-badge:hover {
    background: rgba(145, 70, 255, 0.15);
    border-color: var(--twitch-purple);
}

.code-badge code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    color: var(--neon-green);
    font-family: monospace;
    font-weight: 700;
}

.code-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--twitch-purple);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(145, 70, 255, 0.4);
}

.btn-primary:hover {
    background: var(--twitch-purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(145, 70, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

#btn-toggle-live.live {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 4px 14px 0 var(--neon-green-glow);
}

#btn-toggle-live.live i {
    animation: pulse 1.5s infinite;
}

/* Dashboard Grid */
.dashboard-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.title-left h2 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 700;
}

.title-left p {
    color: var(--text-muted);
}

.title-right {
    display: flex;
    gap: 0.5rem;
}

.filter-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-badge:hover, .filter-badge.active {
    background: rgba(145, 70, 255, 0.15);
    color: #fff;
    border-color: var(--twitch-purple);
}

/* Streamer Cards Grid */
.streamer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.streamer-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.streamer-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.streamer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    overflow: hidden;
}

.streamer-card.live .streamer-avatar {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

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

.streamer-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.live-badge {
    background: rgba(0, 245, 155, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
}

.offline-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
}

.streamer-preview-box {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.streamer-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.preview-overlay i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.streamer-card:hover .preview-overlay i {
    transform: scale(1.1);
}

.streamer-stats-row {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.streamer-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.streamer-stat-lbl {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.streamer-stat-val {
    font-weight: 700;
}

.streamer-stat-val.pts {
    color: var(--twitch-purple);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    width: 100%;
    max-width: 480px;
    position: relative;
    border-color: var(--border-color-hover);
}

.modal-header h2 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
}

.input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--twitch-purple);
    box-shadow: 0 0 10px rgba(145, 70, 255, 0.2);
}

.info-note {
    background: rgba(145, 70, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.info-note i {
    color: var(--twitch-purple);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

/* Verify Modal styling */
.verify-modal {
    max-width: 950px;
    padding: 2rem;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #fff;
}

.verify-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .verify-grid {
        grid-template-columns: 1fr;
    }
}

.verify-player-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.host-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.host-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--twitch-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.verify-player-area h3 {
    font-family: var(--font-header);
    font-size: 1.25rem;
    font-weight: 700;
}

.live-tag {
    color: var(--neon-green);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.live-tag i {
    font-size: 0.6rem;
    animation: pulse 1.5s infinite;
}

.iframe-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.verify-chat-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verify-chat-area h3 {
    font-family: var(--font-header);
    font-size: 1.25rem;
}

.instruction-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.verify-code-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--twitch-purple);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.verify-code-block:hover {
    background: rgba(145, 70, 255, 0.08);
    border-color: var(--neon-green);
}

.code-val-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verify-code-block code {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-green);
    letter-spacing: 1px;
}

.verify-code-block i {
    color: var(--text-muted);
}

.verify-code-block:hover i {
    color: var(--neon-green);
}

.connection-status-panel {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 180px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.indicator-dot.pulse {
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    animation: pulse 1.5s infinite;
}

.indicator-dot.connecting {
    background: #ffb700;
    box-shadow: 0 0 8px #ffb700;
}

.chat-log-box {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    padding: 0.75rem;
    font-family: monospace;
    font-size: 0.75rem;
    overflow-y: auto;
    height: 120px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.chat-msg {
    line-height: 1.3;
}

.chat-user {
    color: #fff;
    font-weight: bold;
}

.chat-text {
    color: var(--text-primary);
}

.chat-system {
    color: var(--neon-green);
    font-style: italic;
}

.chat-log-placeholder {
    color: var(--text-muted);
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: -300px;
    background: rgba(24, 24, 27, 0.95);
    border-left: 4px solid var(--twitch-purple);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
    right: 2rem;
}

.toast-notification i {
    font-size: 1.25rem;
}

.toast-notification.success {
    border-left-color: var(--neon-green);
}

.toast-notification.success i {
    color: var(--neon-green);
}

.toast-notification.error {
    border-left-color: #ff4646;
}

.toast-notification.error i {
    color: #ff4646;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animated {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.animated.scaleUp {
    animation-name: scaleUp;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(145, 70, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--twitch-purple);
}

@media (max-width: 900px) {
    .app-container {
        grid-template-columns: 1fr;
        height: auto;
        overflow-y: auto;
    }
    .sidebar {
        position: fixed;
        top: 0;
        left: -285px;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        background: #0d0917;
        border-right: 1px solid var(--border-color);
        transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 1.5rem;
        gap: 1.5rem;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    }
    .sidebar.active {
        left: 0;
    }
    .sidebar-close-btn {
        display: block;
    }
    .hamburger-menu-btn {
        display: inline-flex;
    }
    .sidebar-overlay {
        display: block;
    }
    .sidebar-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    .main-content {
        padding: 1.25rem;
        gap: 1.5rem;
        height: auto;
    }
    .main-header {
        padding: 1rem;
        gap: 1rem;
        align-items: center;
        justify-content: flex-start;
    }
    .header-welcome {
        flex-grow: 1;
    }
    .header-welcome h2 {
        font-size: 1.4rem;
    }
    .seo-content-wrapper {
        padding: 1.5rem !important;
    }
    .modal-content {
        padding: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    .streamer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .streamer-card {
        padding: 1rem !important;
    }
    .streamer-card-header {
        margin-bottom: 0.75rem;
    }
    .streamer-preview-box {
        display: none;
    }
    .streamer-stats-row {
        margin-bottom: 0.75rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    .streamer-stat {
        gap: 0.15rem;
    }
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Dashboard Loader & Spinner */
.dashboard-loader {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    gap: 1.5rem;
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(145, 70, 255, 0.1);
    border-top-color: var(--twitch-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
