/* =============================================
   NexGameHub - Page Support / Soutenir
   ============================================= */

/* ===== BOUTON NAV ANIMÉ ===== */
.nav-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: #fff !important;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-support-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-support-btn:hover::before {
    left: 100%;
}

.nav-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.5);
}

.nav-support-btn .heart-icon {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

/* ===== PAGE SUPPORT ===== */
.support-page {
    min-height: 100vh;
    padding-top: 80px;
}

/* Hero Section */
.support-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    animation: rotate-bg 20s linear infinite;
}

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

.support-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.support-hero-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

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

.support-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #9333ea, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary, #cbd5e1);
    line-height: 1.6;
}

/* Container */
.support-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.support-section-title {
    font-size: 32px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary, #fff);
}

.support-section-title i {
    color: var(--primary, #9333ea);
}

.support-section-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary, #cbd5e1);
}

/* Story Section */
.story-card {
    background: var(--bg-card, #141938);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #9333ea;
}

.story-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-primary, #fff);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: #9333ea;
    opacity: 0.5;
    font-family: Georgia, serif;
}

/* Costs Section */
.costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.cost-card {
    background: var(--bg-card, #141938);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2);
}

.cost-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #9333ea;
}

.cost-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary, #fff);
}

.cost-desc {
    font-size: 14px;
    color: var(--text-muted, #94a3b8);
}

/* Benefits Section */
.benefits-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card, #141938);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary, #fff);
}

.benefit-content p {
    font-size: 15px;
    color: var(--text-muted, #94a3b8);
    line-height: 1.6;
}

/* Ko-fi Section */
.kofi-section {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kofi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.kofi-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.kofi-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.kofi-big-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #9333ea;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.kofi-big-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.kofi-big-button i {
    font-size: 28px;
    animation: steam 2s ease-in-out infinite;
}

@keyframes steam {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-5deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.kofi-note {
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Supporters Section */
.supporters-section {
    text-align: center;
}

.supporters-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.supporter-badge {
    background: var(--bg-card, #141938);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary, #fff);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.supporter-badge:hover {
    border-color: #9333ea;
    transform: scale(1.05);
}

.supporter-badge.gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #000;
}

.supporter-badge.silver {
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: #000;
}

.supporter-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #9333ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.supporter-placeholder {
    color: var(--text-muted, #94a3b8);
    font-style: italic;
    padding: 30px;
}

/* Footer Note */
.support-footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted, #94a3b8);
    font-size: 16px;
}

.support-footer i {
    color: #ec4899;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .support-hero-title {
        font-size: 32px;
    }
    
    .support-hero-icon {
        font-size: 60px;
    }
    
    .support-section-title {
        font-size: 24px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .kofi-section {
        padding: 40px 20px;
    }
    
    .kofi-big-button {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}
