body {
    padding-top: 265px; /* 56px (navbar1) + 113px (logo/ads) + 56px (navbar2) + 40px (news ticker) */
    background: linear-gradient(to right, #ff7e5f, #feb47b, #86a8e7, #91eacb);
}

.main-navbar {
    z-index: 1040;
}

.navbar-brand {
    font-weight: bold;
}

.secondary-navbar {
    top: 169px;
}

.glass-ui {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
}

.navbar {
    background: rgba(0, 0, 0, 1) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .nav-link {
    color: white !important;
    font-weight: bold;
    position: relative;
    text-decoration: none;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white; /* Underline color */
    transition: width 0.3s ease-in-out;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link:hover {
    color: rgba(255, 255, 255, 0.7) !important;
}

.sidebar-section {
    border: 2px solid rgba(255, 255, 255, 0.5); /* More prominent border */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Optional: add a subtle shadow */
}

.sidebar-link {
    display: block;
    padding: 8px 12px;
    margin-bottom: 5px;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-section {
    padding: 100px 0;
}

.card {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Styles */
.footer .footer-link-1 a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .footer-link-1 a:hover {
    color: #ffffff;
}

.footer .white-link a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .white-link a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer .avatar {
    width: 48px;
    height: 48px;
}

.footer .footer-border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-ad {
    max-width: 100%;
    height: auto;
}

@keyframes ticker-animation {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    body {
        padding-top: 225px; /* Adjust for the two navbars height + margin */
    }

    #logo-ads-section,
    #news-ticker {
        display: none;
    }

    .secondary-navbar {
        top: 56px;
        margin-top: 3cm; /* Add space between navbars - NOTE: cm is not a standard unit for screen design */
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 50px 0;
    }
}