.floating-banner {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 70px;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0 0 0;
    pointer-events: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* Black belt design */
    overflow: hidden;
}

.banner-logo {
    padding: 0 10px;
    pointer-events: auto;
}

.banner-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.banner-logo img:hover {
    transform: scale(1.05);
}

.banner-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 10px 0;
    pointer-events: auto;
    position: absolute;
    bottom: 10px; /* Changed from 10px to 120px to move it higher */
    left: 6px;
    width: 100%;
}

.social-icon {
    width: 30px;
    height: 30px;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 1px 0;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--gracie-red);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* Black belt elements */
.belt-section {
    position: absolute;
    bottom: 90px; /* Changed from 0 to 50px to move it higher */
    left: 0;
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 2;
}

/* Media query for 1024px resolution */
@media (max-width: 1024px) and (min-width: 769px) {
    .floating-banner {
        width: 60px;
    }
    
    .banner-logo {
        padding: 0 8px;
    }
    
    .social-icon {
        width: 25px;
        height: 25px;
    }
    
    .banner-social {
        left: 5px;
    }
}

.belt-red-section {
    height: 150px;
    width: 100%;
    background-color: rgba(204, 0, 0, 0.651);
    position: relative;
    border-top: 8px solid rgba(255, 255, 255, 0.9);
    border-bottom: 8px solid rgba(255, 255, 255, 0.9);
}

.belt-stripe-bar {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.99);
}

.belt-degree {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.99);
}

.belt-degree-2 {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.99);
}

/* Removing the white separator line at the top */
/* .belt-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: white;
    z-index: 1;
} */

@media (max-width: 768px) {
    .floating-banner {
        height: 60px;
        width: 100vw;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        margin: 0;
        left: 0;
    }

    .banner-logo {
        padding: 10px 20px;
    }

    .banner-logo img {
        height: 40px;
        width: auto;
    }

    .banner-social {
        position: static;
        flex-direction: row;
        gap: 15px;
        padding: 0 20px;
        justify-content: flex-end;
    }

    .belt-section {
        display: none;
    }
}
    .social-icon {
        width: 25px;
        height: 25px;
    }

    @media (max-width: 1024px) {
        .floating-banner {
            height: 60px;
            width: 100%;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            padding: 0;
            border-right: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.3);
            margin: 0;
            left: 0;
        }
    
        .banner-logo {
            padding: 10px 20px;
        }
    
        .banner-logo img {
            height: 40px;
            width: auto;
        }
    
        .banner-social {
            position: static;
            flex-direction: row;
            gap: 15px;
            padding: 0 20px;
            justify-content: flex-end;
        }
    
        .belt-section {
            display: none;
        }
    }
        .social-icon {
            width: 25px;
            height: 25px;
        }
        


