:root {
    --bg: #0e0e0e;
    --text: #ffffff;
    --accent: #005b0f;
    --input-bg: #1a1a1a;
    --input-border: #2a2a2a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

.banner-bar {
    height: 40px;
    text-align: center;
    background-color: #028818;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
   
    overflow: hidden;
    color: white;
}

.banner-item {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
    white-space: nowrap;
}

.site-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--bg);
    border: 1px solid var(--input-border);

}

.header-inner {
    padding: 20px 40px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'montserrat', sans-serif;
    font-size: 1.25em;
}

.logo-text {
    color: white !important;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.logo-text:hover {
    color: rgb(203, 203, 203);
    text-decoration: none;
}

.nav-link {
    border: 1px solid var(--accent) !important;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.4s
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 5px;
    ;
}

.nav-link:hover {
    transform: translateY(-3px);
}

.navbar-signup {
    background-color: var(--accent);
}

.signup-button {
    background-color: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
}

.signup-button:hover {
    background: #049112;
    border-color: #ceffcb;
}

.active {
    background: var(--accent);
    color: #fff;
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #1a1a1a;
}