#version2-header {
    width: 100%;
    background-color: #0b0e11 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid var(--Graphite-Gray, #1e2329) !important;
    padding: 18px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.version2-header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

@media (min-width: 1440px) {
    .version2-header-content {
        width: 1440px;
    }
}

.version2-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none !important;
}

.version2-header-logo-link {
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.version2-header-logo-link:hover {
    color: #ffffff73 !important;
    transition: all 0.3s ease;
}

.version2-header-logo-text {
    color: #fff;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.version2-menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Notification Wrapper */
.notification-wrapper {
    position: relative;
}

/* Registration Button */
.version2-header-register-btn {
    display: flex;
    height: 36px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 32px;
    background: linear-gradient(90deg, #ff3358 0%, #f0890b 100%);
    color: #fff !important;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    text-decoration: none !important;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 51, 88, 0.3);
}

.version2-header-register-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 51, 88, 0.5);
    transform: translateY(-1px);
}

#version2-header-notification {
    position: relative;
    display: flex;
    height: 32px;
    padding: 0 9px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 32px;
    background: var(--Graphite-Gray, #1e2329);
    box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
    transition: all 0.2s ease;
    cursor: pointer;
}

#version2-header-notification:hover {
    background: rgba(240, 137, 11, 0.1);
    box-shadow: 0 -1px 0 0 rgba(240, 137, 11, 0.2),
        0 0 0 1px rgba(240, 137, 11, 0.3), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 4px 8px 0 rgba(240, 137, 11, 0.2);
}

#version2-header-notification .notif_value {
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ff3358 0%, #f0890b 100%);
    color: #fff;
    font-family: Montserrat;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
}

#version2-header-menu {
    position: relative;
    display: flex;
    height: 32px;
    padding: 0 9px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 32px;
    background: var(--Graphite-Gray, #1e2329);
    box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
    transition: all 0.2s ease;
    cursor: pointer;
}

#version2-header-menu:hover {
    background: rgba(240, 137, 11, 0.1);
    box-shadow: 0 -1px 0 0 rgba(240, 137, 11, 0.2),
        0 0 0 1px rgba(240, 137, 11, 0.3), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 4px 8px 0 rgba(240, 137, 11, 0.2);
}

/* Responsive Styles */

/* Tablets and smaller desktops */
@media (max-width: 1200px) {
    #version2-header {
        padding: 20px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    #version2-header {
        padding: 20px;
    }

    .version2-header-logo-text {
        font-size: 18px;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    #version2-header {
        padding: 20px;
    }

    .version2-header-content {
        gap: 16px;
    }

    .version2-header-logo {
        gap: 8px;
    }

    .version2-header-logo svg {
        width: 20px;
        height: 20px;
    }

    .version2-header-logo-text {
        font-size: 16px;
    }

    .version2-menu-items {
        gap: 8px;
    }

    .version2-header-register-btn {
        height: 32px;
        padding: 0 16px;
        font-size: 12px;
    }

    #version2-header-notification,
    #version2-header-menu {
        height: 28px;
        padding: 0 8px;
    }

    #version2-header-notification svg,
    #version2-header-menu svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    #version2-header {
        padding: 20px;
    }

    .version2-header-logo {
        gap: 6px;
    }

    .version2-header-logo svg {
        width: 18px;
        height: 18px;
    }

    .version2-header-logo-text {
        font-size: 14px;
    }

    .version2-menu-items {
        gap: 6px;
    }

    .version2-header-register-btn {
        height: 28px;
        padding: 0 14px;
        font-size: 11px;
    }

    #version2-header-notification,
    #version2-header-menu {
        width: 32px;
        height: 32px;
        gap: 4px;
    }

    #version2-header-notification svg,
    #version2-header-menu svg {
        width: 14px;
        height: 14px;
    }

    .notif_value {
        font-size: 10px;
        min-width: 14px;
        height: 14px;
        line-height: 14px;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    #version2-header {
        padding: 20px;
    }

    .version2-header-logo-text {
        font-size: 12px;
    }

    .version2-menu-items {
        gap: 4px;
    }

    .version2-header-register-btn {
        height: 26px;
        padding: 0 12px;
        font-size: 10px;
    }

    #version2-header-notification,
    #version2-header-menu {
        height: 32px;
        height: 32px;
        padding: 0 6px;
    }

    #version2-header-notification svg,
    #version2-header-menu svg {
        width: 12px;
        height: 12px;
    }
}
