/* Cursor principal - más específico */
html, body, *:not(a):not(button):not(input):not(textarea):not(select) {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23ff69b4" filter="drop-shadow(1px 1px 2px rgba(0,0,0,0.5))"/><circle cx="12" cy="12" r="6" fill="%23ffb6c1"/></svg>') 12 12, auto;
}

/* MANO personalizada para enlaces - ¡esto es importante! */
a, a *, 
button, button *, 
[onclick], [onclick] *, 
.clickable, .clickable * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M10 6C8.895 6 8 6.895 8 8V16C8 17.105 8.895 18 10 18H14V22C14 23.105 14.895 24 16 24H24C25.105 24 26 23.105 26 22V14C26 12.895 25.105 12 24 12H20V8C20 6.895 19.105 6 18 6H10Z" fill="%23ff69b4" filter="drop-shadow(2px 2px 3px rgba(0,0,0,0.5))"/></svg>') 8 8, pointer !important;
}

/* Inputs */
input, textarea, select, [contenteditable="true"] {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 4V20M8 4H16" stroke="%23ff69b4" stroke-width="2" filter="drop-shadow(1px 1px 1px rgba(0,0,0,0.3))"/></svg>') 12 12, text !important;
}

/* CSS */
.custom-cursor-default {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23ff69b4" filter="drop-shadow(1px 1px 2px rgba(0,0,0,0.5))"/></svg>') 12 12, auto !important;
}

.custom-cursor-pointer {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M10 6C8.895 6 8 6.895 8 8V16C8 17.105 8.895 18 10 18H14V22C14 23.105 14.895 24 16 24H24C25.105 24 26 23.105 26 22V14C26 12.895 25.105 12 24 12H20V8C20 6.895 19.105 6 18 6H10Z" fill="%23ff69b4" filter="drop-shadow(2px 2px 3px rgba(0,0,0,0.5))"/></svg>') 8 8, pointer !important;
}
:root {
    --color-primary: #0D0628;
    --color-secondary: #17074e;
    --color-accent: #C33C93;
    --color-accent-light: #ff21b5;
    --color-light: #f5f5f7;
    --color-dark: #121212;
    --color-text: #FFFFFF;
    --color-text-secondary: #D0D0D0;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --section-spacing: 100px;
    --card-bg: rgba(255, 255, 255, 0.05);
    --twitch-purple: #9146FF;
    --twitch-purple-hover: #772ce8;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

/* MEJORA: Estilos de títulos mejorados y consistentes */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 4.5rem;
    text-align: center;
    background: linear-gradient(45deg, #FF59F8, var(--color-accent), #AC5CFF, #FF59F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: aurora-gradient 8s ease infinite;
    text-shadow: 0 0 20px rgba(195, 60, 147, 0.3);
    margin-bottom: 30px;
}

/* CORRECCIÓN: Problema de centrado en h2 */
h2 {
    font-size: 3.2rem;
    text-align: center;
    margin: 0 auto 60px;
    background: linear-gradient(45deg, var(--color-accent), #FF59F8, #AC5CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    position: relative;
    display: block;
    width: fit-content;
    padding: 0 20px;
    text-shadow: 0 0 15px rgba(195, 60, 147, 0.4);
    font-weight: 900;
    letter-spacing: 0.5px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--color-accent), #FF59F8, #AC5CFF);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    border-radius: 3px;
}

h3 {
    font-size: 2.2rem;
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 700;
}

h4 {
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 12px;
    font-weight: 600;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes aurora-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

p {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Navbar con efecto blur */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(13, 6, 40, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(13, 6, 40, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    background: linear-gradient(45deg, var(--color-accent), #FF59F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--color-accent), #FF59F8);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section mejorada con efecto Aurora */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(195, 60, 147, 0.25), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 89, 248, 0.2), transparent 25%);
    z-index: 0;
}

/* Grid pattern animado */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(195, 60, 147, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(195, 60, 147, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-40px) translateX(-40px); }
}

/* Efecto Aurora mejorado */
.aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.aurora__item {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: linear-gradient(45deg, var(--color-accent), #AC5CFF);
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    filter: blur(60px);
    opacity: 0.2;
    animation: aurora-border 10s ease-in-out infinite, 
               aurora-1 20s ease-in-out infinite alternate;
}

.aurora__item:nth-child(1) {
    top: -20%;
    right: -10%;
    background: linear-gradient(45deg, var(--color-accent), #FF59F8);
    animation: aurora-border 10s ease-in-out infinite, 
               aurora-2 25s ease-in-out infinite alternate;
}

.aurora__item:nth-child(2) {
    bottom: -50%;
    left: -20%;
    background: linear-gradient(45deg, #AC5CFF, #FF59F8);
    animation: aurora-border 10s ease-in-out infinite, 
               aurora-3 30s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, 30px) scale(1.1); }
    50% { transform: translate(10px, 50px) scale(1.2); }
    75% { transform: translate(-20px, 30px) scale(1.1); }
}

@keyframes aurora-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, -10px) scale(1.1); }
    50% { transform: translate(-60px, 20px) scale(1.2); }
    75% { transform: translate(-30px, 40px) scale(1.1); }
}

@keyframes aurora-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(50px, 10px) scale(1.2); }
    75% { transform: translate(20px, 30px) scale(1.1); }
}

@keyframes aurora-border {
    0%, 100% { border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%; }
    25% { border-radius: 47% 39% 39% 37% / 38% 35% 31% 47%; }
    50% { border-radius: 57% 49% 29% 47% / 48% 45% 51% 57%; }
    75% { border-radius: 37% 59% 49% 57% / 58% 35% 61% 47%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Botones */
.btns-hero {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.shimmer-btn {
    position: relative;
    display: inline-block;
    padding: 15px 24px;
    background: linear-gradient(45deg, var(--color-accent), #AC5CFF);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    text-decoration: none;
}

.shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.shimmer-btn:hover::before {
    left: 100%;
}

.shimmer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(195, 60, 147, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: white;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #350a49 0%, #140049 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 auto 60px;
    background: linear-gradient(90deg, #cb11c2 0%, #d125fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: block;
    width: fit-content;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d611c6 0%, #ea25fc 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(106, 17, 203, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e0e0ff;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #b0b0d0;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Colores diferentes para cada tarjeta */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #ffe66d 0%, #fdcb6e 100%);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d3a8 100%);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #ff9a8b 0%, #ff6b6b 100%);
}

/* CORRECCIÓN: Streamers Section - Problemas de centrado */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-header h2 {
    margin: 0 auto;
}

.section-header p {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.streamer-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
}

.streamer-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.streamer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: 0;
}

.streamer-card:hover::before {
    backdrop-filter: blur(0);
    border: 1px solid var(--twitch-purple);
    background: rgba(145, 70, 255, 0.05);
}

.streamer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.streamer-logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.streamer-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--twitch-purple);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.streamer-card:hover .streamer-logo {
    transform: scale(1.1);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.5);
}

.streamer-name {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    text-align: center;
}

.streamer-role {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--twitch-purple);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
}

.follow-btn:hover {
    background: var(--twitch-purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(68, 11, 153, 0.4);
}

.decoration-element {
    position: absolute;
    z-index: 1;
    opacity: 0.3;
}

.decoration-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--twitch-purple), var(--color-accent));
    border-radius: 50%;
    top: -50px;
    right: -50px;
    filter: blur(20px);
}

.decoration-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-accent), var(--twitch-purple));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -30px;
    left: -30px;
    filter: blur(15px);
}

/* Alliances Section */
.alliances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.alliance-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.alliance-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.alliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: 0;
}

.alliance-card:hover::before {
    backdrop-filter: blur(0);
    border: 1px solid var(--color-accent);
    background: rgba(59, 130, 246, 0.05);
}

.alliance-logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.alliance-card:hover .alliance-logo-container {
    transform: scale(1.05);
    background: rgba(59, 130, 246, 0.2);
}

.alliance-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.alliance-card:hover .alliance-logo {
    transform: scale(1.1);
}

.alliance-name {
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    text-align: center;
}

.alliance-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.alliance-link {
    position: relative;
    z-index: 2;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin: 0 auto;
}

.alliance-link:hover {
    color: var(--color-accent-light);
    gap: 12px;
}

/* ART Section */
.art-section {
    text-align: center;
}

.art-section .art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.art-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    text-align: center;
}

.art-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow);
    border-color: var(--color-accent);
}

.art-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

.art-card p {
    text-align: center;
}

/* Podcast Section */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.podcast-episode {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px);
    text-align: center;
}

.podcast-episode.visible {
    opacity: 1;
    transform: translateY(0);
}

.podcast-episode:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.episode-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

.episode-description {
    margin-bottom: 15px;
    text-align: center;
}

.spotify-widget {
    width: 100%;
    height: 152px;
    border-radius: 12px;
    border: none;
}

/* Arc Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(195, 60, 147, 0.2), rgba(172, 92, 255, 0.2));
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 30px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item .dot {
    position: absolute;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(195, 60, 147, 0.2);
}

.timeline-item.left .dot {
    right: -8px;
}

.timeline-item.right .dot {
    left: -8px;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.year {
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    font-size: 1.3rem;
}

.label {
    color: var(--color-text-secondary);
    text-align: center;
}

/* Sección de comentarios del equipo */
.team-comments-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.team-comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-comment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.team-comment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--color-accent);
}

.team-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: center;
    text-align: left;
}

.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--color-accent);
}

.team-user-info {
    flex: 1;
}

.team-username {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--color-text);
}

.team-role {
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 600;
}

.team-comment-content {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: center;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.team-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tag-purple {
    background: rgba(172, 92, 255, 0.2);
    color: #AC5CFF;
}

.tag-blue {
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
}

.tag-green {
    background: rgba(87, 242, 135, 0.2);
    color: #57F287;
}

/* Platform Carousel */
.platforms-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.platform-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(70%);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.platform-logo.visible {
    opacity: 1;
    transform: translateY(0);
}

.platform-logo:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--color-secondary);
    padding: 60px 0 30px;
    margin-top: var(--section-spacing);
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-column {
    text-align: center;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
    color: var(--color-text);
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* Social Icons */
.social-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #e0e0ff;
    font-weight: 500;
}

.social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Colores para redes sociales */
.discord { background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%); }
.twitter { background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%); }
.instagram { background: linear-gradient(135deg, #E1306C 0%, #C13584 100%); }
.twitch { background: linear-gradient(135deg, #9146FF 0%, #772ce8 100%); }
.youtube { background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%); }
.spotify { background: linear-gradient(135deg, #1DB954 0%, #1aa34a 100%); }
.tiktok { 
    background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
    background-size: 200% 200%;
}
.steam { background: linear-gradient(135deg, #000000 0%, #2a475e 100%); }
.rockstar { background: linear-gradient(135deg, #FF0000 0%, #ff4444 100%); }
.whatsapp { background: linear-gradient(135deg, #25D366 0%, #20b858 100%); }

@keyframes tiktokGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.social-icon span {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    pointer-events: none;
}

.social-icon:hover span {
    opacity: 1;
    bottom: -25px;
}

.fab, .fas {
    z-index: 1;
    position: relative;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Indicador de carga de iconos */
.icon-status {
    text-align: center;
    margin-top: 20px;
    color: #b0b0d0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .services h2 {
        font-size: 2rem;
    }
    
    .streamers-grid,
    .alliances-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .streamer-card,
    .alliance-card {
        min-height: 320px;
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .navbar-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 20px;
    }
    
    .nav-links li {
        margin: 0 15px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }

    .btns-hero {
        flex-direction: column;
        align-items: center;
    }

    .timeline::before {
        left: 8px;
        transform: none;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 36px;
    }
    
    .timeline-item.left, .timeline-item.right {
        left: 0;
        text-align: left;
    }
    
    .timeline-item .dot {
        left: 0;
        right: auto;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .social-container {
        padding: 20px;
    }
    
    .social-row {
        gap: 10px;
    }

    .footer-content {
        text-align: center;
    }

    .team-comment-header {
        flex-direction: column;
        text-align: center;
    }
    
    .team-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 10px 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}
/* Contact Section Styles */
    .contact-section {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
        position: relative;
        overflow: hidden;
    }

    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(16, 0, 43, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(114, 6, 230, 0.1) 0%, transparent 50%);
        z-index: 1;
    }

    .contact-section .container {
        position: relative;
        z-index: 2;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-top: 50px;
    }

    .contact-message {
        margin-bottom: 40px;
    }

    .contact-message h3 {
        font-size: 2rem;
        margin-bottom: 15px;
        background: linear-gradient(45deg, var(--color-accent), #FF59F8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .contact-message p {
        font-size: 1.2rem;
        line-height: 1.6;
        color: var(--color-text-secondary);
    }

    .contact-options {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-option {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .contact-option:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(29, 28, 28, 0.3);
        border-color: var(--color-accent);
    }

    .discord-option:hover {
        border-color: #5865F2;
    }

    .option-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .discord-option .option-icon {
        background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
    }

    .social-option .option-icon {
        background: linear-gradient(135deg, var(--color-accent) 0%, #FF59F8 100%);
    }

    .option-content {
        flex: 1;
    }

    .option-content h4 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: var(--color-text);
    }

    .option-content p {
        color: var(--color-text-secondary);
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .contact-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        
    }

    .discord-btn {
        background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
        color: white;
    }

    .discord-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(19, 38, 247, 0.4);
    }

    .social-contact-links {
        display: flex;
        gap: 15px;
    }

    .social-contact-link {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.3rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        color: white;
    }

    .social-contact-link:hover {
        transform: translateY(-3px) scale(1.1);
    }

    .social-contact-link.twitter { background: #1DA1F2; }
    .social-contact-link.instagram { background: linear-gradient(135deg, #E1306C 0%, #C13584 100%); }
    .social-contact-link.twitch { background: #9146FF; }
    .social-contact-link.youtube { background: #FF0000; }

    /* Contact Visual Styles */
    .contact-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px;
    }

    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .floating-element {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        background: rgba(41, 14, 14, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(46, 22, 22, 0.2);
        animation: float 6s ease-in-out infinite;
    }

    .element-1 {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
        background: linear-gradient(135deg, #5865F2, #4752c4);
    }

    .element-2 {
        top: 60%;
        left: 15%;
        animation-delay: 1.5s;
        background: linear-gradient(135deg, var(--color-accent), #FF59F8);
    }

    .element-3 {
        top: 30%;
        right: 10%;
        animation-delay: 3s;
        background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    }

    .element-4 {
        top: 70%;
        right: 15%;
        animation-delay: 4.5s;
        background: linear-gradient(135deg, #E1306C, #C13584);
    }

    .contact-graphic {
        position: relative;
        width: 200px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .central-icon {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--color-accent), #ffffff);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        z-index: 3;
        position: relative;
        animation: pulse-glow 2s ease-in-out infinite alternate;
    }

    .pulse-ring {
        position: absolute;
        border: 2px solid var(--color-accent);
        border-radius: 50%;
        animation: pulse 3s ease-out infinite;
    }

    .ring-1 {
        width: 150px;
        height: 150px;
        animation-delay: 0s;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
        animation-delay: 1s;
    }

    .ring-3 {
        width: 250px;
        height: 250px;
        animation-delay: 2s;
    }

    /* Animations */
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    @keyframes pulse {
        0% {
            transform: scale(0.8);
            opacity: 1;
        }
        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }

    @keyframes pulse-glow {
        0% {
            box-shadow: 0 0 20px rgba(100, 20, 72, 0.4);
        }
        100% {
            box-shadow: 0 0 40px rgba(195, 60, 147, 0.8), 0 0 60px rgba(78, 7, 53, 0.4);
        }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .contact-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .contact-visual {
            height: 300px;
        }

        .contact-option {
            flex-direction: column;
            text-align: center;
        }

        .option-icon {
            align-self: center;
        }
    }

    @media (max-width: 768px) {
        .contact-section {
            padding: 60px 0;
        }

        .contact-message h3 {
            font-size: 1.6rem;
        }

        .contact-message p {
            font-size: 1.1rem;
        }

        .floating-element {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .central-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .contact-option {
            padding: 20px;
        }

        .social-contact-links {
            justify-content: center;
        }

        .floating-elements {
            display: none;
        }
    }