* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #13131a;
    --bg-card: #1a1a24;
    --bg-card-hover: #21212e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b85;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gold: #fbbf24;
    --border-color: #2a2a38;
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient-vip: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-sponsor: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-reliable: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

body {
    font-family: 'Lexend', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo-icon {
    font-size: 3rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.highlight {
    background: var(--gradient-vip);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Section */
.section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.badge-vip {
    background: var(--gradient-vip);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.badge-sponsor {
    background: var(--gradient-sponsor);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.badge-reliable {
    background: var(--gradient-reliable);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Sites Grid */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Site Card */
.site-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.site-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-vip);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow);
}

.site-card:hover::before {
    opacity: 1;
}

.site-logo {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--bg-secondary);
    padding: 10px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.site-features {
    list-style: none;
    margin-bottom: 25px;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.site-link {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: var(--gradient-vip);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.site-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.site-link:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .site-card {
        padding: 25px;
    }
    
    .header {
        padding: 40px 20px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .site-card {
        padding: 20px;
    }
    
    .site-logo {
        height: 60px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-card {
    animation: fadeIn 0.5s ease forwards;
}

.site-card:nth-child(1) { animation-delay: 0.1s; }
.site-card:nth-child(2) { animation-delay: 0.2s; }
.site-card:nth-child(3) { animation-delay: 0.3s; }
.site-card:nth-child(4) { animation-delay: 0.4s; }
.site-card:nth-child(5) { animation-delay: 0.5s; }
.site-card:nth-child(6) { animation-delay: 0.6s; }
.site-card:nth-child(7) { animation-delay: 0.7s; }
.site-card:nth-child(8) { animation-delay: 0.8s; }

