    /* If you came to the CSS for funny comments, FUCK YOU! This is a no joke zone this shit's serious */

    /* Global */

    html,
    body {
        margin: 0;
        padding: 0;
        font-family: 'Arial', sans-serif;
        background: #000;
        color: #FF0000;
    }

    /* Header & navbar */

    .site-header {
        /* Anchor navbar to top */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(8px);
        padding: 0.6rem 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .navbar ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: nowrap;
        /* stay in one line */
    }

    .navbar a {
        text-decoration: none;
        color: #ccc;
        font-weight: bold;
        transition: color 0.3s;
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }

    .navbar a:hover {
        color: #e00070;
    }

    /* FV logo styling */

    .logo img {
        max-width: 130px;
    }

    /* Responsive header (tablet) (no stacking) */
    @media (max-width: 768px) {
        .navbar ul {
            gap: 1rem;
        }

        .navbar a {
            font-size: 0.85rem;
            padding: 0.2rem 0.4rem;
        }

        .logo img {
            max-width: 110px;
        }

        .site-header {
            padding: 0.4rem 0;
        }
    }

    /* Responsive header (mobile) */

    @media (max-width: 480px) {
        .navbar ul {
            flex-wrap: nowrap !important;
            flex-direction: row !important;
            justify-content: center !important;
            gap: 0.75rem !important;
        }

        .navbar a {
            font-size: 0.8rem !important;
            padding: 0.2rem 0.4rem !important;
        }

        .logo img {
            max-width: 100px !important;
        }

        .site-header {
            padding: 0.3rem 0 !important;
        }
    }


    /* HERO SECTION */
    /* ONLY USE for the main landing page */
    /* or the world will explode */

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 150vh;
        position: relative;
        text-align: center;
        overflow: hidden;
        padding-top: 10%;
    }

    .parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/bigjamocover.jpg") center / cover no-repeat;
        transform: translateY(0);
        will-change: transform;
        z-index: 0;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.65) 40%,
                rgba(0, 0, 0, 0.9) 100%);
        z-index: 1;
    }

    .hero-content {
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 5%;
        text-align: center;
        padding-top: 5rem;
        position: relative;
        /* Prevent  skipping of content on load */
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }


    .hero-content.loaded {
        opacity: 1;
        transform: translateY(0);
    }

    /* Not sure if this rule is used for the logo or the main one. Remove the right one when I feel like it */
    .hero-logo {
        width: 90vw;
        max-width: 1200px;
        height: auto;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    }

    .hero p {
        font-size: 1.3rem;
        font-weight: bold;
        color: #fff;
    }

    /* For Photo Gallery link */

    .hero-link {
        display: inline-block;
        margin-top: 1rem;
        color: #ccc;
        font-size: 1rem;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
        letter-spacing: 1px;
    }

    .hero-link:hover {
        color: #fff;
        border-color: #fff;
    }


    /* Buttons (yippee) */

    .btn {
        display: inline-block;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        background: linear-gradient(135deg, #e11d48, #7e22ce);
        color: #fff;
        transition: all 0.3s ease;
    }

    .btn-primary {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
    }

    .btn-secondary {
        border: 2px solid #7e22ce;
        background: none;
        color: #fff;
        margin-left: 1rem;
        padding: 0.8rem 2rem;
    }

    .btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.2);
    }


    /* CONNECT OVERLAY (still don't know why it's called that) */

    .connect-overlay {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, 100px);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        max-width: 900px;
        padding: 4.5rem 2rem;
        background: rgba(10, 10, 10, 0.85);
        border-radius: 1rem;
        text-align: center;
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .connect-overlay h2 {
        font-size: 2rem;
        color: #e11d48;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .connect-overlay .buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .connect-overlay .icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .connect-overlay .icons img {
        width: 35px;
        height: 35px;
        transition: transform 0.2s ease, filter 0.2s ease;
    }

    .connect-overlay .icons img:hover {
        transform: scale(1.2);
        filter: brightness(1.3);
    }


    /* FOOTER */


    footer {
        text-align: center;
        padding: 1rem;
        margin-top: auto;
        background: #000;
        font-size: 0.8rem;
        color: #666;
    }

    /* RESPONSIVE HERO + OVERLAY */

    @media (max-width: 900px) {
        .hero {
            height: 120vh;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content p {
            font-size: 1.1rem;
            -webkit-text-stroke: 2px
        }

        .btn {
            font-size: 1rem;
            padding: 0.7rem 1.6rem;
        }
    }

    @media (max-width: 600px) {
        .hero {
            height: 130vh;
            background-position: center top;
        }

        .hero-content {
            text-align: center;
            padding: 2rem 1rem;
            top: 10%;
        }

        .hero-logo {
            width: 80vw;
            max-width: 400px;
        }

        .hero-content h1 {
            font-size: 2rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .connect-overlay {
            max-width: 95%;
            padding: 1.8rem 1rem;
            gap: 1rem;
            border-radius: 0.75rem;
            background: rgba(10, 10, 10, 0.8);
            top: 52%;
            /* moves it closer to the top only on mobile */
            transform: translate(-50%, 60px);
            /* adjust for visual balance */

        }

        .connect-overlay h2 {
            font-size: 1.3rem;
            margin-bottom: 0.25rem;
        }

        .connect-overlay p {
            font-size: 0.9rem;
            line-height: 1.3;
            margin-bottom: 0.5rem;
        }

        .connect-overlay .btn-container,
        .connect-overlay .buttons {
            display: flex;
            justify-content: center;
            align-items: stretch;
            /* ensures same height */
            gap: 0.75rem;
            width: 100%;
            flex-wrap: nowrap;
        }

        .btn {
            flex: 1 1 0;
            /* equal flexible width */
            min-width: 0;
            /* fixes uneven sizing issues */
            text-align: center;
            font-size: 0.85rem;
            padding: 0.65rem 0;
            border-radius: 40px;
            white-space: nowrap;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            /* ensures equal width no matter text */
            max-width: none;
        }

        /* Icons smaller and tidy */
        .connect-overlay .icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.6rem;
        }

        .connect-overlay .icons img {
            width: 22px;
            height: 22px;
            transition: transform 0.2s ease, filter 0.2s ease;
        }

        .connect-overlay .icons img:hover {
            transform: scale(1.1);
        }

        /* This shits so confusing. I can write C all day but CSS is worse than R on meth */
    }

    /* Fixed Social/Streaming Sidebar */
    /* Why is this here. This should be in its own file but whatever */

    .social-sidebar {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: rgba(0, 0, 0, 0.25);
        padding: 0.5rem 0.5rem 0.5rem 0;
        border-radius: 8px 0 0 8px;
        transition: background 0.3s;
        z-index: 10;
        /* Allow visible   tooltips */
        overflow: visible;
    }

    .social-sidebar:hover {
        background: rgba(0, 0, 0, 0.6);
    }

    .social-sidebar a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        text-decoration: none;
        color: #fff;
        transition: transform 0.2s, filter 0.2s;
    }

    .social-sidebar a img {
        width: 24px;
        height: 24px;
    }

    .social-sidebar a:hover {
        transform: scale(1.15);
        filter: drop-shadow(0 0 6px #e00070) brightness(1.3);
    }


    /* Ensure tooltips are visisble (white) */
    .tooltip::after {
        background: rgba(0, 0, 0, 0.85);
        color: #fff;
    }

    /* Mobile Adjustment */

    @media (max-width: 768px) {
        .social-sidebar {
            flex-direction: row;
            bottom: 0;
            top: auto;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            border-radius: 8px 8px 0 0;
            padding: 0.5rem;
            gap: 0.75rem;
            background: rgba(0, 0, 0, 0.3);
        }

        .social-sidebar:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        .social-sidebar a {
            width: 40px;
            height: 40px;
        }

        .social-sidebar a img {
            width: 22px;
            height: 22px;
        }
    }

    /* To Future Michael: I'm sorry to put you through this again */