/* Standings-specific styles */
    .standings-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .standings-nav {
        margin-bottom: 2rem;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        text-align: center;
    }

    .standings-nav h3 {
        color: #FFF600;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .round-links {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .round-links a {
        padding: 0.5rem 1rem;
        background: rgba(255, 246, 0, 0.1);
        border-radius: 6px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .round-links a:hover {
        background: rgba(255, 246, 0, 0.2);
        transform: translateY(-2px);
    }

    .standings-round {
        margin-bottom: 3rem;
        padding: 2rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        border-left: 4px solid #FFF600;
    }

    .round-title {
        color: #FFF600;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .round-date {
        color: #FFA500;
        font-style: italic;
        margin-bottom: 1.5rem;
    }

    .standings-category {
        margin-bottom: 2rem;
    }

    .category-title {
        color: #ffffff;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid rgba(255, 246, 0, 0.3);
    }

    .standings-table {
        display: grid;
        gap: 0.5rem;
    }

    .standings-entry {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        align-items: center;
        transition: background 0.3s ease;
    }

    .standings-entry:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .position {
        font-weight: 700;
        color: #FFF600;
        min-width: 3rem;
    }

    .title {
        font-weight: 600;
        color: #ffffff;
    }

    .votes {
        color: #cccccc;
        font-size: 0.9rem;
        text-align: right;
    }

    .spud-entry {
        background: rgba(255, 246, 0, 0.1);
        border: 2px solid rgba(255, 246, 0, 0.3);
    }

    .spud-entry .title {
        color: #FFF600;
        font-weight: 700;
    }

    .final-winner {
        background: rgba(255, 215, 0, 0.15);
        border: 2px solid rgba(255, 215, 0, 0.4);
    }

    .final-winner .position,
    .final-winner .title {
        color: #FFD700;
    }

    .final-runner-up {
        background: rgba(192, 192, 192, 0.15);
        border: 2px solid rgba(192, 192, 192, 0.4);
    }

    .final-runner-up .position,
    .final-runner-up .title {
        color: #C0C0C0;
        font-weight: 700;
    }

    .elimination-line {
        margin: 2rem 0;
        text-align: center;
    }

    .elimination-line hr {
        border: none;
        height: 2px;
        background: linear-gradient(to right, transparent, #FF6600, transparent);
        margin-bottom: 1rem;
    }

    .elimination-line p {
        color: #FF6600;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .eliminated .standings-entry {
        opacity: 0.6;
        background: rgba(255, 102, 0, 0.1);
    }

    .eliminated .position,
    .eliminated .title {
        color: #FF9966;
    }

    .standings-notes {
        margin-top: 2rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border-left: 4px solid #FFA500;
    }

    .standings-notes p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: #cccccc;
        line-height: 1.5;
    }

    .standings-notes strong {
        color: #FFA500;
    }

    @media (max-width: 768px) {
        .standings-content {
            padding: 1rem;
        }

        .standings-round {
            padding: 1rem;
        }

        .round-links {
            flex-direction: column;
            align-items: center;
        }

        .standings-entry {
            grid-template-columns: 1fr;
            gap: 0.5rem;
            text-align: center;
        }

        .votes {
            text-align: center;
        }

        .round-title {
            font-size: 1.25rem;
        }
    }