:root {
    --primary: #13317c;
    --secondary: #185975;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Celebration Overlay */
.celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.celebration-content {
    text-align: center;
    color: white;
    animation: bounceIn 0.5s ease-out;
}

.celebration-emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: pulse 1s infinite;
}

.celebration-status {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.celebration-player {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.celebration-detail {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.celebration-detail strong {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    display: inline;
    margin: 0 0.25rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.celebration-countdown {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .celebration-emoji {
        font-size: 3rem;
    }
    .celebration-status {
        font-size: 1.75rem;
        letter-spacing: 0.1em;
    }
    .celebration-player {
        font-size: 1.25rem;
    }
    .celebration-detail {
        font-size: 1rem;
    }
    .celebration-detail strong {
        font-size: 2rem;
    }
    .celebration-countdown {
        font-size: 0.8rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

/* Header */
/* Buttons */
.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #7e22ce;
    transform: translateY(-1px);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-light {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-light:hover {
    background: var(--bg-secondary);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* Cards */
.card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.card-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.card-body {
    padding: var(--spacing-lg);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.form-control {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Grid */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Utilities */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-xl);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.empty-state-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Auction Card */
.auction-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s;
}

.auction-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.auction-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.auction-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.auction-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.auction-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Player List */
.player-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.player-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.player-info {
    flex: 1;
}

.player-name {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.player-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    pointer-events: none;
    align-items: center;
}

.toast {
    background: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    width: 350px;
    animation: slideIn 0.3s ease-out;
    pointer-events: auto;
    word-wrap: break-word;
    box-sizing: border-box;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast.info {
    border-left: 4px solid var(--info);
}

.toast-message {
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Auth Form */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: var(--spacing-lg);
}

.auth-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
}

.auth-card h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.auth-link {
    text-align: center;
    margin-top: var(--spacing-lg);
    color: var(--text-secondary);
}

.auth-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Alert */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: var(--spacing-md);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .auction-card-header {
        flex-direction: column;
    }
    
    .auction-stats {
        flex-wrap: wrap;
    }
}

/* Page Headers - Unified Design */
.page-header {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 1rem 2.5rem;
    margin: -2rem -2rem 2rem -2rem;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 0.9375rem;
    opacity: 0.9;
    font-weight: 400;
}

.header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.header-actions .btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
}

.header-actions .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* User Info Badge */
.user-info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.btn-logout {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Live Badge */
.live-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-left: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Header */
@media (max-width: 968px) {
    .page-header {
        padding: 1.5rem 1.25rem;
        margin: -1.5rem -1rem 1.5rem -1rem;
    }
    
    .header-left {
        gap: 0.875rem;
    }
    
    .header-icon {
        font-size: 2rem;
    }
    
    .header-content h1 {
        font-size: 1.5rem;
    }
    
    .header-subtitle {
        font-size: 0.8125rem;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 1.25rem 1rem;
    }
    
    .page-header-top {
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .page-header-top > div:first-child {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .header-content {
        flex: 0 1 auto;
        min-width: 0;
        order: 1;
    }
    
    .header-icon {
        order: 2;
        font-size: 1.75rem;
        flex-shrink: 0;
        overflow: visible;
        width: 48px !important;
        height: 48px !important;
    }
    
    .header-icon svg {
        width: 48px !important;
        height: 48px !important;
        transform: scale(1) !important;
    }
    
    .header-actions {
        width: 100%;
        order: 3;
        justify-content: space-between;
    }
    
    .header-content h1 {
        font-size: 1.375rem;
    }
    
    .header-subtitle {
        font-size: 0.8125rem;
    }
    
    .user-info {
        flex: 1;
    }
    
    .btn-logout {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1rem;
    }
    
    .header-icon {
        font-size: 1.5rem;
    }
    
    .header-content h1 {
        font-size: 1.25rem;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .user-name {
        font-size: 0.8125rem;
    }
}

/* Auction Components - Common Styles */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.5), 0 0 40px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.7), 0 0 60px rgba(16, 185, 129, 0.5);
        transform: scale(1.02);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Control Grid Layout */
.control-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auction-row {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
}

/* Auction Panel */
.auction-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out 0.1s both;
}

/* Remaining Players Panel */
.remaining-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: fit-content;
    animation: fadeInUp 0.5s ease-out;
}

.remaining-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.remaining-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.sort-select {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.sort-select:hover {
    border-color: #14b8a6;
    background: #ffffff;
}

.sort-select:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* Players List */
.players-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.players-list::-webkit-scrollbar {
    width: 6px;
}

.players-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.players-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.players-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.player-item {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.player-item:hover {
    transform: translateX(4px);
    border-color: #14b8a6;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15);
}

.player-item-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.player-item-role {
    color: #64748b;
    font-weight: 600;
}

.player-item-price {
    font-weight: 700;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    text-align: right;
}

/* Teams Panel */
.teams-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: fit-content;
}

@media (hover: hover) {
    .teams-panel {
        animation: fadeInUp 0.5s ease-out;
    }
}

.panel-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Team Cards */
.teams-grid,
.teams-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.team-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: none;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    contain: layout style paint;
}

@media (hover: hover) {
    .team-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 0.4s ease-out both;
    }
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0f766e, #14b8a6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Team card borders - uniform grey */
.team-card[data-team-index] { border: 2px solid #cbd5e1; }

@media (hover: hover) {
    .team-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(15, 118, 110, 0.12);
        border-color: #c7d2fe;
    }
    
    .team-card:hover::before {
        transform: scaleX(1);
    }
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid #f1f5f9;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.team-name::before {
    content: '🏏';
    font-size: 1.125rem;
}

.team-badge {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    font-size: 0.8125rem;
}

.team-stat {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.625rem 0.375rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

@media (hover: hover) {
    .team-stat {
        transition: all 0.2s ease;
    }
    
    .team-stat:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(15, 118, 110, 0.08);
    }
}

.team-stat:nth-child(1) {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.team-stat:nth-child(1) .team-stat-value {
    color: #dc2626;
}

.team-stat:nth-child(2) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.team-stat:nth-child(2) .team-stat-value {
    color: #16a34a;
}

.team-stat:nth-child(3) {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.team-stat:nth-child(3) .team-stat-value {
    color: #2563eb;
}

.team-stat-value {
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.team-stat-label {
    color: #64748b;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Stat Cards */
.stat-grid {
    display: grid;
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(15, 118, 110, 0.1);
    border-color: #14b8a6;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bidding Badge */
.bidding-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.625rem;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5), 0 0 40px rgba(16, 185, 129, 0.3);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.bidding-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

/* Team Modal */
.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 1rem;
}

.team-modal.active {
    display: flex;
}

.team-modal-content {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.team-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.team-modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.team-modal-close {
    background: #f1f5f9;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.team-modal-close:hover {
    background: #e2e8f0;
}

.team-modal-grid {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-height: 550px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.team-modal-grid::-webkit-scrollbar {
    width: 6px;
}

.team-modal-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.team-modal-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.team-modal-grid::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.team-modal-card {
    background: #f8fafc;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.team-modal-card:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.team-modal-card.selected {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.1));
    border: 2px solid #0f766e;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}

.team-modal-card-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #1e293b;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.team-modal-card.selected .team-modal-card-name {
    color: #0f766e;
}

.team-modal-card-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team-modal-card-budget {
    font-size: 0.875rem;
    color: #0f766e;
    font-weight: 700;
    text-align: right;
    min-width: 80px;
}

.team-modal-card-players {
    font-size: 0.75rem;
    color: #0f766e;
    font-weight: 700;
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #5eead4;
    box-shadow: 0 2px 4px rgba(15, 118, 110, 0.1);
}

.team-modal-card.selected .team-modal-card-players {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    border-color: #0d9488;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
}

/* Team Stat Colors */
.team-stat:nth-child(1) {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.team-stat:nth-child(1) .team-stat-value {
    color: #dc2626;
}

.team-stat:nth-child(2) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.team-stat:nth-child(2) .team-stat-value {
    color: #16a34a;
}

.team-stat:nth-child(3) {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.team-stat:nth-child(3) .team-stat-value {
    color: #2563eb;
}

.team-stat-value {
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.team-stat-label {
    color: #64748b;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Showcase */
.mobile-showcase {
    display: none;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
}

.mobile-teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-team-card {
    background: #f8fafc;
    padding: 0.875rem;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.mobile-team-card:hover {
    background: #f1f5f9;
}

.mobile-team-card.active {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid #0f766e;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}

.mobile-team-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.mobile-team-card.active .mobile-team-name {
    color: #0f766e;
}

.mobile-team-budget {
    font-size: 0.8125rem;
    color: #64748b;
}

/* Current Bid Card / Player Showcase */
.current-bid-card,
.player-showcase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
}

.current-bid-card::before,
.player-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f766e, #14b8a6, #ec4899, #f59e0b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    animation: shimmer 3s infinite linear;
    background-size: 200% 100%;
}

@media (hover: hover) {
    .current-bid-card,
    .player-showcase {
        animation: scaleIn 0.5s ease-out;
    }
}

.current-bid-card {
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 10px 40px rgba(15, 118, 110, 0.15), 0 0 0 1px rgba(15, 118, 110, 0.1);
}

/* Player/Bid Text Styles */
.player-name,
.player-name-big {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

@media (hover: hover) {
    .player-name,
    .player-name-big {
        background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.bid-amount,
.bid-amount-big {
    font-size: 4rem;
    font-weight: 800;
    color: #0f766e;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (hover: hover) {
    .bid-amount,
    .bid-amount-big {
        background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: scaleIn 0.6s ease-out 0.2s both;
    }
}

.bid-amount-big {
    margin: var(--spacing-lg) 0;
}

.player-name-big {
    margin-bottom: var(--spacing-sm);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.bid-amount.updated {
    animation: pulse 0.5s ease-out;
}

/* Teams Container */
.teams-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    contain: layout style paint;
    will-change: auto;
}

/* Team Statistics Panel */
.panel-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid #f1f5f9;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.team-name::before {
    content: '🏏';
    font-size: 1.125rem;
}

.team-badge {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    font-size: 0.8125rem;
}

.team-stat {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.625rem 0.375rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: none;
}

@media (hover: hover) {
    .team-stat {
        transition: all 0.2s ease;
    }
    
    .team-stat:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(15, 118, 110, 0.08);
    }
}

/* Squad Section */
.squad-section {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    border-top: 2px solid #e2e8f0;
}

.squad-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.squad-title::before {
    content: '👥';
    font-size: 1rem;
}

.squad-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.squad-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    padding: 0.5rem 0.625rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
}

.squad-player:hover {
    border-color: #c7d2fe;
    transform: translateX(2px);
}

.squad-player-name {
    color: #1e293b;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.squad-player-price {
    font-weight: 700;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.625rem;
    white-space: nowrap;
}

/* Squad player with remove button (control.php only) */
.squad-player.has-remove {
    padding-right: 2rem;
}

.squad-player-remove {
    position: absolute;
    right: 0.375rem;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.squad-player-remove:hover {
    background: #fecaca;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2rem 0;
    color: #64748b;
}

.empty-state-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.empty-state-text {
    margin-bottom: 1rem;
}

/* Player Item Role/Price */
.player-item-role {
    color: #64748b;
    font-weight: 600;
}

.player-item-price {
    font-weight: 700;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    text-align: right;
}

/* Auction Panel */
.auction-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out 0.1s both;
}

/* Stats Grid Responsive */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

/* Responsive */
@media (max-width: 968px) {
    .auction-row {
        display: flex;
        flex-direction: column;
    }
    
    .control-grid {
        display: flex;
        flex-direction: column;
    }
    
    .teams-container {
        display: block;
    }
    
    .teams-panel {
        padding: 1rem;
    }
    
    .team-card {
        margin-bottom: 0.75rem;
        padding: 0.875rem;
    }
    
    .player-showcase,
    .current-bid-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .current-bid-card {
        padding: 1.5rem 1rem;
    }
    
    .player-name-big,
    .player-name {
        font-size: 1.5rem;
    }
    
    .bid-amount-big,
    .bid-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.875rem 0.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .current-bid-card {
        padding: 1.25rem 0.875rem;
        border-radius: 16px;
    }
    
    .player-name-big,
    .player-name {
        font-size: 1.25rem;
    }
    
    .bid-amount-big,
    .bid-amount {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 0.75rem 0.375rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

/* Empty State Components */
.empty-players-state {
    text-align: center;
    padding: 2rem 0;
    color: #64748b;
}

.empty-players-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Utility Classes */
.flex-centered {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.grid-bid-controls {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.width-full {
    width: 100%;
}

.margin-bottom-md {
    margin-bottom: 1rem;
}

.margin-top-md {
    margin-top: 1rem;
}

/* Footer Promo Section */
.footer-promo {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.footer-promo-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-promo-text {
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
    transition: all 0.3s ease;
}

.footer-promo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4);
}

.footer-promo-link:active {
    transform: translateY(0);
}

.footer-promo-arrow {
    font-size: 1.25rem;
}

.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

/* Player Role/Info Typography */
.player-role-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.bid-status-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.current-team-display {
    font-size: 1.375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.no-bid-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
}
