    .bmain {
        z-index: -2;
        margin: auto;
        background-color: transparent;
    }

    .startthing {
        min-width: 100%;
        min-height: 100%;
        position: fixed;
        z-index: 10; /* Make sure start screen is on top */
    }

    .next {
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        cursor: pointer;
        color: white;
        font-size: 1.5em;
    }

    .navbar {
        z-index: 5;
        visibility: hidden;
    }

    .navigation-clean {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }

    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    /* Initially hidden, to be toggled visible on click */
.main {
    z-index: 4;
    visibility: hidden;
    top: 55%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    transform: translateX(-50%) translateY(-50%);
    color: white;
    background-color: transparent; /* ← FIXED this line */
    padding: 20px;
    overflow-y: auto;
}


    .containers {
        max-width: 900px;
        height: 100%;
        padding-bottom: 30px;
        margin: auto;
    }

    .Brand {
        height: 50%;
        width: 80%;
        margin: auto;
    }

    .Paragraph {
        max-width: 60%;
        margin: 0 auto;
        text-align: center !important;
        color: #fff;
        font-size: 2em;
    }

    .Hello {
        padding-top: 70px;
    }

    .a {
        text-align: center;
    }

    #Bruh {
        margin-left: 0.65pc;
        font-size: 1em;
    }

    .typed-cursor {
        color: #fff;
    }

    .main_image1 {
        max-width: 300px;
        max-height: 300px;
        padding-top: 80px;
        margin: 0 auto;
        display: flex !important;
    }

    /* Background container initially hidden */
    .background {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0; 
        left: 0;
        z-index: -3;
        visibility: visible;
    }

    /* Pattern overlay behind video */
    #pattern {
        position: fixed;
        width: 100%;
        height: 100%;
        background: transparent url("../../assets/img/others/dot.png") repeat 0 0;
        z-index: -1;
        opacity: 1;
    }

    /* Background video styling with blur and cover */
    #background {
        z-index: -2;
        position: fixed;
        top: 50%;
        left: 50%;
        min-width: 135%;
        min-height: 110%;
        width: auto;
        height: auto;
        transform: translateX(-50%) translateY(-50%);
        background-size: cover;
        overflow: hidden;
    }

    /* Project specific */
    .TOP {
        max-width: 60%;
        margin: 0 auto;
        text-align: center !important;
        color: rebeccapurple;
        visibility: hidden;
    }

    * {
        font-family: consolas, sans-serif;
    }

    a {
        text-decoration: none;
        color: #fff;
    }

    a:hover {
        color: #fff;
    }

    html {
        cursor: url("../../assets/img/others/cursor.png"), default;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    iframe {
        padding-top: 50px;
        margin: 0 auto;
        display: flex !important;
    }

    video {
        object-fit: cover; /* Changed from contain to cover */
    }

    .link-btn .btn-icon {
        width: 50px;
        height: 50px;
        margin-right: 8px;
        border-radius: 4px;
        object-fit: contain;
        vertical-align: middle;
        background: transparent;
    }
