/**
 * Live Poker Tournaments - Styles
 */

/* ==================== Hero Section ==================== */
.hero {
    background: #2d2f43;
    color: white;
    padding: 30px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 L1200,0 L1200,100 Q600,20 0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Hero festival meta styles */
.hero .festival-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    color: white;
}

.hero .festival-meta.total-guaranteed {
    margin-top: 25px;
    align-items: center;
    gap: 10px;
}

.hero .festival-meta .gtd-label {
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero .festival-meta .gtd-value {
    font-size: 1.4em;
    font-weight: 700;
}

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

/* ==================== Stats Bar ==================== */
.stats-bar {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 15px;
    padding: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* ==================== Filters Section ==================== */
.filters-section {
    background: #ececec;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
    transition: padding 0.3s ease;
}

.filters-section.collapsed {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.filters-section.collapsed .filters-content {
    display: none;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filters-section.collapsed .filters-header {
    margin-bottom: 0;
}

.filter-toggle {
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: transform 0.3s ease, background 0.2s ease;
    border-radius: 4px;
}

.filter-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.filters-section.collapsed .filter-toggle {
    transform: rotate(-90deg);
}

.filters-content {
    display: block;
}

.filters-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.filters-header h2 {
    margin: 0;
    color: var(--secondary-color);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.filter-group input[type="text"],
.filter-group input[type="date"],
.filter-group select {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
    color: var(--text-color);
}

.filter-group input[type="text"]:focus,
.filter-group input[type="date"]:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-group input[type="text"]:hover,
.filter-group input[type="date"]:hover,
.filter-group select:hover {
    border-color: var(--primary-color);
}

.filter-group input[type="text"]::placeholder {
    color: #999;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: auto;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: rgba(102, 126, 234, 0.05);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    font-weight: 500;
    color: var(--text-color);
}

/* ==================== Results Section ==================== */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.results-header h2 {
    color: var(--secondary-color);
    margin: 0;
}

.results-actions {
    display: flex;
    gap: 1rem;
}

/* ==================== Festival Cards ==================== */
.festivals-grid {
    display: grid;
    gap: 1.5rem;
}

.festival-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.festival-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.festival-header-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.festival-header-link:hover {
    text-decoration: none;
}

.festival-header {
    padding: 1.5rem;
    background: #f5f5f5;
    border-left: 4px solid var(--primary-color);
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.festival-header:hover {
    background: #ebebeb;
}

.festival-header-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.festival-title-section h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.festival-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.festival-tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.circuit-tag {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-tag {
    background: #f56565;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.festival-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.festival-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.festival-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.festival-toggle {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.festival-toggle:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-delete-festival {
    background: transparent;
    border: none;
    color: #dc2626;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.6;
    min-width: auto;
}

.btn-delete-festival:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #991b1b;
    opacity: 1;
    transform: scale(1.1);
}

/* Edit Tournament Button */
.btn-edit-tournament {
    background: transparent;
    border: none;
    color: #2563eb;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.7;
}

.btn-edit-tournament:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #1e40af;
    opacity: 1;
    transform: scale(1.1);
}

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

.card-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.festival-body {
    padding: 1.5rem;
    display: none;
}

.festival-body.expanded {
    display: block;
}

.festival-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.festival-info-card {
    padding: 1rem;
    background: #e7e9eb;
    border-radius: var(--border-radius);
}

.festival-info-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.festival-info-card p {
    margin: 0.25rem 0;
    color: var(--text-color);
}

/* ==================== Status Badges ==================== */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.status-ongoing {
    background: #fff3e0;
    color: #f57c00;
}

.status-completed {
    background: #e8f5e9;
    color: #388e3c;
}

.status-cancelled {
    background: #ffebee;
    color: #c62828;
}

/* ==================== Tournaments Section ==================== */
.tournaments-section {
    margin-top: 1.5rem;
}

.tournaments-section h4 {
    margin: 0 0 1rem 0;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tournament-schedule-heading {
    text-align: center;
    margin: 0 0 1.5rem 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Festival info card headings */
.festival-info-card h2 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.tournament-count {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

/* Tournament Toggles */
.tournament-toggles-container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tournament-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: var(--text-color);
}

.tournament-toggle input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.tournament-toggle:hover {
    color: var(--primary-color);
}

/* ==================== Tournaments Table (Desktop) ==================== */
.tournaments-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
}

.tournaments-table th,
.tournaments-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.tournaments-table th {
    background: #667eea;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.tournaments-table tr:hover {
    background: var(--bg-light);
}

.tournament-event-number {
    font-weight: 600;
    color: var(--primary-color);
}

.tournament-buy-in {
    font-weight: 600;
}

.tournament-game-type {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tournament-date {
    white-space: nowrap;
}

/* ==================== Tournament Cards (Mobile) ==================== */
.tournament-cards {
    display: none; /* Hidden on desktop, shown on mobile */
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.tournament-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tournament-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tournament-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.tournament-card .card-title {
    flex: 1;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
    line-height: 1.4;
}

.tournament-card .card-event-number {
    background: #667eea;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
}

.tournament-card .card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
}

.tournament-card .card-field {
    display: flex;
    flex-direction: column;
}

.tournament-card .card-field-label {
    font-size: 11px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    font-weight: 600;
}

.tournament-card .card-field-value {
    font-size: 14px;
    color: #2d3748;
    font-weight: 500;
}

.tournament-card .card-field-value.highlight {
    color: #667eea;
    font-weight: 600;
}

/* ==================== Loading States ==================== */
.loading-state,
.error-state,
.empty-state {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.spinner {
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* ==================== Modal ==================== */
.modal-large {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

/* ==================== Pagination ==================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s;
}

.pagination button:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-info {
    padding: 0.5rem 1rem;
    color: var(--text-light);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1200px) {
    /* Hide table, show cards on tablets and mobile */
    .tournaments-table {
        display: none !important;
    }

    .tournament-cards {
        display: flex !important;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .stats-bar {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .festival-header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Tournament cards - single column on mobile */
    .tournament-card .card-body {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

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

    .stat-value {
        font-size: 2rem;
    }

    .pagination {
        gap: 0.25rem;
    }

    .pagination button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ==================== Online Satellites Section ==================== */
.online-satellites-section {
    margin-top: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.online-satellites-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    transition: background 0.2s;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.online-satellites-section .section-header:hover {
    background: #f0f2f5;
}

.online-satellites-section .section-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-satellites-section .satellite-count {
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
}

.online-satellites-section .toggle-icon {
    color: var(--text-light);
    font-size: 1rem;
    transition: transform 0.3s;
}

.online-satellites-section .toggle-icon.open {
    transform: rotate(180deg);
}

.online-satellites-content {
    padding: 20px;
}

.online-satellites-content .section-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Satellites Table (Desktop) */
.satellites-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.satellites-table th,
.satellites-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.satellites-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.satellites-table tbody tr:hover {
    background: var(--bg-light);
}

.satellites-table tbody tr:last-child td {
    border-bottom: none;
}

.satellite-site-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.satellite-site-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.satellite-name-cell {
    color: var(--secondary-color);
    font-weight: 500;
    max-width: 350px;
}

.satellite-date-cell {
    white-space: nowrap;
    color: var(--text-color);
}

.satellite-date-cell .satellite-time {
    color: var(--text-light);
    font-size: 0.85rem;
}

.satellite-buyin-cell {
    font-weight: 600;
    color: #16a34a;
    white-space: nowrap;
}

.satellite-prize-cell {
    white-space: nowrap;
    color: var(--text-color);
}

.satellite-prize-cell .gtd-badge,
.satellite-card .gtd-badge {
    background: #fbbf24;
    color: #78350f;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 5px;
}

/* Satellites Cards (Mobile) - Hidden on desktop */
.satellites-cards {
    display: none;
}

.satellite-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.satellite-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.satellite-card-site {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.satellite-card-name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.satellite-card-details {
    margin-bottom: 12px;
}

.satellite-card-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.satellite-card-row:last-child {
    border-bottom: none;
}

.satellite-card-label {
    color: var(--text-light);
    font-weight: 500;
}

.satellite-card-buyin {
    color: #16a34a;
    font-weight: 600;
}

/* Mobile: Show cards, hide table */
@media (max-width: 768px) {
    .online-satellites-section .section-header {
        padding: 15px;
    }

    .online-satellites-section .section-header h3 {
        font-size: 1.1rem;
    }

    .online-satellites-content {
        padding: 15px;
    }

    .satellites-table {
        display: none;
    }

    .satellites-cards {
        display: block;
    }
}

/* ==================== Largest Buy-in Tournaments Section ==================== */
.largest-buyins-section {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.largest-buyins-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.largest-buyins-section .section-header h2 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.buyins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.buyin-box {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.buyin-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.buyin-box h3 {
    margin: 0 0 5px 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.buyin-subtitle {
    margin: 0 0 20px 0;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

.buyin-box h3 + .buyin-list {
    margin-top: 20px;
}

.buyin-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.buyin-list li {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.buyin-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.buyin-list li:first-child {
    padding-top: 0;
}

.buyin-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 4px;
}

.buyin-tournament {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
}

.buyin-festival {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.buyin-festival:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.buyin-list .no-data {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

/* Responsive: Stack on tablet and mobile */
@media (max-width: 992px) {
    .buyins-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .largest-buyins-section {
        margin-top: 40px;
        padding: 30px 0;
    }

    .largest-buyins-section .section-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .buyin-box {
        padding: 20px;
    }

    .buyin-amount {
        font-size: 1.1rem;
    }

    .buyin-tournament {
        font-size: 0.9rem;
    }
}
