    body {
        background: url('/images/main-bg.jpg') no-repeat center top;
        background-size: cover;
        /* makes image full screen */
        background-attachment: fixed;
        /* keeps image static while scrolling */
        background-color: #e2eefe;
        /* fallback color */
        margin: 0;
        padding: 0;
        min-height: 100vh;
    }

    .top-header {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #a6b5fa28;
        backdrop-filter: blur(5px);
    }

    .logo img {
        height: 50px;
    }

    .header-buttons .btn {
        border-radius: 30px;
        font-weight: 600;
        padding: 6px 16px;
        font-size: 0.95rem;
        text-transform: uppercase;
    }

    .btn-soikeo {
        background-color: #5a7cff;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .btn-soikeo img {
        height: 22px;
    }

    .btn-login {
        background-color: #5a7cff;
        color: #fff;
    }

    .btn-register {
        background-color: #fff;
        border: 1px solid #5a7cff;
        color: #5a7cff;
    }

    .header-gif {
        position: relative;
        top: -5px;
        overflow: visible;
        margin: auto;
        height: 45px;
    }

    .header-gif img {
        height: 100%;
    }

    .header-gif img.domain {
        position: absolute;
        bottom: -15px;
        left: 50%;
        height: 20px;
        transform: translateX(-50%);
    }

    @media (max-width: 992px) {
        .header-gif {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .logo img {
            height: 45px;
        }

        .header-buttons .btn {
            padding: 4px 12px;
            font-size: 0.65rem;
        }

        .btn-soikeo img {
            height: 15px;
        }

        .sub-menu .nav-link {
            font-size: 0.65rem !important;
        }

        .top-header {
            padding: 5px 0 !important;
        }
    }

    @media (max-width: 576px) {
        .logo img {
            height: 35px;
        }

        .header-buttons .btn {
            padding: 5px 15px;
            font-size: 0.65rem;
        }

        .btn-soikeo img {
            height: 15px;
        }

        .sub-menu .nav-link {
            font-size: 0.5rem !important;
        }
    }

    @media (max-width: 365px) {
        .logo img {
            height: 25px;
        }

        .header-buttons .btn {
            padding: 4px 8px;
            font-size: 0.6rem;
        }

        .btn-soikeo img {
            height: 15px;
        }

        .header-buttons.gap-2 {
            gap: .2rem !important;
        }
    }

    /* ====== Submenu Bar ====== */
    .sub-menu {
        padding-top: 10px;
    }

    .sub-menu .nav-link {
        color: #204090;
        font-weight: 600;
        font-size: 0.9rem;
        padding: 5px 10px;
        position: relative;
        transition: all 0.3s ease;
        border-radius: 20px;
    }

    .sub-menu .nav-link:hover,
    .sub-menu .nav-link.active {
        color: #fff;
        background-color: #5271ff;
        border-radius: 20px;
    }

    .hot-icon {
        position: absolute;
        top: -8px;
        right: 0;
        font-size: 0.7rem;
        color: #ff4500;
    }


    /* ====== Item Grid ====== */

    .item-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 10px;
        justify-items: center;
        align-items: stretch;
    }
    .item-section {
        background: #a6b5fa28;
        backdrop-filter: blur(5px);
        display: none;
        position: absolute;
        top: 110px; /* adjust to your header/menu height */
        left: 0;
        width: 100%;
        z-index: 2;
        animation: fadeIn 0.4s ease-in-out;
    }

    .item-section.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .item-card {
        border-radius: 10px;
        text-align: center;
        padding: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: relative;
        cursor: pointer;
    }
    .item-card:hover {
        background: linear-gradient(to bottom, transparent, rgba(100, 115, 255, .5));
    }

    .item-card img {
        border-radius: 16px;
        width: 100%;
        transition: transform 0.3s ease;
    }

    .item-card:hover img {
        transform: scale(1.05);
    }
    .item-card p {
        color: #d33;
        font-size: 0.7rem;
        margin: 0;
    }
    .badge-hot {
        position: absolute;
        top: 8px;
        left: 8px;
        background: #ff4500;
        color: #fff;
        font-size: 0.7rem;
        border-radius: 6px;
        padding: 2px 6px;
    }
    .notification-inner {
        gap: 10px;
        color: #797979;
        font-size: 14px;
        border-radius: 50px;
        background: linear-gradient(to bottom, #fff 40%, #ebeeff, #fff 95%);
        box-shadow: 0 3px 4px -1px rgba(105, 130, 255, .35);
        padding: 5px 20px;
    }
    .notification-icon {
        width: 100px;
        height: 100%;
    }

    
    .fifa-banner {
        background: linear-gradient(135deg, #f8fbff, #e7f0ff);
        border: 1px solid rgba(0, 0, 255, 0.1);
        backdrop-filter: blur(5px);
        margin-top: 15px;
        padding: 20px;
    }

    /* Countdown Box */
    .countdown {
        background: #1f5cff;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(31, 92, 255, 0.3);
    }

    /* Countdown Item */
    .count-item {
        padding: 10px 15px;
        text-align: center;
        color: #6ef2ff;
        background: #5a7cff;
    }
    .text-fifa{
        font-size: 2rem;
    }
    .count-item h3 {
        font-size: 1.8rem;
        color: #44f8f9;
    }

    .count-item small {
        display: block;
        color: #fff;
        font-weight: 500;
        letter-spacing: 1px;
    }

    /* Rounded corners for the first and last items */
    .count-item.rounded-start {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
    }

    .count-item.rounded-end {
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    @media (max-width: 992px) {

        .item-grid { 
            grid-template-columns: repeat(6, 1fr); 
            gap: 8px;
        }
        .notification-inner {
            gap: 5px;
            font-size: 10px;
        }
        .notification-icon {
            width: 70px;
        }
        .fifa-banner {
            margin-top: 10px;
            padding: 15px;
        }
        .text-fifa{
            font-size: 1.5rem;
        }
        .count-item h3 {
            font-size: 1.2rem;
        }
        .count-item small {
            font-size: 0.7rem;
        }
    }
    @media (max-width: 768px) {
        
        .badge-hot {
            font-size: 0.55rem;
        }
        .item-card p {
            font-size: 0.55rem;
            margin: 0;
        }
        .item-grid { 
            grid-template-columns: repeat(5, 1fr); 
            gap: 4px;
        }
        .notification-inner {
            gap: 5px;
            font-size: 8px;
        }
        .notification-icon {
            width: 50px;
        }

        .fifa-banner {
            margin-top: 8px;
            padding: 10px;
        }
        .text-fifa{
            font-size: 1.2rem;
        }
        .count-item h3 {
            font-size: 1rem;
        }
        .count-item small {
            font-size: 0.5rem;
        }
 
    }
    @media (max-width: 576px) {
        .badge-hot {
            font-size: 0.30rem;
        }
        .item-card p {
            font-size: 0.35rem;
        }
        .item-grid { 
            grid-template-columns: repeat(4, 1fr); 
            gap: 4px;
        }

        
        .fifa-banner {
            margin-top: 5px;
            padding: 5px;
        }
        .text-fifa{
            font-size: 0.8rem;
        }
        .count-item h3 {
            font-size: 0.7rem;
        }
        .count-item small {
            font-size: 0.4rem;
        }
    }


