    @import url('https://fonts.googleapis.com/css2?family=MedievalSharp&family=Montserrat+Alternates:wght@400;600&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Unbounded:wght@200..900&display=swap');
        :root {
        --header-height: 3.5rem;
        --gold-color: hsl(47, 72, 82);

        --body-font: "Montserrat Alternates", sans-serif;
        --second-font: "Unbounded", sans-serif;
        --biggest-font-size: 3rem;
        --base-color: #d3b037;
        --accent-color: #e1c874;
        }


        body {
            font-family: 'Inter', sans-serif;
            overflow: hidden; 
        }

        .fixed-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1; 
            background-image: url("assets/img/background.webp");
            background-size: cover;
            background-position: center; 
            background-repeat: no-repeat;
        }

        .fixed-branding {
            position: fixed;
            top: 20px; 
            left: 20px; 
            z-index: 1001; 
            display: flex; 
            align-items: center; 
            gap: 64px; 
            pointer-events: none; 
        }

        .fixed-branding .home_img img {
            width: 325px; 
            height: 325px;
            pointer-events: auto; 
        }

        .realm-raiders-title {
            font-size: 6rem; 
            font-weight: 400;
            color: var(--base-color);
            line-height: 1; 
            font-family: 'Nunito', serif; 
            pointer-events: auto; 
        }


        .scrollable-content-area {
            position: absolute;
            top: 150px;
            left: 0;
            width: 100vw;
            height: calc(80vh - 150px); 
            overflow-y: scroll; 
            scroll-snap-type: y mandatory; 
        }

       
        .slide-section {
            height: calc(80vh - 150px); 
            width: 100%; 
            scroll-snap-align: start; 
            display: flex; 
            align-items: center;
            justify-content: center;
        }

    
        .dynamic-paragraph-container {
            position: fixed;
            width: 100vw;
            height: calc(120vh - 160px); 
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--body-font), serif;
            pointer-events: none; 
            z-index: 10; 
        }

        .dynamic-paragraph {
            opacity: 1;
            color: white;
            transition: opacity 0.3s ease-in-out; 
            max-width: 1545px; 
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); 
            background-color: rgba(255, 255, 255, 0.9); 
            border-radius: 1rem; 
            padding: 1rem; 
            pointer-events: none;
        }
          .dynamic-paragraph a {
            color: var(--base-color);
            text-decoration: underline;
            pointer-events: auto; 
            display: block;

            line-height: 1.2;
        }
      
        .dynamic-paragraph a:hover {
            color: var(--accent-color); 
        }

        

        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
       
        @keyframes fadeOut {
            from { opacity: 1; transform: translateY(0); }
            to { opacity: 0; transform: translateY(-20px); }
        }

        
        .fade-out {
            animation: fadeOut 0.3s forwards;
        }
        .fade-in {
            animation: fadeIn 0.3s forwards;
        }

        
        header {
            position: fixed;
            right: 0;
            left: 0;
            z-index: 1000; 
            display: flex;
            align-items: center;
            justify-content: flex-end; 
            background-color: rgba(0, 0, 0, 0); 
            padding-top: 1rem; 
            padding-right: 2rem;
        }
        .navbar {
            margin: 0; 
        }
        .navbar ul {
            display: flex;
            align-items: center;
            gap: 10rem; 
        }
        .navbar a {
            margin-left: 0; 
        }

        .feather_icon{
        color: rgba(255, 255, 255, 0.842);
        }
        .ko-fi{
        background-image: url("assets/icons/kofi5.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        display: inline-block;
        width: 80px;
        height: 80px;
        stroke: white;
        }

        
        .fixed-button {
            position: fixed;
            bottom: 2px;
            left: 50%; 
            transform: translateX(-50%); 
            z-index: 1000; 
            pointer-events: auto; 
            font-family: 'Nunito', sans-serif; 
            display: flex; 
            align-items: center;
            text-align: center;
            justify-content: center;
            padding: 0.8rem 2.5rem;
            border: 1px solid var(--base-color);
            color: var(--base-color);
            text-decoration: none;
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            max-width: 600px; 
            transition: background-color 0.3s ease, color 0.3s ease;
            border-radius: 0.5rem; 
        }

        .fixed-button:hover {
            background-color: var(--base-color);
            color: black;
        }

    @media screen and (max-width: 1500px){
         .fixed-branding .home_img img {
                width: 250px;
                height: 250px;
            }
            .realm-raiders-title {
                font-size: 4.5rem;
            }
            .fixed-branding {
                gap: 30px; 
                top: 15px;
                left: 15px;
            }

            .navbar ul {
                gap: 5rem; 
            }

            .scroll-prompt-text {
                top: 70px; 
                font-size: 1.5rem;
            }

            .dynamic-paragraph-container {
                top: 180px; 
                height: calc(80vh - 120px); 
            }
            .dynamic-paragraph {
                max-width: 90%; 
            }
            .dynamic-paragraph p {
                font-size: 1.1rem;
            }
             .dynamic-paragraph a {
                font-size: 1.1rem;
            }
            .fixed-button {
                font-size: 1.5rem;
                padding: 0.7rem 2rem;
            }
        }
        
    

    @media screen and (max-width: 1150px) {
            .fixed-branding .home_img img {
                width: 200px;
                height: 200px;
            }
            .realm-raiders-title {
                font-size: 4rem;
            }
            .fixed-branding {
                gap: 30px; 
                top: 15px;
                left: 15px;
            }

            .navbar ul {
                gap: 5rem; 
            }

            .scroll-prompt-text {
                top: 110px; 
                font-size: 1.5rem;
            }

            .dynamic-paragraph-container {
                top: 180px; 
                height: calc(80vh - 120px); 
            }
            .dynamic-paragraph {
                max-width: 90%; 
            }
            .dynamic-paragraph p {
                font-size: 1.1rem;
            }
             .dynamic-paragraph a {
                font-size: 1.1rem;
            }
            .fixed-button {
                font-size: 1.5rem;
                padding: 0.7rem 2rem;
            }
        }


    @media screen and (max-width: 1024px) {
            .fixed-branding .home_img img {
                width: 130px;
                height: 130px;
            }
            .realm-raiders-title {
                font-size: 3.5rem;
            }
            .fixed-branding {
                gap: 30px;
                top: 15px;
                left: 15px;
            }

            .navbar ul {
                gap: 5rem; 
            }

            .scroll-prompt-text {
                top: 100px; 
                font-size: 1.5rem;
            }
           .feather_icon, .ko-fi {
                width: 48px; 
                height: 48px;
            }

            .dynamic-paragraph-container {
                top: 100px; 
                height: calc(80vh - 120px);
            }
            .dynamic-paragraph {
                max-width: 90%; 
                padding: 5rem; 
            }
            .dynamic-paragraph p {
                font-size: 0.8rem;
                line-height: 1;
            }

            .dynamic-paragraph a {
                font-size: 0.8rem;
            }
            .fixed-button {
                font-size: 0.8rem;
                padding: 0.7rem 2rem;
            }
        }

        
        @media screen and (max-width: 768px) {
            .fixed-branding .home_img img {
                width: 110px;
                height: 110px;
            }
            .realm-raiders-title {
                font-size: 2rem;
            }
            .fixed-branding {
                gap: 20px;
                top: 10px;
                left: 10px;
            }

            header {
                padding-right: 1rem;
            }
            .navbar ul {
                gap: 2rem; 
            }
            .feather_icon, .ko-fi {
                width: 48px; 
                height: 48px;
            }

            .scroll-prompt-text {
                top: 80px;
                font-size: 1.2rem;
            }

            .dynamic-paragraph-container {
                top: 80px; 
                height: calc(80vh - 100px); 
            }
            .dynamic-paragraph {
                padding: 3rem; 
                max-width: 95%; 
            }
            .dynamic-paragraph p {
                font-size: 0.8rem; 
            }
            .dynamic-paragraph a {
                 font-size: 0.8rem; 
            }
            .fixed-button {
                font-size: 0.8rem;
                padding: 0.6rem 1.5rem;
                max-width: 90%; 
            }
        }

       
        @media screen and (max-width: 480px) {
            .fixed-branding {
                flex-direction: column;
                align-items: flex-start; 
                gap: 5px; 
                top: 10px;
                left: 10px;
            }
            .fixed-branding .home_img img {
                width: 100px; 
                height: 100px;
            }
            .realm-raiders-title {
                font-size: 2rem;
                line-height: 1.1;
                text-align: left; 
            }

            header {
                padding-right: 0.5rem;
                padding-top: 0.5rem;
            }
            .navbar ul {
                gap: 0.5rem;
            }
            .feather_icon, .ko-fi {
                width: 32px; 
                height: 32px; 
            }

           
            .scroll-prompt-text {
                top: 110px; 
                font-size: 0.9rem;
            }

            .dynamic-paragraph-container {
                top: 135px; 
                height: calc(80vh - 155px); 
                margin: auto;
            }
            .dynamic-paragraph {
                padding: 1rem; 
                font-size: 0.9rem; 
                max-width: 98%; 
            }
            .dynamic-paragraph p {
                font-size: 0.8rem; 
                line-height: 0.8rem;
            }
            .dynamic-paragraph a {
                 font-size: 0.8rem; 
            }
            .fixed-button {
                font-size: 1rem;
                padding: 0.4rem 0.8rem;
                max-width: 80%;
                bottom: 15px; 
            }
        }  