/* ========== PRIZES PAGE STYLES ========== */
.prizes-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
}

.prizes-section h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.prize-types {
    margin-bottom: 4rem;
}

.prize-types h2,
.tournaments h2,
.daily-missions h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--light-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.prize-types h2::after,
.tournaments h2::after,
.daily-missions h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.prize-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prize-card {
    background: rgba(15, 14, 23, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

.prize-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.prize-card h3 {
    margin-bottom: 1rem;
    color: var(--light-color);
    font-size: 1.3rem;
}

.prize-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.prize-example {
    background: rgba(0, 206, 201, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 0.9rem;
    border: 1px solid rgba(0, 206, 201, 0.3);
}

.tournaments {
    margin-bottom: 4rem;
}

.tournaments p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray-color);
}

.tournament-structure {
    margin: 2rem auto;
    max-width: 500px;
}

.structure-card {
    background: rgba(253, 121, 168, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(253, 121, 168, 0.3);
    text-align: center;
}

.structure-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.structure-card h3 {
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.structure-card ul {
    text-align: left;
    list-style-type: none;
}

.structure-card li {
    margin-bottom: 0.8rem;
    color: var(--gray-color);
    position: relative;
    padding-left: 1.5rem;
}

.structure-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.leaderboard {
    margin-top: 3rem;
    overflow-x: auto;
}

.leaderboard table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem auto;
    background: rgba(15, 14, 23, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.leaderboard th,
.leaderboard td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard th {
    background: rgba(108, 92, 231, 0.2);
    color: var(--light-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.leaderboard tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.leaderboard tr:hover {
    background: rgba(108, 92, 231, 0.1);
}

.leaderboard td:first-child {
    font-weight: 600;
}

.leaderboard td:last-child {
    color: var(--accent-color);
    font-weight: 600;
}

.daily-missions p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray-color);
}

.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: rgba(15, 14, 23, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: var(--light-color);
}

.mission-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.reward {
    background: rgba(108, 92, 231, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(108, 92, 231, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .prizes-section {
        padding: 6rem 0 3rem;
    }
    
    .prizes-section h1 {
        font-size: 2.2rem;
    }
    
    .prize-types h2,
    .tournaments h2,
    .daily-missions h2 {
        font-size: 1.8rem;
    }
    
    .prize-cards,
    .missions-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard th,
    .leaderboard td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .prizes-section h1 {
        font-size: 2rem;
    }
    
    .prize-card,
    .mission-card {
        padding: 1.5rem;
    }
}