    @import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    body,html {
        font-family: "Prompt", sans-serif;
        background-image: url("../img/Background.jpg");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        min-height: 100vh;
    }
    .bg-img {
        background-image: url("../img/banner.png"), url("../img/Background.jpg");
        background-position: top center, center top;
        background-repeat: no-repeat, no-repeat;
        background-size: 100% auto, cover;
        min-height: 1000px;
        position: relative;
    }
    .bg-footer {
        min-height: 700px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    /* Semi-transparent overlays so the body background shows through every section */
    .bg-overlay-secondary {
        background-color: rgba(33, 37, 41, 0.55);
    }
    .bg-overlay-light {
        background-color: rgba(255, 255, 255, 0.85);
    }
    .bg-overlay-dark {
        background-color: rgba(0, 0, 0, 0.6);
    }
    /* Dark glass theme for cards & lists so they match the purple background */
    .card {
        background-color: rgba(22, 14, 42, 0.6) !important;
        border-color: rgba(168, 130, 255, 0.35) !important;
        color: #e6e0ff;
        backdrop-filter: blur(6px);
    }
    .card-title {
        color: #c9a4ff;
    }
    .card-text {
        color: #d8d3ee;
    }
    .card-footer {
        background-color: rgba(10, 6, 24, 0.55) !important;
        border-top-color: rgba(168, 130, 255, 0.25) !important;
    }
    .card-footer .text-body-secondary {
        color: rgba(216, 211, 238, 0.65) !important;
    }
    .list-group-item {
        background-color: rgba(22, 14, 42, 0.5) !important;
        color: #e6e0ff !important;
        border-color: rgba(168, 130, 255, 0.2) !important;
    }
    .list-group-item:hover {
        background-color: rgba(90, 60, 160, 0.35) !important;
        color: #ffffff !important;
    }
    .text-theme-accent {
        color: #c9a4ff !important;
    }
    .text-theme-gold {
        color: #f0c869 !important;
    }
    .text-theme-muted {
        color: rgba(230, 224, 255, 0.6) !important;
    }
    .template-animation {
        position: relative;
        z-index: 1;
        width: 100%;
        overflow: hidden;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .c-img {
        -webkit-animation: floatAnimation 2s ease-in-out infinite;
        animation: floatAnimation 2s ease-in-out infinite;
        -webkit-transition: opacity 0.1s, -webkit-transform 0.2s;
        transition: opacity 0.1s, -webkit-transform 0.2s;
        transition: opacity 0.1s, transform 0.2s;
        transition: opacity 0.1s, transform 0.2s, -webkit-transform 0.2s;
    }
    .c-img:hover {
        opacity: 0.9;
    }
    @-webkit-keyframes floatAnimation {
        0% {
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }
        50% {
            -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
        }
        100% {
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }
    }
    @keyframes floatAnimation {
        0% {
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }
        50% {
            -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
        }
        100% {
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }
    }
    .dropdown-menu li .dropdown-item {
        font-size: 1em;
        padding: 0.5em 1em;
    }
    .dropdown-menu {
        border: none;
        border-radius: 0 0 10px 10px;
        padding: 0.7em;
    }

    /* Styles for Scroll to Top Button Visibility */
    .scroll-to-top-btn {
        display: none; /* Hidden by default */
        opacity: 0;
        transition: opacity 0.2s ease-in-out; /* Smooth fade effect */
    }

    .scroll-to-top-btn.show {
        display: flex; /* Show as flex to center icon */
        opacity: 1;
    }