/* Variables de Diseño */
:root {
    --color-bg-dark: #0a0e27;
    --color-bg-secondary: #1a1f3a;
    --color-neon-blue: #00d4ff;
    --color-neon-green: #00ff88;
    --color-neon-purple: #a855f7;
    --color-accent-pink: #ff006e;
    --color-text-light: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
    --shadow-glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(168, 85, 247, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset y Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-neon-blue);
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-neon-green);
    text-shadow: 0 0 10px var(--color-neon-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-neon-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-neon-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-neon-blue), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-neon-green), transparent);
    bottom: 50px;
    left: 100px;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-neon-purple), transparent);
    top: 300px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-neon-blue), var(--color-neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-neon-blue));
    color: var(--color-bg-dark);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Sección General */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-blue));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Sección de Origen */
.origin-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, rgba(10, 14, 39, 0) 100%);
    position: relative;
}

.origin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.origin-card {
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.origin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: var(--transition);
}

.origin-card:hover::before {
    left: 100%;
}

.origin-card:hover {
    border-color: var(--color-neon-green);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.35);
}

.origin-card h3 {
    color: var(--color-neon-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.origin-card p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-top: 0.5rem;
}

/* Ambient glow decorativo para la sección */
.origin-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(600px 300px at 10% 10%, rgba(0, 255, 136, 0.08), transparent 60%),
                radial-gradient(500px 250px at 90% 20%, rgba(0, 212, 255, 0.07), transparent 60%);
}

/* Ajustes responsivos específicos de la sección Origen */
@media (max-width: 768px) {
    .origin-section {
        padding: 4rem 0;
    }
    .origin-grid {
        gap: 1.25rem;
    }
    .origin-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.2rem;
    }
    .card-icon {
        font-size: 2.4rem;
    }
}

/* Sección de Características */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(26, 31, 58, 0.8);
    color: var(--color-text-light);
    border: 2px solid rgba(0, 212, 255, 0.3);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--color-neon-blue), var(--color-neon-green));
    color: var(--color-bg-dark);
    border-color: var(--color-neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(26, 31, 58, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card.hidden {
    display: none;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-card h3 {
    color: var(--color-neon-purple);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.feature-card:hover {
    border-color: var(--color-neon-purple);
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-5px);
}





/* ============================================
   RESPONSIVE CSS - GALERÍA Y SECCIÓN DE HISTORIA
   ============================================ */

/* ===== ESTILOS BASE (ESCRITORIO) ===== */

/* Galería */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.05) 0%, rgba(10, 14, 39, 0) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-number {
    font-size: 4rem;
    font-weight: bold;
    opacity: 0.3;
    transition: var(--transition);
}

.gallery-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-image::after {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-number {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-item h3 {
    color: var(--color-neon-green);
    margin-top: 1rem;
    font-size: 1.2rem;
}

.gallery-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Sección de Historia */
.story-section {
    padding: 6rem 0;
    background: rgba(26, 31, 58, 0.5);
    border-top: 2px solid rgba(0, 255, 136, 0.2);
    border-bottom: 2px solid rgba(168, 85, 247, 0.2);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

.story-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.urukais-creature {
    position: relative;
    width: 150px;
    height: 150px;
}

.creature-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(1px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.creature-eyes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.creature-eye {
    width: 20px;
    height: 20px;
    background: var(--color-bg-dark);
    border-radius: 50%;
    border: 2px solid var(--color-neon-blue);
    animation: blink 4s ease-in-out infinite;
}

.creature-eye:nth-child(2) {
    animation-delay: 1s;
}

.creature-eye:nth-child(3) {
    animation-delay: 2s;
}

@keyframes blink {
    0%, 100% { transform: scaleY(1); }
    45%, 55% { transform: scaleY(0.1); }
}

.sound-wave {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
    border: 2px solid var(--color-neon-green);
    border-radius: 50%;
    opacity: 0;
    animation: soundWave 2s ease-out infinite;
}

@keyframes soundWave {
    0% {
        opacity: 1;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(1.5);
    }
}

/* ===== TABLET (768px - 1023px) ===== */
@media screen and (max-width: 1023px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .gallery-number {
        font-size: 3rem;
    }

    .gallery-item h3 {
        font-size: 1.1rem;
    }

    .gallery-item p {
        font-size: 0.85rem;
    }

    .story-section {
        padding: 4rem 0;
    }

    .story-content {
        gap: 2.5rem;
    }

    .story-text p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .story-animation {
        height: 300px;
    }

    .urukais-creature {
        width: 120px;
        height: 120px;
    }

    .creature-eye {
        width: 16px;
        height: 16px;
    }

    .sound-wave {
        width: 80px;
        height: 40px;
        bottom: -40px;
    }
}

/* ===== MÓVIL (320px - 767px) ===== */
@media screen and (max-width: 767px) {
    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        max-width: 300px;
        margin: 0 auto;
    }

    .gallery-number {
        font-size: 2.5rem;
    }

    .gallery-item h3 {
        font-size: 1rem;
        text-align: center;
    }

    .gallery-item p {
        font-size: 0.8rem;
        text-align: center;
    }

    .story-section {
        padding: 3rem 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .story-text {
        order: 2;
    }

    .story-animation {
        order: 1;
        height: 250px;
    }

    .story-text p {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: left;
    }

    .urukais-creature {
        width: 100px;
        height: 100px;
    }

    .creature-eye {
        width: 14px;
        height: 14px;
        border-width: 1px;
    }

    .sound-wave {
        width: 60px;
        height: 30px;
        bottom: -30px;
    }
}

/* ===== MÓVIL PEQUEÑO (320px - 480px) ===== */
@media screen and (max-width: 480px) {
    .gallery-section {
        padding: 2rem 0;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .gallery-item {
        max-width: 100%;
    }

    .gallery-number {
        font-size: 2rem;
    }

    .gallery-item h3 {
        font-size: 0.9rem;
    }

    .gallery-item p {
        font-size: 0.75rem;
    }

    .story-section {
        padding: 2rem 0;
    }

    .story-content {
        gap: 1.5rem;
    }

    .story-text p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .story-animation {
        height: 200px;
    }

    .urukais-creature {
        width: 80px;
        height: 80px;
    }

    .creature-eye {
        width: 12px;
        height: 12px;
    }

    .sound-wave {
        width: 50px;
        height: 25px;
        bottom: -25px;
        border-width: 1px;
    }
}








/* Sección de Historia */
.story-section {
    padding: 6rem 0;
    background: rgba(26, 31, 58, 0.5);
    border-top: 2px solid rgba(0, 255, 136, 0.2);
    border-bottom: 2px solid rgba(168, 85, 247, 0.2);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: justify;
}

.story-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.urukais-creature {
    position: relative;
    width: 150px;
    height: 150px;
}

.creature-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(1px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.creature-eyes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.creature-eye {
    width: 20px;
    height: 20px;
    background: var(--color-bg-dark);
    border-radius: 50%;
    border: 2px solid var(--color-neon-blue);
    animation: blink 4s ease-in-out infinite;
}

.creature-eye:nth-child(2) {
    animation-delay: 1s;
}

.creature-eye:nth-child(3) {
    animation-delay: 2s;
}

@keyframes blink {
    0%, 100% { transform: scaleY(1); }
    45%, 55% { transform: scaleY(0.1); }
}

.sound-wave {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
    border: 2px solid var(--color-neon-green);
    border-radius: 50%;
    opacity: 0;
    animation: soundWave 2s ease-out infinite;
}

@keyframes soundWave {
    0% {
        opacity: 1;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(1.5);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-neon-green);
    border-radius: 15px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-neon-green);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--color-neon-blue);
}

.modal-content h3 {
    color: var(--color-neon-green);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Sección de Contacto */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    color: var(--color-neon-green);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--color-text-light);
    font-family: inherit;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-neon-blue), var(--color-neon-green));
    color: var(--color-bg-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.contact-info {
    background: rgba(26, 31, 58, 0.7);
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    color: var(--color-neon-purple);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

/* Footer */
.footer {
    background: var(--color-bg-secondary);
    border-top: 2px solid var(--color-neon-blue);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--color-neon-green);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--color-neon-blue);
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--color-neon-blue);
}

/* Sección de Videos */
.videos-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, rgba(10, 14, 39, 0) 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: rgba(26, 31, 58, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-neon-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    color: var(--color-neon-green);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.video-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}
/* Footer Navigation Styles */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 20px;
    border-top: 2px solid rgba(0, 255, 136, 0.2);
}

.footer-column {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column li strong {
    color: var(--color-neon-green);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.footer-column a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--color-neon-blue);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

/* Footer Content Enhancement */
.footer-content {
    text-align: center;
    padding: 2rem 20px;
}

.footer-content h3 {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-content h3:first-child {
    color: var(--color-neon-green);
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
}

.footer-content h3:last-child {
    color: var(--color-neon-blue);
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

/* Footer General */
.footer {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, rgba(10, 14, 39, 0.8) 100%);
    border-top: 2px solid var(--color-neon-blue);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-neon-green) 25%, 
        var(--color-neon-blue) 50%, 
        var(--color-neon-purple) 75%, 
        transparent);
    opacity: 0.5;
}

/* Responsive Footer Navigation */
@media (max-width: 768px) {
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 15px;
        margin: 1.5rem auto;
    }
    
    .footer-column li {
        margin-bottom: 0.6rem;
    }
    
    .footer-content {
        padding: 1.5rem 15px;
    }
    
    .footer-content h3 {
        font-size: 0.9rem;
    }
}
.sound-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sound-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ca6f19, #da2e03);
}

.sound-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sound-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.sound-link:hover::after {
    left: 100%;
}
@media (max-width: 480px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 10px;
        margin: 1rem auto;
    }
    
    .footer-column li strong {
        font-size: 0.85rem;
    }
    
    .footer-column a {
        font-size: 0.85rem;
    }
    
    .footer-content h3 {
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background-color: var(--color-bg-secondary);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .origin-grid,
    .features-grid,
    .gallery-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .orb-1, .orb-2, .orb-3 {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .navbar-logo {
        font-size: 1rem;
    }

    .contact-form,
    .contact-info {
        max-width: 100%;
    }
}
