    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Cinzel Decorative', serif;
        color: #fff;
        overflow-x: hidden;
    }

    /* HEADER */

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(6px);
        z-index: 10;
        transition: background 0.3s ease;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-img {
        height: 40px; 
        width: auto;
    }

    .logo-text {
        display: none;
        font-size: 1rem;
        color: #e0e6ff;
        letter-spacing: 2px;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
    }


    /* NAVIGATION */

    nav > ul {
        list-style: none;
        display: flex;
        gap: 30px;
    }

    nav ul li a {
        text-decoration: none;
        color: #e0e6ff;
        font-size: 1rem;
        letter-spacing: 1px;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    nav ul li a:hover {
        color: #b5e3ff;
        text-shadow: 0 0 10px #9fd3ff, 0 0 20px #c9ecff;
    }


    nav ul li {
        position: relative;
    }
    
    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 4px 0;
    }
    
    @media (max-width: 768px) {
        .nav-toggle {
            display: flex;
        }

        nav {
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(6px);

            display: none;
        }
        nav ul{
            flex-direction: column;
            padding: 1rem;
            gap: 1rem;
        }

        nav.visible {
            display: flex;
        }
    }


    /* DROPDOWN MENU */
    .dropdown-menu {
        position: absolute;
        top: 235%;
        right: 0;

        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        padding: 10px 0;
        min-width: 180px;

        box-shadow: 0 0 25px rgba(150,200,255,0.25);

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;

        z-index: 100;
        
    }

    .dropdown-menu li {
        display: block;
    }

    .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .dropdown-menu li a:hover {
        background: rgba(150,200,255,0.15);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown:hover > a {
        color: #b5e3ff;
        text-shadow: 0 0 10px #9fd3ff, 0 0 20px #c9ecff;
    }

    /* SUBMENU */
    .submenu {
        position: relative;
    }

    .submenu-menu {
        position: absolute;
        top: 0%;
        left: 100%;
        transform: translateX(-50%) translateY(10px);

        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        padding: 10px 0;
        min-width: 160px;

        box-shadow: 0 0 20px rgba(150,200,255,0.25);

        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
    }

    .submenu:hover .submenu-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* FIRST SECTION */
    
    .hero {
        height: 100vh;
        width: 100%;
        background: url('pics/world.webp') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding: 0.7em;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        text-shadow: 0 0 5px #8ec5ff;
        max-width: 600px;
        margin: 0 auto;
    }

    /* SECTION DIVIDER */

    .section-divider {
        width: 100%;
        height: 100px;
        background: linear-gradient(to right, #0b1522, #1b2d3c);
    }

    .section-divider-two {
        background: #0a121c;
        height: 5px;
    }

    .section-divider-three {
        background: linear-gradient(to right, #0b1522, #1b2d3c);
        width: 100%;
        height: 30px;
    }



    /* SECOND SECTION */

    .chapter {
        width: 100%;
        background: url('pics/city.jpg') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding: 40px;
    }

    .chapter::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1); /* lighter mist */
        backdrop-filter: blur(5px);
        z-index: 0;
    }

    .chapter-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
    }

    .chapter h2 {
        font-size: 3rem;
        color: #ffffff;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
        margin-bottom: 1.5rem;
    }

    .chapter p {
        font-size: 0.7rem;
        line-height: 1.7;
        color: #ffffff;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
        margin-bottom: 1rem;
    }

    /* THIRD SECTION */

    .next {
        width: 100%;
        background: url('pics/aether2jpg.jpg') no-repeat center center/cover; 
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding: 40px;
    }

    .next::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(4px);
        z-index: 0;
    }

    .next-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
    }

    .next h2 {
        font-size: 3rem;
        color: #ffffff;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
        margin-bottom: 1.5rem;
    }

    .next p {
        font-size: 0.7rem;
        line-height: 1.7;
        color: #ffffff;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
        margin-bottom: 1rem;
    }
        
    
    @media (min-width: 992px){ 
      .next, .chapter {
        height: 100vh;
        }

      .next p, .chapter p{
        font-size: 1.1rem;
        }
        
        header{
          padding: 20px 60px;
        }
        
        .logo-text {
          display: inline;
          }
          
    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.2rem;}
    }

    /* FOOTER */

    .fantasy-footer {
        background: #0b1522;
        padding: 40px 20px;
        text-align: center;
        color: #dddddd;
        position: relative;

    }

    .footer-content {
        max-width: 800px;
        margin: 0 auto;
        text-shadow: 0 0 5px #7bb3ff, 0 0 10px #5aa9ff;
    }

    .footer-link {
        color: #dddddd;
        text-decoration: none;
        margin: 0 5px;
        transition: 0.3s;
    }

    .footer-link:hover {
        color: #b5e3ff;
        text-shadow: 0 0 10px #9fd3ff, 0 0 20px #c9ecff;
    }

    .invert-img {
        margin-top: 15px;
        filter: invert(90%);
    }

    

    /* MAP */

        /* TITLE */
    .map {
        height: 100vh;
        width: 100%;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }

    .map::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.15) 0%, transparent 70%);
        animation: mistPulse 8s ease-in-out infinite alternate;
        z-index: 0;
    }

    
    .map-content {
        position: relative;
        z-index: 1;
    }

    .map h1 {
        font-size: 4rem;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
        margin-bottom: 1rem;
    }

        /* IMAGE MAP */

    .image-section {
        position: relative;
        height: 100vh; 
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        overflow: hidden;
    }

    .image-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.15) 0%, transparent 70%);
        animation: mistPulse 8s ease-in-out infinite alternate;
        mix-blend-mode: screen;
    }

    .center-image {
        width: auto; 
        height: auto;
        z-index: 1;
        filter: drop-shadow(0 0 15px rgba(150, 200, 255, 0.6));
        animation: float 10s ease-in-out infinite;
    }

    @keyframes mistPulse {
        from { opacity: 0.3; transform: scale(1); }
        to { opacity: 0.6; transform: scale(1.05); }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }

        /* INTERACTIVE MAP SECTION */

    .map-title {
        font-family: 'Cinzel Decorative', serif;
        color: #e0e6ff;
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 25px;
        text-shadow: 
            0 0 10px #8ec5ff, 
            0 0 20px #5aa9ff, 
            0 0 30px #9fd3ff;
        animation: titleGlow 3s ease-in-out infinite alternate;
        z-index: 2;
        position: relative;
    }

    .map-section {
        position: relative;
        width: 100%;
        height: 140vh;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 25px;
        align-items: center;
        overflow: hidden;
    }

    .map-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.15) 0%, transparent 70%);
        animation: mistPulse 8s ease-in-out infinite alternate;
        mix-blend-mode: screen;
        pointer-events: none;
    }
    
    @keyframes mistPulse {
        from { opacity: 0.25; transform: scale(1); }
        to { opacity: 0.45; transform: scale(1.05); }
    }

    .map-container {
        position: relative;
        width: 80%;
        height: 70%;
        border: 2px solid rgba(150, 200, 255, 0.3);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 0 25px rgba(150, 200, 255, 0.4);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: brightness(0.9) saturate(1.2);
        border-radius: 20px;
    }

    @keyframes glowShift {
        from { opacity: 0.4; transform: scale(1); }
        to { opacity: 0.7; transform: scale(1.05); }
    }

    .map-section .link-box {
        text-align: center;
        position: absolute;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        padding-bottom: 10px;
    }

    .map-section .link-box p {
        font-size: 1.2rem;
        color: #e0e6ff;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
        margin-bottom: 12px;
        font-family: 'Cinzel Decorative', serif;
    }

    .map-section .link-icon img {
        width: 60px;
        height: 60px;
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: drop-shadow(0 0 15px #8ec5ff);
    }

    .map-section .link-icon img:hover {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px #b6e8ff);
    }

    .section-divider-two {
        background: #0a121c;
        height: 5px;
    }


    /* REGIONS */

     /* TITLE */
    .regions {
        height: 100vh;
        width: 100%;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }

    .regions::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.15) 0%, transparent 70%);
        animation: mistPulse 8s ease-in-out infinite alternate;
        z-index: 0;
    }

    
    .regions-content {
        position: relative;
        z-index: 1;
    }

    .regions h1 {
        font-size: 4rem;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
        margin-bottom: 1rem;
    }

    .region-background {
        position: fixed;
        inset: 0;
        z-index: -1;
        overflow: hidden;
    }

    .bg {
        position: absolute;
        inset: 0;

        background-size: cover;
        background-position: center;

        filter: brightness(0.35) saturate(1.2);

        opacity: 0;
        animation: fade 35s infinite;
    }

    .bg1 { background-image: url("pics/mondstadt.jpg"); animation-delay:-2s; }
    .bg2 { background-image: url("pics/liyue.jpg"); animation-delay: 5s; }
    .bg3 { background-image: url("pics/inazuma.jpg"); animation-delay: 10s; }
    .bg4 { background-image: url("pics/sumeru.jpg"); animation-delay: 15s; }
    .bg5 { background-image: url("pics/fontaine.jpg"); animation-delay: 20s; }
    .bg6 { background-image: url("pics/natlan.jpg"); animation-delay: 25s; }
    .bg7 { background-image: url("pics/snehznaya.jpg"); animation-delay: 30s; }

    @keyframes fade {
        0% { opacity: 0; }
        10% { opacity: 1; }
        30% { opacity: 1; }
        40% { opacity: 0; }
        100% { opacity: 0; }
    }

    .region-background::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
    }


    .region-section {
        position: relative;
        padding: 100px 10%;
        display: flex;
        justify-content: center;
    }

    .region-box {
        position: relative;
        width: 100%;
        max-width: 1200px;

        padding: 60px;
        /*border-radius: 25px;*/

        background: rgba(10, 18, 28, 0.75);
        backdrop-filter: blur(12px);

        box-shadow:
            0 0 40px rgba(120, 180, 255, 0.15),
            inset 0 0 60px rgba(0, 0, 0, 0.5);

        overflow: hidden;
    }

    .region-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.12) 0%, transparent 70%);
        animation: mistPulse 8s ease-in-out infinite alternate;
        z-index: 0;
    }

    .region-container {
        position: relative;
        z-index: 1;

        display: flex;
        flex-direction: column;
        gap: 55px;
    }


    .region {
        position: relative;
        width: 100%;
        height: 200px;
        border-radius: 20px;

        overflow: hidden;
        text-decoration: none;
        color: #fff;

        background: #000;

        box-shadow:
            0 0 25px rgba(120, 180, 255, 0.2),
            inset 0 0 40px rgba(0, 0, 0, 0.6);

        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .region img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        filter: brightness(0.75) blur(3px);
        transition: transform 0.6s ease, filter 0.6s ease;
    }

    .region span {
        position: absolute;
        inset: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        font-family: 'Cinzel Decorative', serif;
        font-size: 3rem;

        letter-spacing: 1px;

        text-shadow:
            0 0 10px #63768a,
            0 0 20px #435263;

        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2)
        );
    }

    .region:hover {
        transform: translateY(-8px);
        box-shadow:
            0 0 45px rgba(150, 200, 255, 0.45),
            inset 0 0 60px rgba(0, 0, 0, 0.45);
    }

    .region:hover img {
        transform: scale(1.08);
        filter: brightness(1);
    }

    .region:hover span {
        letter-spacing: 2px;

        text-shadow:
            0 0 100px #63768a,
            0 0 110px #435263;
    }


    /* TO BE REVEALED */

         /* TITLE */

    .to-be {
        height: 100vh;
        width: 100%;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }

    .to-be::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.15) 0%, transparent 70%);
        animation: mistPulse 8s ease-in-out infinite alternate;
        z-index: 0;
    }

    
    .to-be-content {
        position: relative;
        z-index: 1;
    }

    .to-be h1 {
        font-size: 4rem;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
        margin-bottom: 1rem;
    }

    /* MONDSTADT */

    .country {
        height: 100vh;
        width: 100%;
        background: url('pics/mondstadt.jpg') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .country-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .country::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    .country-content {
        position: relative;
        z-index: 2;
    }

    .country h1 {
        font-size: 4rem;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
        margin-bottom: 1rem;
    }

    /* MONDSTADT TEXT SECTION */

    .context {
        height: 80vh;
        width: 100%;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding: 40px;
    }

    .context::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.15) 0%, transparent 70%);
        backdrop-filter: blur(5px);
        z-index: 0;
    }

    .context-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
    }

    .context p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #ffffff;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
        margin-bottom: 1rem;
    }

    .context a {
        text-decoration: none;
        color: #ffffff;
        font-size: 25px;
    }
    
    .context a:hover {
        color: #7a8c98;
        text-shadow: 0 0 10px #4a525a, 0 0 20px #49525a;
    }

    /* NEXT SECTION */

    .text-image-section {
        padding: 60px 15%;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
    }
    .text-image-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.15) 0%, transparent 70%);
        backdrop-filter: blur(5px);
        z-index: 0;
    }

    .text-image-section .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }

    .text-image-section .text h2 {
        font-family: 'Cinzel Decorative', serif;
        color: #ffffff;
        font-size: 2rem;
        margin-bottom: 15px;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
    }

    .text-image-section .image {
        flex: 1;
        text-align: right;
    }

    .text-image-section .image img {
        width: 100%;
        max-width: 550px;
        filter: drop-shadow(0 0 15px rgba(150, 200, 255, 0.6));
        animation: float 10s ease-in-out infinite;
    }

    .three-columns-full {
        height: 100vh;
        width: 100%;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        display: flex;
        align-items: center;
        justify-content: space-around;
        text-align: center;
        position: relative;
        padding: 40px;
        flex-wrap: wrap;
    }

    .three-columns-full::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
         background: radial-gradient(circle at center, rgba(160, 200, 255, 0.15) 0%, transparent 70%);
        z-index: 0;
    }


    .three-columns-full .column {
        text-align: center;
        flex: 1 1 30%;
        max-width: 400px;
    }

    .three-columns-full h2 {
        display: block;
        font-family: 'Cinzel Decorative', serif;
        font-size: 2rem;
        color: #ffffff;
        text-decoration: none;
        margin-bottom: 20px;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    .column-link:hover {
        color: #b5e3ff;
        text-shadow: 0 0 10px #9fd3ff, 0 0 20px #c9ecff;
    }

    .three-columns-full .column img {
        width: 80%;
        max-width: 350px;
        border-radius: 20px;
        filter: drop-shadow(0 0 15px rgba(150, 200, 255, 0.6));
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .three-columns-full .column img:hover {
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(150, 200, 255, 0.6);
    }

    /*LORE*/
    .lore {
        height: 50vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .lore::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        inset: 0;
        background: rgba(0, 0, 0, 0.45); 
        backdrop-filter: blur(5px);
        z-index: 1;
    }

    .lore-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; 
        z-index: 0;
    }

    .lore-content {
        position: relative;
        z-index: 2;
    }

    .lore h1 {
        font-size: 4rem;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
        margin-bottom: 1rem;
    }


    /* TEXT RIGHT IMG LEFT */
    .media-text-section {
        position: relative;
        padding: 60px 10%;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        overflow: hidden;
    }
    .media-text-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at center,
            rgba(160, 200, 255, 0.15) 0%,
            transparent 70%
        );
        z-index: 0;
    }

    .media-text-container {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }

    .media-text-image {
        flex: 1;
        text-align: left;
    }

    .media-text-image img {
        width: 100%;
        max-width: 550px;
        filter: drop-shadow(0 0 15px rgba(150, 200, 255, 0.6));
        animation: float 10s ease-in-out infinite;
    }

    .media-text-content {
        flex: 1;
    }

    .media-text-content h2 {
        font-family: 'Cinzel Decorative', serif;
        font-size: 2rem;
        margin-bottom: 15px;
        color: #ffffff;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
    }

    .media-text-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #ffffff;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
    }

    /* TEXT LEFT IMG RIGHT*/
    .media-text-right-section {
        position: relative;
        padding: 60px 10%;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        overflow: hidden;
    }

    .media-text-right-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at center,
            rgba(160, 200, 255, 0.15) 0%,
            transparent 70%
        );
        z-index: 0;
    }

    .media-text-right-container {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }

    .media-text-right-content {
        flex: 1;
    }

    .media-text-right-content h2 {
        font-family: 'Cinzel Decorative', serif;
        font-size: 2rem;
        margin-bottom: 15px;
        color: #ffffff;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
    }

    .media-text-right-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #ffffff;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
    }

    .media-text-right-image {
        flex: 1;
        text-align: right;
    }

    .media-text-right-image img {
        width: 100%;
        max-width: 550px;
        filter: drop-shadow(0 0 15px rgba(150, 200, 255, 0.6));
        animation: float 10s ease-in-out infinite;
    }

    /* MORE */

    .more-background {
        position: fixed;
        inset: 0;
        z-index: -1;
        overflow: hidden;
    }

    .morebg {
        position: absolute;
        inset: 0;

        background-size: cover;
        background-position: center;

        filter: brightness(0.35) saturate(1.2);

        opacity: 0;
        animation: fadee 25s infinite;
    }

    .morebg1 { background-image: url("pics/history.webp"); animation-delay: -2s; }
    .morebg2 { background-image: url("pics/speciallocations.webp"); animation-delay: 5s; }
    .morebg3 { background-image: url("pics/media.webp"); animation-delay: 10s; }
    .morebg4 { background-image: url("pics/speciallocations.webp"); animation-delay: 15s; }
    .morebg5 { background-image: url("pics/history.webp"); animation-delay: 20s; }

    @keyframes fadee {
        0% { opacity: 0; }
        10% { opacity: 1; }
        30% { opacity: 1; }
        40% { opacity: 0; }
        100% { opacity: 0; }
    }

    .more-background::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
    }


    .more-section {
        position: relative;
        padding: 100px 10%;
        display: flex;
        justify-content: center;
    }

    .more-box {
        position: relative;
        width: 100%;
        max-width: 1200px;

        padding: 60px;

        background: rgba(10, 18, 28, 0.75);
        backdrop-filter: blur(12px);

        box-shadow:
            0 0 40px rgba(120, 180, 255, 0.15),
            inset 0 0 60px rgba(0, 0, 0, 0.5);

        overflow: hidden;
    }

    .more-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(160, 200, 255, 0.12) 0%, transparent 70%);
        animation: mistPulse 8s ease-in-out infinite alternate;
        z-index: 0;
    }

    .more-container {
        position: relative;
        z-index: 1;

        display: flex;
        flex-direction: column;
        gap: 55px;
    }


    .more {
        position: relative;
        width: 100%;
        height: 200px;
        border-radius: 20px;

        overflow: hidden;
        text-decoration: none;
        color: #fff;

        box-shadow:
            0 0 25px rgba(120, 180, 255, 0.2);

        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .more img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75) blur(3px);
        transition: transform 0.6s ease, filter 0.6s ease;
    }

    .more span {
        position: absolute;
        inset: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        font-family: 'Cinzel Decorative', serif;
        font-size: 3rem;

        letter-spacing: 1px;

        text-shadow:
            0 0 10px #63768a,
            0 0 20px #435263;

        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2)
        );
    }

    .more:hover {
        transform: translateY(-8px);
        box-shadow:
            0 0 45px rgba(150, 200, 255, 0.45);
    }

    .more:hover img {
        transform: scale(1.08);
        filter: brightness(1);
    }

    .more:hover span {
        letter-spacing: 2px;

        text-shadow:
            0 0 100px #63768a,
            0 0 110px #435263;
    }

    /* MEDIA */

    .magic-book-section {
        height: 100vh;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .book-title {
        font-family: 'Cinzel Decorative', serif;
        font-size: 3rem;
        color: #e0e6ff;
        text-shadow: 0 0 15px #8ec5ff;
        margin-bottom: 30px;
    }

    input[name="page"] {
        display: none;
    }

    .book {
        width: 760px;
        height: 440px;
        position: relative;
        perspective: 2000px;
    }


    .page {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #1b2d3c, #0b1522);
        padding: 40px;
        box-shadow:
            0 0 40px rgba(150,200,255,0.15),
            0 0 40px rgba(150,200,255,0.4);
        opacity: 0;
        transform-origin: left;
        transition: all 0.8s ease;
    }

    .page-content {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 30px;
        align-items: center;
        height: 100%;
    }

    .page img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page h2 {
        font-family: 'Cinzel Decorative', serif;
        font-size: 2.2rem;
        margin-bottom: 15px;
        color: #ffffff;
        text-shadow: 0 0 10px #8ec5ff;
    }

    .page p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #e6ecff;
    }

    #page1:checked ~ .book .page-1,
    #page2:checked ~ .book .page-2,
    #page3:checked ~ .book .page-3,
    #page4:checked ~ .book .page-4 {
        opacity: 1;
        transform: rotateY(0deg);
        z-index: 2;
    }

    .book {
        width: 760px;
        height: 440px;
        position: relative;
        perspective: 2000px;
    }

    .book-nav {
        position: absolute;
        width: 760px;
        height: 440px;
        top: 55%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2.8rem;
        cursor: pointer;
        color: #e0e6ff;
        background: rgba(150, 201, 255, 0.078);
        padding: 14px 20px;
        border-radius: 50%;
        backdrop-filter: blur(8px);
        box-shadow: 0 0 20px rgba(150,200,255,0.6);
        pointer-events: auto;
        display: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 5;
    }

    .nav:hover {
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 0 40px rgba(180,230,255,0.9);
    }

    .nav.left {
        left: -70px;
    }

    .nav.right {
        right: -70px;
    }

    #page1:checked ~ .book-nav .prev-1,
    #page1:checked ~ .book-nav .next-1 {
        display: block;
    }

    #page2:checked ~ .book-nav .prev-2,
    #page2:checked ~ .book-nav .next-2 {
        display: block;
    }

    #page3:checked ~ .book-nav .prev-3,
    #page3:checked ~ .book-nav .next-3 {
        display: block;
    }

    #page4:checked ~ .book-nav .prev-4,
    #page4:checked ~ .book-nav .next-4 {
        display: block;
    }

    /*CHARACTERS*/

    .cha {
        height: 50vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
    }

    .cha::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45); 
        backdrop-filter: blur(5px);
        z-index: 1;
    }

    .cha-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    
    .cha-content {
        position: relative;
        z-index: 1;
    }

    .cha h1 {
        font-size: 4rem;
        text-shadow: 0 0 15px #000000, 0 0 25px #000000;
        margin-bottom: 1rem;
    }

    .characters-section {
        position: relative;
        padding: 80px 10%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px;
        background:
        linear-gradient(to right, #0e1824 0%, #0a121c 70%),
        linear-gradient(to left, #0e1824 0%, #0a121c 70%);
        overflow: hidden;
    }

    .characters-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
        linear-gradient(to right, rgba(160, 200, 255, 0.15), transparent 50%),
        linear-gradient(to left, rgba(160, 200, 255, 0.15), transparent 50%);
        animation: mistPulse 8s ease-in-out infinite alternate;
        z-index: 0;
    }

    .character-card {
        position: relative;
        width: 570px;
        text-align: center;
        animation: floatUpDown 5s ease-in-out infinite;

        }

    .character-frame {
        position: relative;
        width: 100%;
        height: 340px;
        border-radius: 40px 40px 40px 40px;
        overflow: hidden;
    }

    .character-frame::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
    }

    .character-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: drop-shadow(0 0 15px rgba(150, 200, 255, 0.6));
    }

    /* NAME BELOW */
    .character-name {
        margin-top: 17px;
        font-size: 1rem;
        text-shadow: 0 0 10px #8ec5ff, 0 0 20px #5aa9ff;
    }

    .character-text {
        margin-top: 17px;
        font-size: 1rem;
        text-shadow: 0 0 10px #5b7da1, 0 0 20px #5aa9ff;
    }

    @keyframes floatUpDown {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-15px);
        }
        100% {
            transform: translateY(0px);
        }
    }

    .character-card:nth-child(2) {
        animation-delay: 2s;
    }
    .character-card:nth-child(3) {
        animation-delay: 2s;
    }
    .character-card:nth-child(6) {
        animation-delay: 2s;
    }
    .character-card:nth-child(7) {
        animation-delay: 2s;
    }
    .character-card:nth-child(10) {
        animation-delay: 2s;
    }
    .character-card:nth-child(11) {
        animation-delay: 2s;
    }
    .character-card:nth-child(14) {
        animation-delay: 2s;
    }
    .character-card:nth-child(15) {
        animation-delay: 2s;
    }
    .character-card:nth-child(18) {
        animation-delay: 2s;
    }
    .character-card:nth-child(19) {
        animation-delay: 2s;
    }
    .character-card:nth-child(22) {
        animation-delay: 2s;
    }



/* AREA HERO */
.cha {
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
}

.cha::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.cha-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cha-content {
    position: relative;
    z-index: 2;
}

.cha h1 {
    font-size: 4rem;
    text-shadow: 0 0 20px #000;
}

/* AREAS */ 

.area-block {
    position: relative;
    padding: 100px 10%;
    background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
    overflow: hidden;
    padding-top: 4%;
}

.area-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(160,200,255,0.12), transparent 70%);
    animation: mistPulse 8s ease-in-out infinite alternate;
}

.area-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.area-title h2 {
    font-size: 2.6rem;
    text-shadow: 0 0 15px #8ec5ff;
}

.area-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.area-image {
    flex: 1;
}

.area-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 0 20px rgba(150,200,255,0.5) );
    animation: floatUpDown 6s ease-in-out infinite;
}

.area-text {
    flex: 1;
}

.area-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #8ec5ff;
}

.area-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: 0 0 10px #000;
}

.subareas {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.subarea-card {
    width: 320px;
    text-align: center;
    animation: floatUpDown 5s ease-in-out infinite;
}

.subarea-card img {
    width: 100%;
    filter: drop-shadow(0 0 15px rgba(150,200,255,0.5));
}

.subarea-card h4 {
    margin-top: 10px;
    text-shadow: 0 0 10px #8ec5ff;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes mistPulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}


/* TRIVIA */

.trivia-hero {
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
}

.trivia-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    z-index: 1;
}

.trivia-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.trivia-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.trivia-hero h1 {
    font-size: 4rem;
    text-shadow: 0 0 25px #000;
}

.trivia-section {
    padding: 120px 10%;
    background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
    position: relative;
    overflow: hidden;
}

.trivia-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(160,200,255,0.12), transparent 70%);
    animation: mistPulse 8s ease-in-out infinite alternate;
}

.trivia-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.trivia-card {
    position: relative;
    padding: 28px 22px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-left: 4px solid #a3aab1;
    border-radius: 14px 20px 20px 14px;
    box-shadow: 0 0 25px rgba(150,200,255,0.15);
    transform: rotate(-0.4deg);
    transition: all 0.3s ease;
}

.trivia-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.08) 50%);
}

.trivia-card:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 0 40px rgba(150,200,255,0.3);
}

.trivia-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    background: rgba(142,197,255,0.15);
    color: #cbd4dc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trivia-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #8ec5ff;
}

.trivia-card p {
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 0 10px #000;
}

@keyframes mistPulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}


/* CONTACT US */
.contact-hero {
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    z-index: 1;
}

.contact-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero h1 {
    font-size: 4rem;
    text-shadow: 0 0 25px #000;
}

.contact-section {
    padding: 100px 10%;
    padding-top: 10%;
    background: radial-gradient(circle at center, #0e1824 0%, #0a121c 80%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(160,200,255,0.12), transparent 70%);
    animation: mistPulse 8s ease-in-out infinite alternate;
}

.contact-box {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(150,200,255,0.15);
    text-align: center;
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #000;
}

.contact-box p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    max-width: 620px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8ec5ff;
    box-shadow: 0 0 15px rgba(142,197,255,0.3);
}

.contact-form button {
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #8ec5ff, #5aa9ff);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(142,197,255,0.3);
}

    




    

    


    
