﻿.gamemode-card {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.gamemode-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(136, 120, 204, 0.28);
}

.gamemode-card.featured {
    border-width: 1px;
}

.gamemode-card.featured:hover {
    border-color: var(--primary);
}

.gamemode-header {
    background: rgba(136, 120, 204, 0.08);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(136, 120, 204, 0.15);
}

.gamemode-icon-large {
    width: 68px;
    height: 68px;
    background: rgba(136, 120, 204, 0.15);
    border: 1px solid rgba(136, 120, 204, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.gamemode-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gamemode-status.available {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.gamemode-status.beta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.gamemode-status.coming-soon {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.gamemode-content {
    padding: 2rem;
}

.gamemode-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.gamemode-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.gamemode-features {
    margin-bottom: 2rem;
}

.gamemode-features h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.gamemode-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gamemode-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.gamemode-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.gamemode-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.gamemode-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.gamemode-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gamemode-card.upcoming {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.gamemode-card.upcoming .gamemode-icon {
    width: 52px;
    height: 52px;
    background: rgba(136, 120, 204, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-light);
    border: 1px solid rgba(136, 120, 204, 0.2);
}

.gamemode-card.upcoming .gamemode-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gamemode-card.upcoming .gamemode-description {
    margin-bottom: 1.5rem;
}

.eta-badge {
    background: rgba(136, 120, 204, 0.1);
    border: 1px solid rgba(136, 120, 204, 0.2);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .gamemode-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .gamemode-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .gamemode-content {
        padding: 1.5rem;
    }
    
    .gamemode-title {
        font-size: 1.5rem;
    }
    
    .gamemode-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 120px;
    }
    
    .gamemode-card.upcoming {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gamemode-header {
        padding: 1rem;
    }
    
    .gamemode-content {
        padding: 1rem;
    }
    
    .gamemode-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        flex: none;
        min-width: auto;
    }
}

.gamemode-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.gamemode-card:nth-child(1) { animation-delay: 0.1s; }
.gamemode-card:nth-child(2) { animation-delay: 0.2s; }
.gamemode-card:nth-child(3) { animation-delay: 0.3s; }

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

