html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    min-height: 100vh;
}

.hidden {
    display: none !important;
}

header .navbar {
    margin: 0;
    background: #000 !important;
    border-bottom: 1px solid rgba(43, 191, 106, .35);
    box-shadow: none;
}

header .navbar-brand {
    color: #eaffea !important;
    font-weight: 800;
    text-shadow:
        0 0 6px rgba(18, 140, 70, .65),
        0 0 14px rgba(18, 140, 70, .45);
}

header .navbar-brand:hover {
    color: #fff !important;
}

.top-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    height: 56px;
    padding: 0 16px;
}

.top-left {
    justify-self: start;
}

.top-right {
    justify-self: end;
}

.hamburger-btn {
    background: none;
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-btn span {
    width: 26px;
    height: 3px;
    background: #2dff7a;
    border-radius: 3px;
    box-shadow:
        0 0 6px rgba(45, 255, 122, .9),
        0 0 14px rgba(45, 255, 122, .7),
        0 0 26px rgba(45, 255, 122, .5);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, .55);
}

.right-menu {
    position: fixed;
    top: 0;
    right: -320px;
    z-index: 999;
    width: 300px;
    height: 100%;
    padding: 18px;
    background: linear-gradient(180deg, #07150d, #000);
    border-left: 2px solid rgba(43, 191, 106, .55);
    box-shadow: -10px 0 30px rgba(0, 0, 0, .7);
    transition: right .35s ease;
}

.right-menu.open {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    color: #2dff7a;
    font-size: 28px;
    font-weight: 900;
    text-shadow:
        0 0 10px rgba(45, 255, 122, .55),
        0 0 22px rgba(45, 255, 122, .35);
}

.menu-close {
    background: none;
    border: none;
    color: #2dff7a;
    font-size: 28px;
    cursor: pointer;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.glow-btn,
.gen-btn {
    display: inline-block;
    background: rgba(18, 140, 70, .25);
    border: 2px solid #2bbf6a;
    color: #eaffea !important;
    font-weight: 800;
    border-radius: 10px;
    padding: 8px 14px;
    text-decoration: none;
    text-align: center;
    text-shadow: 0 0 6px rgba(18, 140, 70, .9);
    box-shadow:
        0 0 12px rgba(18, 140, 70, .65),
        inset 0 0 10px rgba(18, 140, 70, .45);
    transition: all .15s ease-in-out;
    cursor: pointer;
}

.glow-btn:hover,
.gen-btn:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow:
        0 0 18px rgba(18, 140, 70, .95),
        0 0 32px rgba(18, 140, 70, .75);
}

.cancel-btn {
    border-color: #a44;
    background: rgba(130, 20, 20, .35);
}

footer.footer {
    background: #000;
    padding: 8px 0;
}

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

.footer-text {
    color: #aaa;
    font-size: 14px;
    line-height: 1.1;
}

.footer-logo {
    width: auto;
    height: 50px;
    display: block;
}