/* 
* TrakenTD Website Styles
* Dark theme with purple and cyan accents
* Mobile-first responsive design
*/

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#loading-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(123, 97, 255, 0.3);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-primary);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

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

/* Variables */
:root {
    --bg-primary: #050510;
    --bg-secondary: #0a0a18;
    --bg-card: #12121f;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --accent-primary: #8a4fff;
    --accent-secondary: #00ffd1;
    --accent-tertiary: #ff3c78;
    --glow-primary: rgba(138, 79, 255, 0.6);
    --glow-secondary: rgba(0, 255, 209, 0.6);
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --border-radius: 10px;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: radial-gradient(ellipse at bottom, var(--bg-secondary) 0%, var(--bg-primary) 80%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-attachment: fixed;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Particle & Light Effects */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.4;
}

.light-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(123, 97, 255, 0.1), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--glow-primary);
    animation: titlePulse 3s infinite alternate;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
    border-radius: 2px;
    animation: gradientFlow 3s infinite linear;
}

@keyframes titlePulse {
    0% {
        text-shadow: 0 0 5px var(--glow-primary);
    }
    100% {
        text-shadow: 0 0 15px var(--glow-primary), 0 0 30px var(--glow-secondary);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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: 0.5s;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 0 15px var(--glow-primary);
}

.btn-primary:hover {
    background-color: #6a52e5;
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--glow-primary);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-live {
    background-color: #9146FF;
    color: white;
}

.btn-live:hover {
    background-color: #a366ff;
}

.btn-discord {
    background-color: #5865F2;
    color: white;
}

.btn-discord:hover {
    background-color: #7289da;
}

.btn-github {
    background-color: #333;
    color: white;
}

.btn-github:hover {
    background-color: #444;
}

.btn-twitch {
    background-color: #9146FF;
    color: white;
}

.btn-paypal {
    background-color: #0079C1;
    color: white;
}

.btn-submit {
    background: linear-gradient(90deg, var(--accent-primary), #9146FF);
    color: white;
    width: 100%;
}

.btn-calendar {
    background-color: var(--accent-secondary);
    color: #000;
}

.btn-copy {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-copy:hover {
    color: var(--text-primary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(6, 6, 8, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(123, 97, 255, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    margin-top: 3rem;
}

.badge-carousel {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: all var(--transition);
    transform: scale(0.9);
}

.badge.active {
    opacity: 1;
    transform: scale(1);
}

.badge-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.3);
}

.badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: rgba(11, 11, 13, 0.7);
}

.about-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image {
    flex: 0 0 40%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glitch Effect para reemplazar la foto de perfil */
.glitch-container {
    width: 220px;
    height: 220px;
    position: relative;
    background-color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.5);
}

.glitch-text {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 0 var(--accent-tertiary), 
                -2px -2px 0 var(--accent-secondary);
    animation: glitchText 2s infinite alternate-reverse;
}

.glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--accent-primary),
        var(--accent-primary) 10px,
        var(--accent-tertiary) 10px,
        var(--accent-tertiary) 20px
    );
    opacity: 0.3;
    mix-blend-mode: overlay;
    animation: glitchEffect 3s infinite;
}

@keyframes glitchText {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes glitchEffect {
    0% {
        background-position: 0 0;
        filter: hue-rotate(0deg);
    }
    25% {
        background-position: 10px 10px;
    }
    50% {
        background-position: -10px 20px;
        filter: hue-rotate(90deg);
    }
    75% {
        background-position: 20px -10px;
    }
    100% {
        background-position: 0 0;
        filter: hue-rotate(0deg);
    }
}

.about-content {
    flex: 0 0 60%;
    padding: 2rem;
}

.about-name {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.about-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Schedule Section */
.schedule {
    padding: 6rem 0;
}

.schedule-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.schedule-info {
    flex: 1;
    min-width: 280px;
}

.schedule-days h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.schedule-days p {
    font-size: 1.2rem;
    font-weight: 600;
}

.schedule-timezone {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.schedule-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Clips Gallery Section */
.clips {
    padding: 6rem 0;
    background-color: rgba(11, 11, 13, 0.7);
}

.clips-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.clips-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.clip-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.clip-item:hover {
    transform: translateY(-10px);
}

.clip-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.clip-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.clip-item:hover .clip-thumbnail img {
    transform: scale(1.05);
}

.clip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.clip-overlay i {
    font-size: 3rem;
    color: white;
}

.clip-item:hover .clip-overlay {
    opacity: 1;
}

.clip-title {
    padding: 1rem;
    font-size: 1.1rem;
}

/* Hacking Projects Section */
.hacking {
    padding: 6rem 0;
}

.project-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-logo {
    flex: 0 0 30%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.project-content {
    flex: 0 0 70%;
    padding: 2rem;
}

.project-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.project-text {
    margin-bottom: 2rem;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Study Section */
.study {
    padding: 6rem 0;
    background-color: rgba(11, 11, 13, 0.7);
}

.study-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.study-logo {
    flex: 0 0 30%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.study-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.study-content {
    flex: 0 0 70%;
    padding: 2rem;
}

.study-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.study-text {
    margin-bottom: 2rem;
}

/* EVE Online Section */
.eve {
    padding: 6rem 0;
}

.eve-banner {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
}

.eve-character {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eve-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.eve-logo {
    flex: 0 0 30%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eve-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.eve-content {
    flex: 0 0 70%;
    padding: 2rem;
}

.eve-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0079C1;
}

.eve-text {
    margin-bottom: 2rem;
}

.eve-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Support Section */
.support {
    padding: 6rem 0;
    background-color: rgba(11, 11, 13, 0.7);
}

.support-text {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.support-card:hover {
    transform: translateY(-10px);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-icon i {
    color: var(--accent-primary);
}

.support-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-description {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.support-goal {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.goal-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.goal-progress {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 5px;
}

.goal-stats {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.goal-current {
    color: var(--accent-primary);
}

.goal-target {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.contact-info {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--accent-primary);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.honeypot {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-legal {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.privacy-link {
    color: var(--text-secondary);
    text-decoration: underline;
    margin-left: 1rem;
}

.privacy-link:hover {
    color: var(--text-primary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
}

#clipPlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-card, .project-card, .study-card, .eve-card {
        flex-direction: column;
    }
    
    .about-image, .project-logo, .study-logo, .eve-logo {
        flex: 0 0 100%;
        padding: 2rem 2rem 0;
    }
    
    .about-content, .project-content, .study-content, .eve-content {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .header .btn-live {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .badge-carousel {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .badge {
        opacity: 1;
        transform: scale(1);
    }
    
    .about-buttons, .project-links {
        flex-direction: column;
    }
    
    .schedule-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .eve-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .stat {
        flex-direction: row;
        gap: 0.5rem;
    }
}

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Scroll Animations */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Glow Effects */
.btn-twitch {
    background-color: #6441a5;
    color: white;
    box-shadow: 0 0 15px rgba(100, 65, 165, 0.6);
}

.btn-twitch:hover {
    background-color: #7d5bbe;
    box-shadow: 0 0 25px rgba(100, 65, 165, 0.8);
    transform: translateY(-3px);
}

.btn-youtube {
    background-color: #ff0000;
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.btn-youtube:hover {
    background-color: #ff3333;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
    transform: translateY(-3px);
}

.btn-streamlabs {
    background-color: #80f5d2;
    color: #111;
    box-shadow: 0 0 15px rgba(128, 245, 210, 0.6);
}

.btn-streamlabs:hover {
    background-color: #9df8e0;
    box-shadow: 0 0 25px rgba(128, 245, 210, 0.8);
    transform: translateY(-3px);
}

/* Estilos para el botón de Kick */
.btn-kick {
    background-color: #53fc18;
    color: #000000;
    border: none;
}

.btn-kick:hover {
    box-shadow: 0 0 15px 5px rgba(83, 252, 24, 0.5);
    transform: translateY(-3px);
}

/* Videos Destacados Section */
.videos-destacados {
    padding: 4rem 0;
    background-color: rgba(11, 11, 13, 0.7);
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.video-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .videos-container {
        grid-template-columns: 1fr;
    }
}

/* Lazy Loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-load.loaded {
    opacity: 1;
}