/* ============================================
   Variables y Reset
   ============================================ */
:root {
    --primary-green: #00ff00;
    --dark-green: #00cc00;
    --accent-green: #39ff14;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --text-white: #ffffff;
    --text-gray: #888888;
    --text-light-gray: #cccccc;
    --gradient-green: linear-gradient(135deg, #00ff00, #00cc00);
    --glow-green: 0 0 20px rgba(0, 255, 0, 0.5);
    --glow-green-intense: 0 0 40px rgba(0, 255, 0, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Navegación
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

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

.logo {
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
}

.logo-text .green {
    color: var(--primary-green);
    text-shadow: var(--glow-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        var(--bg-dark);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
    z-index: 2;
    text-align: center;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light-gray);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.title-hero {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-green);
    text-shadow: var(--glow-green-intense);
    letter-spacing: 10px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 255, 0, 0.8), 0 0 80px rgba(0, 255, 0, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--bg-dark);
    box-shadow: var(--glow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-green-intense);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-3px);
}

/* Omnitrix Animation */
.hero-image {
    position: absolute;
    right: 5%;
    top: 46%;
    transform: translateY(-50%);
    z-index: 1;
}

.omnitrix-container {
    width: 378px;
    height: 378px;
    position: relative;
}

.omnitrix {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Símbolo del Omnitrix */
.omnitrix-symbol {
    width: 151px;
    height: 151px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-green);
    box-shadow: var(--glow-green-intense), inset 0 0 20px rgba(0, 255, 0, 0.3);
    animation: omnitrix-pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.omnitrix-hourglass {
    width: 125px;
    height: 125px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.9));
}

@keyframes omnitrix-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.6), inset 0 0 20px rgba(0, 255, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(0, 255, 0, 0.9), inset 0 0 30px rgba(0, 255, 0, 0.5);
    }
}

/* ============================================
   Secciones Generales
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ============================================
   Quiz Section
   ============================================ */
.quiz-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
    position: relative;
}

.quiz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
}

.quiz-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.alien-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.alien-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.alien-icon:nth-child(2) { animation-delay: 0.5s; }
.alien-icon:nth-child(3) { animation-delay: 1s; }
.alien-icon:nth-child(4) { animation-delay: 1.5s; }

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

.quiz-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.quiz-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient-green);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.question-counter {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
}

.question-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.question-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-align: center;
}

.answers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.answer-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text-white);
}

.answer-option:hover {
    border-color: var(--primary-green);
    background: rgba(0, 255, 0, 0.1);
}

.answer-option.selected {
    border-color: var(--primary-green);
    background: rgba(0, 255, 0, 0.2);
    box-shadow: var(--glow-green);
}

/* Quiz Navigation Buttons */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: 2px solid rgba(0, 255, 0, 0.5);
    background: transparent;
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: rgba(0, 255, 0, 0.2);
    border-color: var(--primary-green);
    box-shadow: var(--glow-green);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-prev {
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-prev:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.btn-next {
    background: rgba(0, 255, 0, 0.1);
}

/* Quiz Result */
.result-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.result-alien-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out infinite;
}

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

.result-card h3 {
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.result-alien-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    text-shadow: var(--glow-green);
    margin: 1rem 0;
}

.result-series {
    font-size: 1rem;
    color: var(--text-light-gray);
    font-style: italic;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.result-description {
    color: var(--text-light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.trait {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-green);
}

/* More Quizzes */
.more-quizzes {
    margin-top: 4rem;
    text-align: center;
}

.more-quizzes h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.quiz-mini-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quiz-mini-card:hover {
    border-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.quiz-mini-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quiz-mini-card h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.coming-soon {
    color: var(--primary-green);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Series Section
   ============================================ */
.series-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

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

.filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 255, 0, 0.1);
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.series-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.series-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.series-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.series-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    padding: 1rem;
}

.series-placeholder span {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.3;
}

.series-placeholder small {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.series-placeholder.classic {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #00ff00;
}

.series-placeholder.alien-force {
    background: linear-gradient(135deg, #0d2137, #1a3a5c);
    color: #00ccff;
}

.series-placeholder.ultimate {
    background: linear-gradient(135deg, #1a0a2e, #2d1b4e);
    color: #ff00ff;
}

.series-placeholder.omniverse {
    background: linear-gradient(135deg, #0a2e1a, #1b4e2d);
    color: #39ff14;
}

.series-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.series-card:hover .series-overlay {
    opacity: 1;
}

.btn-watch {
    background: var(--gradient-green);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-watch:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-green);
}

.series-info {
    padding: 1.5rem;
}

.series-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.series-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.episodes {
    color: var(--primary-green);
}

.year {
    color: var(--text-gray);
}

.series-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.series-episodes-preview h4 {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.season-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.season-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    gap: 0.5rem;
}

.season-number {
    color: var(--primary-green);
    font-weight: 700;
}

.season-eps {
    color: var(--text-gray);
}

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

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 0, 0.3);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

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

.modal-header {
    background: rgba(0, 255, 0, 0.1);
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-green);
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.season-selector {
    margin-bottom: 2rem;
}

.season-selector label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.season-selector select {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-dark);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.episode-item:hover {
    background: rgba(0, 255, 0, 0.1);
    border-left: 3px solid var(--primary-green);
}

.episode-number {
    background: var(--primary-green);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 50px;
    text-align: center;
}

.episode-title {
    flex: 1;
    color: var(--text-white);
}

.episode-duration {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.episode-play {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.episode-soon {
    color: var(--text-gray);
    font-size: 0.75rem;
    font-style: italic;
}

.episode-item.has-video {
    border-left: 3px solid var(--primary-green);
}

.episode-item.has-video:hover {
    background: rgba(0, 255, 0, 0.15);
}

/* ============================================
   Video Player Modal
   ============================================ */
.player-modal {
    background: rgba(0, 0, 0, 0.95);
}

.player-content {
    background: var(--bg-card);
    border-radius: 15px;
    max-width: 900px;
    width: 95%;
    border: 1px solid rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.player-header {
    background: rgba(0, 255, 0, 0.1);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.player-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-green);
    font-size: 1rem;
    margin: 0;
    padding-right: 2rem;
}

.player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Overlay para Smartlink */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-overlay.hidden {
    display: none;
}

.play-button-overlay {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-dark);
    box-shadow: var(--glow-green-intense);
    transition: transform 0.3s ease;
}

.video-overlay:hover .play-button-overlay {
    transform: scale(1.1);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-darker);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

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

.footer-links a {
    color: var(--text-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-author {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.footer-author p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-author a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-author a:hover {
    text-shadow: var(--glow-green);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 70px;
        min-height: auto;
        justify-content: flex-start;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        order: 1;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .omnitrix-container {
        width: 200px;
        height: 200px;
    }

    .omnitrix-symbol {
        width: 100px;
        height: 100px;
    }

    .omnitrix-hourglass {
        width: 80px;
        height: 80px;
    }

    .title-hero {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .title-line {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .quiz-card {
        padding: 2rem;
    }

    .series-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .title-hero {
        font-size: 2.5rem;
    }

    .quiz-mini-card {
        padding: 1.5rem;
    }

    .result-alien-name {
        font-size: 2rem;
    }
}

/* ============================================
   Scrollbar Personalizado
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

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

.adblock-modal.active {
    display: flex;
}

.adblock-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid #ff4444;
    box-shadow: 0 0 50px rgba(255, 68, 68, 0.3);
}

.adblock-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.adblock-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff4444;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.adblock-content > p {
    color: var(--text-light-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.adblock-steps {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.adblock-steps h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.adblock-steps ol {
    color: var(--text-gray);
    padding-left: 1.5rem;
    line-height: 1.8;
}

.adblock-steps li {
    margin-bottom: 0.5rem;
}

.adblock-note {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ============================================
   Ad Banner Container
   ============================================ */
.ad-banner-container {
    margin-top: 2rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    max-width: 728px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .adblock-content {
        padding: 2rem;
    }
    
    .adblock-content h2 {
        font-size: 1.4rem;
    }
    
    .adblock-icon {
        font-size: 3rem;
    }
}
