* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #151923 0%, #1a1f2e 100%);
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cards-grid:has(.card:only-child) {
    grid-template-columns: 1fr;
    justify-items: center;
}

.cards-grid:has(.card:only-child) .card {
    max-width: 4000px;
    width: 100%;
}

@supports not (selector(:has(*))) {
    .gamemode-section:last-of-type .cards-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .gamemode-section:last-of-type .cards-grid .card {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid:has(.card:only-child) {
        grid-template-columns: 1fr;
    }
    
    @supports not (selector(:has(*))) {
        .gamemode-section:last-of-type .cards-grid {
            grid-template-columns: 1fr;
        }
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #1e293b;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #334155;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: #4CAF50;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
}

.streamer .card-icon { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}

.tiktok .card-icon { 
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%); 
}

.youtube .card-icon { 
    background: linear-gradient(135deg, #ff0000 0%, #ff5722 100%); 
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
}

.card-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.info-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.info-btn {
    background: #334155;
    border: 1px solid #475569;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-btn:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
    transform: translateY(-1px);
}

.info-btn i {
    font-size: 0.8rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1e293b;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #334155;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f1f5f9;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #ef4444;
}

.modal-body {
    color: #cbd5e1;
}

.modal-body h4 {
    color: #f1f5f9;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.1rem;
}

.modal-body ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-body strong {
    color: #4CAF50;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.benefit-item {
    background: #334155;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #475569;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: #3f4f63;
    border-color: #4CAF50;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.benefit-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.8rem;
    color: #94a3b8;
}

.highlight {
    background: linear-gradient(135deg, #151923 0%, #1a1f2e 100%);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #4CAF50;
    border: 1px solid #4CAF50;
}

.highlight h4 {
    color: #4CAF50 !important;
}

.cta-section {
    background: #1e293b;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.cta-section h2 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.cta-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #FFA726 0%, #FF9800 100%);
}

.cta-btn.secondary:hover {
    box-shadow: 0 8px 20px rgba(255, 167, 38, 0.4);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .info-buttons {
        gap: 0.5rem;
    }

    .info-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

.gamemode-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gamemode-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.gamemode-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gamemode-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.creators-section h3 {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card.influencer {
    background: #1e293b;
    border: 2px solid #334155;
}

.card.influencer:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.3);
}

.card.influencer .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

@media (max-width: 768px) {
    .gamemode-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gamemode-logo {
        width: 60px;
        height: 60px;
    }
    
    .gamemode-header h2 {
        font-size: 2rem;
    }
    
    .gamemode-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}