

/* HERO SHELL (FORM CONTAINER) */
.hero-shell {
    position: relative;
    /* max-width: 900px; */
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #050712 0, #0b1020 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 246, 255, 0.18);
    box-shadow:
        0 0 40px rgba(0, 246, 255, 0.15),
        0 0 80px rgba(0, 246, 255, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.85);
    padding: 40px;
    background-size: 200% 200%;
    animation: pulseBG 8s ease-in-out infinite;
}

@keyframes pulseBG {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

/* MENU BUTTON */
.menu-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 246, 255, 0.1);
    border: 1px solid rgba(0, 246, 255, 0.4);
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    color: var(--accent);
    font-size: 18px;
    text-shadow: var(--shadow-neon);
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    background: rgba(0, 246, 255, 0.2);
    box-shadow: var(--shadow-neon);
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    background: rgba(5, 7, 18, 0.9);
    border: 1px solid rgba(0, 246, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 0 22px rgba(0, 246, 255, 0.4);
    padding: 12px 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 200ms ease-out;
}

.dropdown-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(0, 246, 255, 0.15);
    color: var(--accent);
}

.panel-title-heading {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
}

.panel-title-heading img {
    width: 100%;
    max-width: 133px;
}

/* .panel-title-heading .panel-title-logo-container {
    max-width: 50px;
    margin-right: 20px;
}

.panel-title-text-container h1 {
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 45px;
} */

.qos-popup-panels {
    background: radial-gradient(circle at top, #2a2f63 0%, #151731 60%);
    border: 2px solid var(--panel-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 12px 35px rgba(9, 11, 40, 0.65),
        0 0 22px rgba(143, 155, 255, 0.5);
}