@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #d4af37;
            --gold-light: #f4d03f;
            --text-primary: #e8e6e3;
            --text-secondary: #a89f91;
            --blood-red: #8b0000;
        }

        html {
            scroll-behavior: smooth;
            scroll-snap-type: y mandatory;
            overflow-y: scroll;
        }

        body {
            font-family: 'Crimson Text', serif;
            color: var(--text-primary);
            line-height: 1.8;
            overflow-x: hidden;
            background: #000;
        }

        /* Lluvia de fondo */
        .rain-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
            overflow: hidden;
        }

        .rain {
            position: absolute;
            width: 100%;
            height: 100%;
            transform: rotate(10deg);
        }

        .drop {
            position: absolute;
            bottom: 100%;
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, transparent, rgba(100, 120, 150, 0.3));
            animation: fall 0.8s linear infinite;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh);
            }
        }

        /* Relámpagos */
        .lightning {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            opacity: 0;
            pointer-events: none;
            z-index: 6;
        }

        @keyframes flash {
            0%, 10%, 20%, 100% { opacity: 0; }
            5%, 15% { opacity: 1; }
        }

        .lightning.active {
            animation: flash 0.4s ease-in-out;
        }

        /* Caballeros flotantes */
        .floating-knight {
            position: fixed;
            width: 150px;
            height: 150px;
            background: url('https://images.unsplash.com/photo-1589241062272-c0a000072d0a?w=200&h=200&fit=crop') center/cover;
            border-radius: 50%;
            border: 4px solid var(--gold);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
            animation: floatKnight 6s ease-in-out infinite;
            z-index: 7;
            opacity: 0.6;
            pointer-events: none;
        }

        .floating-knight.left {
            top: 15%;
            left: 3%;
        }

        .floating-knight.right {
            top: 60%;
            right: 3%;
            animation-delay: 3s;
        }

        @keyframes floatKnight {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-40px) rotate(8deg); }
        }

        /* Secciones fullscreen */
        section {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            scroll-snap-align: start;
            padding: 0;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .section-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            width: 100%;
            padding: 60px 80px;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.2s ease forwards;
        }

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

        /* Hero section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=1920&h=1080&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero .section-content {
            text-align: center;
            animation-delay: 0.3s;
        }

        h1 {
            font-family: 'Cinzel', serif;
            font-size: 6em;
            font-weight: 700;
            color: var(--gold);
            text-shadow: 
                0 0 30px rgba(212, 175, 55, 0.9),
                0 0 60px rgba(212, 175, 55, 0.6),
                4px 4px 8px rgba(0,0,0,0.9);
            letter-spacing: 6px;
            margin-bottom: 30px;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 
                    0 0 30px rgba(212, 175, 55, 0.9),
                    0 0 60px rgba(212, 175, 55, 0.6);
            }
            to {
                text-shadow: 
                    0 0 50px rgba(212, 175, 55, 1),
                    0 0 80px rgba(212, 175, 55, 0.8);
            }
        }

        .subtitle {
            font-size: 2.2em;
            color: var(--text-secondary);
            font-style: italic;
            letter-spacing: 3px;
            margin-bottom: 50px;
        }

        .scroll-indicator {
            margin-top: 60px;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 1.3em;
            color: var(--gold);
            display: block;
        }

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

        /* Secciones de contenido */
        h2 {
            font-family: 'Cinzel', serif;
            font-size: 4em;
            color: var(--gold);
            margin-bottom: 40px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
            animation: slideInLeft 1s ease forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        p {
            font-size: 1.5em;
            margin-bottom: 30px;
            line-height: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            animation: fadeIn 1.5s ease forwards;
            animation-delay: 0.5s;
            opacity: 0;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        blockquote {
            background: rgba(139, 0, 0, 0.2);
            border-left: 6px solid var(--blood-red);
            padding: 40px;
            margin: 50px 0;
            font-style: italic;
            font-size: 1.8em;
            color: var(--gold-light);
            border-radius: 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.8);
            animation: slideInRight 1.2s ease forwards;
            animation-delay: 0.8s;
            opacity: 0;
        }

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

        /* Galería fullscreen */
        .gallery-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1589241062272-c0a000072d0a?w=1920&h=1080&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            perspective: 1000px;
        }

        .gallery-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
            filter: brightness(0.8);
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.15) rotateY(5deg) rotateX(5deg);
            filter: brightness(1.1);
            box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            padding: 30px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h4 {
            color: var(--gold);
            font-family: 'Cinzel', serif;
            font-size: 1.6em;
            margin-bottom: 10px;
        }

        .gallery-overlay p {
            color: var(--text-secondary);
            font-size: 1.2em;
            margin: 0;
            animation: none;
            opacity: 1;
        }

        /* Sección de historia */
        .lore-section {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.6)), 
                        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        /* Sección de ubicaciones */
        .locations-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)), 
                        url('https://images.unsplash.com/photo-1491895200222-0fc4a4c35e18?w=1920&h=1080&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .location-card {
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(10px);
            padding: 40px;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .location-card:nth-child(1) { animation-delay: 0.2s; }
        .location-card:nth-child(2) { animation-delay: 0.4s; }
        .location-card:nth-child(3) { animation-delay: 0.6s; }
        .location-card:nth-child(4) { animation-delay: 0.8s; }

        .location-card:hover {
            background: rgba(30, 25, 20, 0.9);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
        }

        .location-card h3 {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            font-size: 2em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .location-card p {
            font-size: 1.3em;
            opacity: 1;
            animation: none;
        }

        /* Botones */
        .cta-button {
            display: inline-block;
            padding: 20px 60px;
            background: linear-gradient(135deg, rgba(139, 115, 85, 0.9) 0%, rgba(212, 175, 55, 0.9) 100%);
            color: #000;
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 1.3em;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-top: 40px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
            border: 3px solid var(--gold);
        }

        .cta-button:hover {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
        }

        /* Navegación flotante */
        .nav-dots {
            position: fixed;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
        }

        .nav-dot {
            width: 15px;
            height: 15px;
            background: rgba(212, 175, 55, 0.3);
            border: 2px solid var(--gold);
            border-radius: 50%;
            margin: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot:hover,
        .nav-dot.active {
            background: var(--gold);
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            h1 { font-size: 4em; }
            h2 { font-size: 3em; }
            .section-content { padding: 40px 50px; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .locations-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5em; }
            h2 { font-size: 2em; }
            .subtitle { font-size: 1.5em; }
            p { font-size: 1.2em; }
            .section-content { padding: 30px 20px; }
            .gallery-grid { grid-template-columns: 1fr; }
            .floating-knight { display: none; }
            .nav-dots { display: none; }
            section { background-attachment: scroll; }
        }