.hero-bg {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
    position: relative;
    overflow: hidden;
}

.gamemode-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.gamemode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(136, 120, 204, 0.2);
    border-color: rgba(136, 120, 204, 0.3);
}

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

.gamemode-card.featured:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
}

.gamemode-header {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.2), rgba(168, 85, 247, 0.2));
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(136, 120, 204, 0.2);
}

.gamemode-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8878cc, #a855f7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.3);
}

.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: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.gamemode-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.gamemode-features h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
}

.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: #e2e8f0;
    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;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 0.25rem;
    font-family: 'Fredoka', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.gamemode-card.upcoming .gamemode-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #a855f7;
    border: 1px solid rgba(136, 120, 204, 0.3);
}

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

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

.eta-badge {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(136, 120, 204, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #a855f7;
    font-weight: 600;
    display: inline-block;
}

.feature-card {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background: rgba(136, 120, 204, 0.1);
    border-color: rgba(136, 120, 204, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8878cc, #a855f7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.feature-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

@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;
    }
    
    .feature-card {
        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;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

.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);
    }
}

.gradient-text {
    background: linear-gradient(45deg, #8878cc, #a855f7, #8878cc);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
