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

:root {
    --primary-purple: #8b5cf6;
    --secondary-purple: #a855f7;
    --light-purple: #c084fc;
    --dark-purple: #7c3aed;
    --purple-glow: rgba(139, 92, 246, 0.5);
    --purple-light-glow: rgba(192, 132, 252, 0.3);
}

/* Pantalla de Carga */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-shadow: 0 0 30px var(--purple-glow);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.loader-spinner {
    margin: 30px 0;
}

.spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 5px solid rgba(139, 92, 246, 0.1);
    border-left: 5px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animaciones del Loader */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoGlow {
    0% { 
        text-shadow: 0 0 20px var(--purple-glow);
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 40px var(--purple-glow), 0 0 60px var(--purple-glow);
        transform: scale(1.05);
    }
}

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

/* Ocultar contenido mientras carga */
body.loading {
    overflow: hidden;
}

body.loading .navbar,
body.loading .hero,
body.loading .about,
body.loading .games,
body.loading .streamers,
body.loading .cta,
body.loading .donations,
body.loading .footer {
    display: none;
}

/* Responsive para loader */
@media (max-width: 768px) {
    .loader-logo h1 {
        font-size: 4rem;
    }
    
    .spinner {
        width: 70px;
        height: 70px;
        border-width: 4px;
    }
}

@media (max-width: 480px) {
    .loader-logo h1 {
        font-size: 3rem;
    }
    
    .spinner {
        width: 60px;
        height: 60px;
        border-width: 4px;
    }
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-purple);
    text-shadow: 0 0 20px var(--purple-glow);
    transition: all 0.3s ease;
}

.logo h1:hover {
    color: var(--light-purple);
    text-shadow: 0 0 25px rgba(192, 132, 252, 0.8);
}

.logo h1:active {
    color: var(--light-purple);
    text-shadow: 0 0 30px rgba(192, 132, 252, 1);
    transform: scale(1.05);
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: var(--light-purple);
    background: var(--purple-light-glow);
}

.discord-nav-btn {
    background: #5865f2 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
}

.discord-nav-btn:hover {
    background: #4752c4 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, var(--purple-light-glow), rgba(88, 101, 242, 0.1)),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(139,92,246,0.3)"/></svg>');
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    z-index: -1;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.logo-hero .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 10px;
    text-shadow: 
        0 0 20px var(--purple-glow),
        0 0 40px var(--purple-light-glow),
        0 0 60px rgba(139, 92, 246, 0.1);
    animation: glowGlitch 6s ease-in-out infinite;
    position: relative;
}

.logo-hero .logo-text::before,
.logo-hero .logo-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.logo-hero .logo-text::before {
    color: #ff00ff;
    animation: glitchBefore 6s ease-in-out infinite;
}

.logo-hero .logo-text::after {
    color: #00ffff;
    animation: glitchAfter 6s ease-in-out infinite;
}

@keyframes glowGlitch {
    0%, 40% { 
        text-shadow: 0 0 20px var(--purple-glow);
        transform: translate(0);
    }
    45%, 55% {
        text-shadow: 
            0 0 30px rgba(139, 92, 246, 0.8), 
            0 0 40px var(--purple-light-glow);
        transform: translate(0);
    }
    60%, 65% {
        text-shadow: 
            2px 0 #ff00ff, 
            -2px 0 #00ffff,
            0 0 20px var(--purple-glow);
        transform: translate(1px, -1px);
    }
    70%, 75% {
        text-shadow: 
            -1px 0 #ff00ff, 
            1px 0 #00ffff,
            0 0 30px rgba(139, 92, 246, 0.8);
        transform: translate(-1px, 1px);
    }
    80%, 100% { 
        text-shadow: 0 0 20px var(--purple-glow);
        transform: translate(0);
    }
}

@keyframes glitchBefore {
    0%, 60% { 
        opacity: 0; 
        transform: translate(0);
    }
    61%, 65% { 
        opacity: 1; 
        transform: translate(-2px, 0);
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    }
    66%, 70% { 
        opacity: 1; 
        transform: translate(2px, 0);
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    }
    71%, 100% { 
        opacity: 0; 
        transform: translate(0);
    }
}

@keyframes glitchAfter {
    0%, 60% { 
        opacity: 0; 
        transform: translate(0);
    }
    63%, 67% { 
        opacity: 1; 
        transform: translate(3px, 0);
        clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
    }
    68%, 72% { 
        opacity: 1; 
        transform: translate(-3px, 0);
        clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
    }
    73%, 100% { 
        opacity: 0; 
        transform: translate(0);
    }
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--purple-glow); }
    to { text-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 0 40px var(--purple-light-glow); }
}

.logo-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #888;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.discord-btn {
    background: transparent;
    color: #5865f2;
    border: 2px solid #5865f2;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.discord-btn:hover {
    background: #5865f2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.3);
}

.discord-btn.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.learn-more-btn {
    background: transparent;
    color: var(--light-purple);
    border: 2px solid var(--primary-purple);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.learn-more-btn:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--purple-light-glow);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-purple);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Secciones */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-purple);
    font-family: 'Orbitron', monospace;
}

.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.features {
    display: grid;
    gap: 30px;
}

.feature {
    padding: 20px;
    background: var(--purple-light-glow);
    border-radius: 10px;
    border-left: 4px solid var(--primary-purple);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
}

.feature i {
    font-size: 2rem;
    color: var(--light-purple);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature p {
    color: #ccc;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.gaming-card {
    background: linear-gradient(45deg, var(--purple-light-glow), rgba(88, 101, 242, 0.1));
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--purple-light-glow);
    transition: all 0.3s ease;
}

.gaming-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px var(--purple-light-glow);
}

.gaming-icon {
    font-size: 4rem;
    color: var(--light-purple);
    margin-bottom: 20px;
}

.gaming-card h3 {
    font-size: 1.5rem;
    color: #fff;
}

/* Juegos */
.games {
    padding: 100px 0;
    background: #0a0a0a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--purple-light-glow);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--purple-light-glow);
    border-color: var(--primary-purple);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-purple);
}

.game-card p {
    color: #ccc;
    font-size: 1rem;
}

/* Streamers */
.streamers {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.streamers-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 20px;
    overflow: hidden;
}

.streamer-card-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

/* Card rectangular más ancha - ARREGLADA */
.streamer-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px;
    gap: 25px;
    min-height: 200px;
    box-sizing: border-box;
}

.streamer-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px var(--purple-light-glow);
}

.streamer-card.live {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.streamer-image {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.streamer-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-purple);
    transition: all 0.3s ease;
    object-fit: cover;
}

.streamer-card:hover .streamer-image img {
    border-color: var(--light-purple);
    transform: scale(1.05);
}

.streamer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    min-height: 120px;
}
.live-indicator, .offline-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-indicator {
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    color: white;
    animation: pulse-live 2s infinite;
}

.offline-indicator {
    background: rgba(102, 102, 102, 0.9);
    color: #ccc;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 68, 68, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 68, 68, 0.8); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
*/

.streamer-info h3 {
    font-size: 1.8rem;
    color: var(--light-purple);
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.streamer-info h3 {
    font-size: 1.8rem;
    color: var(--light-purple);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.streamer-description {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.streamer-game {
    color: #00ff88;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.streamer-viewers, .streamer-followers {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
}

.streamer-platforms {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Botones circulares para redes sociales */
.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn.twitch {
    background: linear-gradient(135deg, #9146ff, #a970ff);
    color: white;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
}

.social-btn.twitch:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.5);
    border-color: #9146ff;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #fd5949, #d6249f, #285AEB);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 89, 73, 0.3);
}

.social-btn.instagram:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(253, 89, 73, 0.5);
    border-color: #fd5949;
}

.stream-preview {
    flex: 0 0 280px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 160px;
}

.stream-preview.offline {
    cursor: default;
}

.stream-preview.offline:hover {
    transform: none;
}

.stream-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stream-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.stream-preview:hover .stream-thumbnail img {
    transform: scale(1.02);
}

/* Eliminar hover del contenedor para evitar deformación */

.offline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.offline-overlay i {
    font-size: 2rem;
    color: #666;
    margin-bottom: 10px;
}

.offline-overlay span {
    color: #888;
    font-size: 1rem;
}

.streamers-cta {
    text-align: center;
    padding: 40px;
    background: var(--purple-light-glow);
    border-radius: 20px;
    border: 2px solid var(--primary-purple);
}

.streamers-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 25px;
}

.join-streamers-btn {
    background: transparent;
    color: var(--light-purple);
    border: 2px solid var(--primary-purple);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.join-streamers-btn:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--purple-light-glow);
}

/* Call to Action */
.cta {
    padding: 100px 0;
    background: linear-gradient(45deg, var(--purple-light-glow), rgba(88, 101, 242, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    font-family: 'Orbitron', monospace;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Página de Donaciones */
.donations-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #2a1a2a 100%);
    overflow: hidden;
}

.donations-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 8s ease-in-out infinite;
}

.donations-hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.donations-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 20px;
    text-shadow: 
        0 0 20px var(--purple-glow),
        0 0 40px var(--purple-light-glow);
    animation: glowGlitch 6s ease-in-out infinite;
    position: relative;
}

.donations-title::before,
.donations-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.donations-title::before {
    color: #ff00ff;
    animation: glitchBefore 6s ease-in-out infinite;
}

.donations-title::after {
    color: #00ffff;
    animation: glitchAfter 6s ease-in-out infinite;
}

.donations-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.back-button {
    margin-bottom: 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.back-btn:active {
    background: var(--light-purple);
    color: white;
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(192, 132, 252, 0.4);
}

.donations-main {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #2f1a2f 100%);
}

.donation-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.info-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Reproductor de Música Flotante */
/* ================================
   REPRODUCTOR DE MÚSICA CIRCULAR
   ================================ */

.music-player {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Vista compacta circular */
.music-player.compact {
    width: 70px;
    height: 70px;
}

.player-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    position: relative;
    cursor: pointer;
}

.spotify-circle-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1ed760, #1db954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 8px 25px rgba(30, 215, 96, 0.4),
        0 0 0 2px rgba(30, 215, 96, 0.2);
    position: relative;
    z-index: 3;
    animation: spotifyFloat 3s ease-in-out infinite;
}

@keyframes spotifyFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 8px 25px rgba(30, 215, 96, 0.4);
    }
    50% { 
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 35px rgba(30, 215, 96, 0.6);
    }
}

.spotify-circle-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1fdf64, #1ed760);
    box-shadow: 
        0 12px 40px rgba(30, 215, 96, 0.6),
        0 0 0 3px rgba(30, 215, 96, 0.4);
    animation: none;
}

.spotify-circle-btn:active {
    transform: scale(0.95);
}

/* Anillos de pulso */
.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(30, 215, 96, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    z-index: 1;
}

.pulse-ring-2 {
    animation-delay: 1s;
    border-color: rgba(30, 215, 96, 0.4);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Indicador de música (ecualizador) */
.music-indicator {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
    z-index: 2;
}

.eq-bar {
    width: 3px;
    background: #1ed760;
    border-radius: 2px;
    animation: eq 1.5s ease-in-out infinite;
}

.eq-bar:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.eq-bar:nth-child(2) {
    height: 12px;
    animation-delay: 0.3s;
}

.eq-bar:nth-child(3) {
    height: 6px;
    animation-delay: 0.6s;
}

@keyframes eq {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

/* Vista expandida */
.player-expanded {
    display: none;
    width: 390px;
    background: linear-gradient(135deg, 
        rgba(16, 16, 20, 0.97), 
        rgba(30, 20, 35, 0.97),
        rgba(40, 20, 50, 0.97));
    border: 2px solid rgba(139, 92, 246, 0.6);
    border-radius: 25px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(139, 92, 246, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    animation: expandIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes expandIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.player-expanded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.8), 
        rgba(30, 215, 96, 0.8), 
        transparent);
    animation: topGlow 2s linear infinite;
}

@keyframes topGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.music-player:not(.compact) {
    width: 390px;
    height: auto;
    bottom: 20px;
    right: 20px;
}

.music-player:not(.compact) .player-circle {
    display: none;
}

.music-player:not(.compact) .player-expanded {
    display: block;
}

.player-header {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2), 
        rgba(30, 215, 96, 0.1),
        rgba(139, 92, 246, 0.15));
    padding: 20px 25px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    cursor: grab;
}

.player-header:active {
    cursor: grabbing;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.player-header i {
    color: #1ed760;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 12px rgba(30, 215, 96, 0.6));
    animation: spotifyGlow 3s ease-in-out infinite;
}

@keyframes spotifyGlow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(30, 215, 96, 0.6)); }
    50% { filter: drop-shadow(0 0 20px rgba(30, 215, 96, 0.8)); }
}

.player-toggle {
    background: rgba(220, 38, 127, 0.2);
    border: 2px solid rgba(220, 38, 127, 0.4);
    color: #dc267f;
    padding: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.player-toggle:hover {
    background: rgba(220, 38, 127, 0.4);
    color: white;
    transform: scale(1.1) rotate(90deg);
    border-color: #dc267f;
}

.player-content {
    padding: 20px;
}

.spotify-embed {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.spotify-embed iframe {
    border-radius: 15px;
    border: none;
    background: #000;
}

.spotify-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.spotify-btn {
    background: linear-gradient(135deg, #1ed760, #1fdf64);
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(30, 215, 96, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.spotify-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 215, 96, 0.6);
    background: linear-gradient(135deg, #1fdf64, #1ed760);
}

/* Responsive Design para Music Player */
@media (max-width: 768px) {
    .music-player {
        bottom: 15px;
        right: 15px;
    }

    .music-player.compact {
        width: 60px;
        height: 60px;
    }

    .player-circle {
        width: 60px;
        height: 60px;
    }

    .spotify-circle-btn {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .pulse-ring,
    .pulse-ring-2 {
        width: 60px;
        height: 60px;
    }

    .music-player:not(.compact) {
        width: 320px;
        right: 10px;
        bottom: 10px;
    }

    .music-player:not(.compact) .player-expanded {
        width: 320px;
    }

    .eq-bar:nth-child(1) { height: 6px; }
    .eq-bar:nth-child(2) { height: 10px; }
    .eq-bar:nth-child(3) { height: 4px; }
}

/* Audio oculto para autoplay */
#background-audio {
    display: none;
}

/* Notificaciones de música */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.music-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-notification i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Estilo para botón playing */
.spotify-circle-btn.playing {
    animation: playingBounce 1.5s ease-in-out infinite !important;
    box-shadow: 0 12px 40px rgba(30, 215, 96, 0.8) !important;
}

@keyframes playingBounce {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(30, 215, 96, 0.6);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 45px rgba(30, 215, 96, 0.9);
    }
}

/* Indicador de música activo */
.music-indicator.active .eq-bar {
    animation-play-state: running;
    opacity: 1;
    background: linear-gradient(45deg, #1ed760, #1fdf64);
}

.music-indicator:not(.active) .eq-bar {
    animation-play-state: paused;
    opacity: 0.3;
}

.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    cursor: grab;
}

.player-header:active {
    cursor: grabbing;
}

.player-header i {
    color: var(--accent-color);
    margin-right: 10px;
}

.player-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
}

.player-toggle {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.player-toggle:hover {
    background: rgba(139, 92, 246, 0.2);
}

.player-content {
    padding: 20px;
}

.track-info {
    text-align: center;
    margin-bottom: 20px;
}

.track-title {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.track-artist {
    color: #ccc;
    font-size: 0.8rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.player-expanded .control-btn {
    background: rgba(139, 92, 246, 0.2);
    border: none;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.player-expanded .control-btn:hover {
    background: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.player-expanded .play-pause {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    font-size: 1.1rem;
}

.player-expanded .play-pause:hover {
    background: linear-gradient(45deg, var(--secondary-purple), var(--light-purple));
}

.progress-container {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--light-purple));
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #ccc;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-icon {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.volume-value {
    color: #ccc;
    font-size: 0.7rem;
    min-width: 30px;
}

/* Animaciones del reproductor */
@keyframes playerSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.music-player {
    animation: playerSlideIn 0.5s ease-out;
}

/* Responsive */
@media (max-width: 480px) {
    .music-player.compact {
        width: 220px;
        height: 60px;
    }
    
    .player-compact {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .player-compact .control-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .track-title-compact {
        font-size: 0.7rem;
    }
    
    .music-player:not(.compact) {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
    
    .music-player:not(.compact) .player-expanded {
        width: 100%;
    }
}

/* Navegación activa */
.nav-menu a.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-color));
    border-radius: 20px;
    padding: 8px 16px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.nav-menu a.active:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    transform: translateY(-3px);
}

/* Sección de Donaciones */
.donations {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1a2a 100%);
}

.donations-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.donation-preview {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    transition: all 0.3s ease;
}

.donation-preview:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
}

.donation-preview i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    animation: heartbeat 2s ease-in-out infinite;
}

.donation-preview h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.donation-preview p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.donations-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.donations-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    background: linear-gradient(45deg, var(--secondary-purple), var(--light-purple));
}

.donations-btn i {
    font-size: 1.2rem;
}

.donations-content {
    text-align: center;
}

.donations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.donation-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.donation-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px var(--purple-light-glow);
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--light-purple));
}

.donation-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.donation-card.paypal .donation-icon {
    color: #0070ba;
}

.donation-card.mercadopago .donation-icon {
    color: #00b8d4;
}

.donation-card h3 {
    font-size: 1.8rem;
    color: var(--light-purple);
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.donation-card p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1rem;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.amount-btn {
    padding: 12px 20px;
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--light-purple);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.amount-btn:hover,
.amount-btn.selected {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.05);
}

.amount-btn.custom {
    border-color: #00ff88;
    color: #00ff88;
}

.amount-btn.custom:hover,
.amount-btn.custom.selected {
    background: #00ff88;
    color: #000;
}

.custom-amount {
    margin: 25px 0;
    text-align: left;
}

.custom-amount label {
    display: block;
    color: #ccc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.amount-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 15px;
    color: var(--accent-color);
    font-weight: bold;
    z-index: 1;
}

.amount-input {
    width: 100%;
    padding: 12px 15px 12px 35px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.amount-input:focus {
    border-color: var(--accent-color);
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.amount-input::placeholder {
    color: #888;
}

/* Eliminar flechitas de los inputs de número */
.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.paypal-btn {
    background: linear-gradient(45deg, #0070ba, #00a0e6);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 112, 186, 0.3);
}

.paypal-btn:hover {
    background: linear-gradient(45deg, #005a9b, #0085c7);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 112, 186, 0.5);
}

.mercadopago-btn {
    background: linear-gradient(45deg, #00b8d4, #26c6da);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 184, 212, 0.3);
}

.mercadopago-btn:hover {
    background: linear-gradient(45deg, #0097a7, #00acc1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 184, 212, 0.5);
}

/* Modal de Donación */
.donation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.donation-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.modal-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Orbitron', monospace;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color);
}

.donation-info {
    margin-bottom: 20px;
}

.donation-info p {
    color: #ccc;
    margin: 10px 0;
    font-size: 1.1rem;
}

.donation-info span {
    color: var(--accent-color);
    font-weight: 600;
}

.donation-status {
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.donation-status p {
    color: #ccc;
    font-size: 1rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.donation-message {
    margin-top: 60px;
}

.thank-you-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-card i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    animation: heartbeat 2s ease-in-out infinite;
}

.thank-you-card h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.thank-you-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-purple);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--purple-light-glow);
    color: var(--light-purple);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-3px);
}

/* Ícono personalizado de Kick */
.kick-icon {
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(45deg, #53fc18, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(83, 252, 24, 0.5);
}

.social-links a:hover .kick-icon {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--purple-light-glow);
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive para la nueva card de streamer */
    .streamer-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        max-width: 100%;
        margin: 0 10px;
        padding: 20px;
        min-height: auto;
    }
    
    .streamer-image {
        flex: none;
    }
    
    .streamer-image img {
        width: 100px;
        height: 100px;
    }
    
    .streamer-info {
        flex: none;
        text-align: center;
        padding: 0;
    }
    
    .stream-preview {
        flex: none;
        height: 180px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .streamer-info h3 {
        font-size: 1.5rem;
    }
    
    .streamer-platforms {
        justify-content: center;
    }
    
    .stream-preview {
        height: 180px;
    }
    
    .streamers-cta {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Responsive donaciones */
    .donations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .donation-card {
        padding: 30px 20px;
    }
    
    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .amount-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .streamer-card {
        padding: 20px 15px;
        margin: 0 5px;
        flex-direction: column;
    }
    
    .stream-preview {
        height: 150px;
    }
    
    .streamer-info h3 {
        font-size: 1.3rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .streamer-image img {
        width: 80px;
        height: 80px;
    }
    
    /* Responsive donaciones móvil */
    .donations {
        padding: 60px 0;
    }
    
    .donations-grid {
        gap: 20px;
        margin: 30px 0;
    }
    
    .donation-card {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .donation-icon {
        font-size: 2.5rem;
    }
    
    .donation-card h3 {
        font-size: 1.5rem;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .amount-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .donate-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .thank-you-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .thank-you-card h4 {
        font-size: 1.3rem;
    }
}

/* Animaciones adicionales */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efectos de hover adicionales */
.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

/* Responsive adicional para nuevas secciones */
@media (max-width: 768px) {
    /* Donaciones - Móvil */
    .donations {
        padding: 60px 0;
    }

    .donation-preview {
        padding: 40px 20px;
        margin: 0 20px;
    }

    .donation-preview i {
        font-size: 3rem;
    }

    .donation-preview h3 {
        font-size: 1.5rem;
    }

    .donations-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    /* Página de Donaciones - Móvil */
    .donations-hero {
        min-height: 50vh;
        padding: 40px 0;
    }

    .donations-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .donations-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .donations-main {
        padding: 60px 0;
    }

    .donation-info-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .info-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .info-card i {
        font-size: 2.5rem;
    }
}

/* === MODAL FORMULARIO STREAMER === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.streamer-form-modal {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .streamer-form-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--purple-light-glow);
}

.modal-header h3 {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: var(--primary-purple);
}

.modal-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.modal-close:hover {
    color: var(--primary-purple);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-purple);
    width: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group small {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid var(--purple-light-glow);
}

.btn-cancel,
.btn-submit,
.btn-success {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: #fff;
    border: 2px solid transparent;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--secondary-purple), var(--light-purple));
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: 2px solid transparent;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* Mensaje de éxito */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-message p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .streamer-form-modal {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit,
    .btn-success {
        width: 100%;
        justify-content: center;
    }
}

/* === BADGE PRÓXIMAMENTE === */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 25px;
    padding: 12px 20px;
    margin-top: 20px;
    color: #ffc107;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.coming-soon-badge i {
    font-size: 1rem;
    animation: rotate 2s linear infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
        border-color: rgba(255, 193, 7, 0.4);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
        border-color: rgba(255, 193, 7, 0.7);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}