/* Premium CSS Styling for Football Live Score Dashboard */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Prompt:wght@300;400;500;600;700;800&display=swap');

/* Design Tokens & Root Variables */
:root {
    --font-primary: 'Outfit', 'Prompt', sans-serif;
    
    /* Elegant Light Slate & Glassmorphic Color Palette */
    --bg-base: #f1f5f9;
    --bg-surface: rgba(255, 255, 255, 0.45);
    --bg-surface-hover: rgba(255, 255, 255, 0.75);
    --bg-card: rgba(15, 23, 42, 0.02);
    --bg-input: rgba(255, 255, 255, 0.85);
    
    /* Elegant Accents */
    --primary: #0284c7;
    --primary-glow: rgba(2, 132, 199, 0.15);
    --success: #059669;
    --success-glow: rgba(5, 150, 105, 0.2);
    --danger: #e11d48;
    --danger-glow: rgba(225, 29, 72, 0.2);
    --warning: #d97706;
    --warning-glow: rgba(217, 119, 6, 0.2);
    --purple: #7c3aed;
    
    /* Text Colors */
    --text-main: #0f172a;
    --text-muted: #334155;
    --text-dark: #64748b;
    
    /* Glassmorphism & Borders */
    --border-color: rgba(15, 23, 42, 0.08);
    --border-highlight: rgba(15, 23, 42, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    
    --shadow-main: 0 8px 32px 0 rgba(15, 23, 42, 0.06);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-base);
    background-image: 
        radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.12) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(16, 185, 129, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-primary);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-dark);
}

/* Layout Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px;
}

/* Header & Brand styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-main);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Real-time Clock Widget */
.clock-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.04);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 14px;
}

.clock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success-glow);
    animation: pulse 1.8s infinite;
}

/* Tab Navigation System */
.nav-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.nav-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background: var(--bg-surface-hover);
    color: var(--text-main);
    border-color: var(--text-dark);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), #0284c7);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Tab Content Visibility */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

/* Search and Filter Section */
.controls-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    background: var(--bg-surface);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
}

.search-input-wrapper {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 16px 12px 40px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.filter-select {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
    min-width: 160px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-select:focus {
    border-color: var(--primary);
}

/* Live Section Hero Banner */
.live-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(241, 245, 249, 0.85));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-main);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-pulse-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

/* Matches Grid Layout */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
}

/* Match Card design */
.match-card {
    background: var(--bg-surface);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-smooth);
}

.match-card:hover {
    transform: translateY(-4px);
    background: var(--bg-surface-hover);
    border-color: rgba(15, 23, 42, 0.15);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.match-card.card-live::before {
    background: linear-gradient(90deg, var(--success), #34d399);
}

.match-card.card-live {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.stage-badge {
    background: rgba(15, 23, 42, 0.04);
    padding: 4px 10px;
    border-radius: 50px;
}

.group-badge {
    color: var(--primary);
    font-weight: 700;
}

.live-badge {
    background: var(--danger);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 800;
    animation: pulse 1.5s infinite;
}

.finished-badge {
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-muted);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Match Core Display (Teams & Score) */
.match-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.team-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
}

.team-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15,23,42,0.04), rgba(15,23,42,0.01));
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-muted);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}

.team-name {
    font-size: 14px;
    font-weight: 700;
    word-break: break-word;
    max-width: 120px;
}

.score-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
}

.score-display {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
}

.score-divider {
    color: var(--text-dark);
}

.vs-display {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
    background: rgba(15, 23, 42, 0.04);
    padding: 4px 12px;
    border-radius: 50px;
}

/* Penalty subscore display */
.penalty-score {
    font-size: 12px;
    color: var(--warning);
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Match Card Footer */
.card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 12px;
}

.venue-icon {
    color: var(--primary);
}

/* Standings Grid */
.standings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 24px;
}

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

.standing-card {
    background: var(--bg-surface);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-main);
}

.standing-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    border-left: 4px solid var(--primary);
    padding-left: 10px;
}

/* Standings Table Design */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.standings-table th, .standings-table td {
    padding: 10px 8px;
}

.standings-table th {
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    font-size: 11px;
}

.standings-table tbody tr {
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
}

.standings-table tbody tr:hover {
    background: rgba(15, 23, 42, 0.03);
}

.col-rank {
    width: 35px;
    font-weight: 800;
    text-align: center;
}

.rank-1 .col-rank { color: var(--warning); }
.rank-2 .col-rank { color: #cbd5e1; }

.col-team {
    font-weight: 600;
}

.col-num {
    text-align: center;
    width: 35px;
}

.col-pts {
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    background: rgba(14, 165, 233, 0.05);
}

/* Tournament Bracket Structure */
.bracket-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    overflow-x: auto;
    padding: 24px 8px;
    scrollbar-width: thin;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-width: 250px;
    flex: 1;
}

.bracket-round-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.bracket-match {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    margin: 16px 0;
    box-shadow: var(--shadow-main);
    position: relative;
}

.bracket-team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 4px;
    font-size: 13px;
    font-weight: 600;
}

.bracket-team-row:not(:last-child) {
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.bracket-team-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bracket-team-score {
    font-weight: 800;
    font-size: 15px;
    width: 24px;
    text-align: right;
}

.bracket-winner {
    color: var(--primary);
}

.bracket-winner .bracket-team-score {
    color: var(--primary);
}

/* Match Event Log Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    background: var(--bg-surface);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Match details inside modal */
.modal-match-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
}

.modal-summary-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
}

.modal-summary-score {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Timeline/Events List */
.timeline-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
    text-transform: uppercase;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-left: 10px;
    border-left: 2px solid var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.timeline-dot.event-goal {
    border-color: var(--success);
    color: var(--success);
}

.timeline-dot.event-yellow {
    border-color: #eab308;
    color: #eab308;
}

.timeline-dot.event-red {
    border-color: var(--danger);
    color: var(--danger);
}

.timeline-dot.event-sub {
    border-color: var(--primary);
    color: var(--primary);
}

.timeline-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.timeline-content {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
}

.timeline-empty {
    text-align: center;
    color: var(--text-dark);
    padding: 24px;
    font-style: italic;
}

/* Staff Console / Lock Screen */
.lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-base);
    background-image: 
        radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.12) 0px, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.3s ease;
}

.lock-container {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow-main);
}

.lock-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lock-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.lock-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: #000000;
    font-size: 20px;
    letter-spacing: 6px;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    outline: none;
    margin-bottom: 16px;
}

.lock-input:focus {
    border-color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0284c7);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-1px);
}

.lock-error {
    color: var(--danger);
    font-size: 13px;
    margin-top: 10px;
    display: none;
}

/* Admin Dashboard layout */
.admin-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 24px;
}

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

.admin-list-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.admin-match-scroller {
    overflow-y: auto;
    flex: 1;
    margin-top: 16px;
}

.admin-match-item {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.admin-match-item:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: var(--text-dark);
}

.admin-match-item.selected {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.08);
}

.admin-match-meta {
    font-size: 11px;
    color: var(--text-muted);
}

.admin-match-teams {
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}

.admin-match-score {
    font-size: 16px;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.04);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Admin Controller Form Elements */
.admin-control-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.admin-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: var(--text-muted);
    font-style: italic;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.status-btn-group {
    display: flex;
    gap: 10px;
}

.status-btn {
    flex: 1;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.status-btn.active-scheduled {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-main);
    border-color: var(--text-muted);
}
.status-btn.active-live {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: var(--success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}
.status-btn.active-finished {
    background: rgba(15, 23, 42, 0.08);
    color: var(--text-main);
    border-color: white;
}

.score-editor-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.score-editor-team {
    text-align: center;
    flex: 1;
    font-weight: 700;
    font-size: 14px;
}

.score-editor-input {
    width: 60px;
    height: 60px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #000000;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    outline: none;
    transition: var(--transition-smooth);
}

.score-editor-input:focus {
    border-color: var(--primary);
}

/* Event Logger Section */
.event-logger-box {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 24px;
}

.event-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 2.5fr 2fr;
    gap: 10px;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .event-row {
        grid-template-columns: 1fr;
    }
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.btn-success:hover {
    box-shadow: 0 0 12px var(--success-glow);
}

.admin-events-list {
    margin-top: 16px;
    max-height: 200px;
    overflow-y: auto;
}

.admin-event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 6px;
    font-size: 12px;
}

.btn-danger-sm {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-weight: 700;
}

.btn-danger-sm:hover {
    text-decoration: underline;
}

/* Settings & Utilities */
.settings-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(244, 63, 94, 0.05);
    border: 1px solid rgba(244, 63, 94, 0.15);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 32px;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #e11d48);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.btn-danger:hover {
    box-shadow: 0 0 15px var(--danger-glow);
}

/* 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 fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
