.elementor-17 .elementor-element.elementor-element-b3fe1be{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-8837700 *//* ==============================================
   HEADER STYLES
============================================== */

.bybet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 10px;
    background: #0D5643;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

/* ==============================================
   LOGO
============================================== */
.bybet-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bybet-logo-img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    max-height: 55px;
}

/* ==============================================
   NAVIGATION
============================================== */
.bybet-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.bybet-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    padding: 5px 0;
    position: relative;
}

.bybet-nav a:hover {
    color: #ffb400;
}

.bybet-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: #ffb400;
    transition: 0.3s;
}

.bybet-nav a:hover::after {
    width: 100%;
}

/* ==============================================
   BUTTONS
============================================== */
.bybet-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.bybet-btn-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
    font-family: inherit;
}

.bybet-btn-login:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.bybet-btn-register {
    background: #ffb400;
    border: none;
    color: #0D5643;
    padding: 8px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
    font-family: inherit;
}

.bybet-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 180, 0, 0.5);
}

/* ==============================================
   MOBILE MENU TOGGLE - HAMBURGER
============================================== */
.bybet-menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    padding: 8px 12px;
    background: transparent;
    border: none;
    transition: 0.3s;
    line-height: 1;
    order: 2;
}

.bybet-menu-toggle:hover {
    color: #ffb400;
}

.bybet-menu-toggle .fa-xmark {
    display: none;
}

.bybet-menu-toggle.active .fa-bars {
    display: none;
}

.bybet-menu-toggle.active .fa-xmark {
    display: inline-block;
}

/* ==============================================
   MOBILE ONLY BUTTONS (Hidden on Desktop)
============================================== */
.mobile-only {
    display: none !important;
}

/* ==============================================
   RESPONSIVE - MOBILE
============================================== */

/* Tablets */
@media (max-width: 992px) {
    .bybet-nav {
        gap: 15px;
    }
    
    .bybet-nav a {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bybet-header {
        padding: 8px 15px;
        background: #0D5643;
        position: sticky;
        top: 0;
        z-index: 999;
        width: 100%;
    }

    /* Show hamburger menu */
    .bybet-menu-toggle {
        display: block;
    }

    .bybet-logo {
        order: 1;
        flex: 0 1 auto;
    }

    .bybet-menu-toggle {
        order: 2;
    }

    .bybet-buttons.desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Mobile Navigation */
    .bybet-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 8px;
        padding: 15px 0 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        background: #0D5643;
        order: 3;
        flex-basis: 100%;
    }

    .bybet-nav.active {
        display: flex;
    }

    .bybet-nav a {
        font-size: 15px;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    .bybet-nav a:last-child {
        border-bottom: none;
    }

    .bybet-nav a:hover {
        color: #ffb400;
    }

    .bybet-nav a::after {
        display: none;
    }

    .bybet-nav .bybet-buttons {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bybet-nav .bybet-buttons a {
        width: 100%;
        border-bottom: none;
        padding: 0;
    }

    .bybet-nav .bybet-buttons button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
    }

    .bybet-nav .bybet-buttons .bybet-btn-login {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    .bybet-nav .bybet-buttons .bybet-btn-login:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .bybet-nav .bybet-buttons .bybet-btn-register {
        background: #ffb400;
        color: #0D5643;
        border: none;
        box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
    }

    .bybet-nav .bybet-buttons .bybet-btn-register:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 180, 0, 0.4);
    }

    .bybet-logo-img {
        height: 42px;
        max-height: 42px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .bybet-header {
        padding: 6px 12px;
        background: #0D5643;
    }

    .bybet-logo-img {
        height: 35px;
        max-height: 35px;
    }

    .bybet-menu-toggle {
        font-size: 22px;
        padding: 4px 8px;
    }

    .bybet-nav a {
        font-size: 14px;
        padding: 8px 0;
    }

    .bybet-nav .bybet-buttons button {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .bybet-header {
        padding: 4px 10px;
    }

    .bybet-logo-img {
        height: 30px;
        max-height: 30px;
    }

    .bybet-menu-toggle {
        font-size: 18px;
        padding: 4px 6px;
    }

    .bybet-nav a {
        font-size: 13px;
        padding: 6px 0;
    }

    .bybet-nav .bybet-buttons button {
        padding: 8px 14px;
        font-size: 12px;
    }
}/* End custom CSS */