/* Footer Styling */
.site-footer {
    text-align: center;
    padding: 15px 0;
    background: #111;
    border-top: 2px solid #00ff00;
    margin-top: 20px;
}

.sponsors {
    margin-bottom: 10px;
}

.sponsors h3 {
    color: #00ff00;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.sponsor-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 5px;
}

.sponsor-link {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(0, 255, 0, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sponsor-link:hover {
    background: rgba(0, 255, 0, 0.4);
    text-decoration: underline;
}

/* Copyright Text */
.footer-copyright {
    color: #aaa;
    font-size: 14px;
    margin-top: 10px;
}
/* ========== Header Styles ========== */
.site-header {
    background-color: #111;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #00ff00;
}

.header-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 50px;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-menu a:hover {
    color: #00ff00;
}

/* User Authentication Section */
.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Login Form Inside Header */
#header-login-form {
    display: flex;
    gap: 5px;
}

#header-login-form input {
    padding: 5px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #222;
    color: white;
}

#header-login-form .login-btn {
    background: #00ff00;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#header-login-form .login-btn:hover {
    background: #008000;
}

/* Signup Link */
.signup-link {
    color: #00ff00;
    font-weight: bold;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

/* Avatar & Dropdown */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #00ff00;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background: #222;
    border: 1px solid #00ff00;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
    display: block;
    padding: 5px;
    color: white;
    text-decoration: none;
}

.dropdown-menu a:hover {
    color: #00ff00;
}

.dropdown .show {
    display: block;
}

/* ========== Footer Sponsor Section ========== */
.footer-sponsors {
    text-align: center;
    margin-top: 10px;
}

.footer-sponsors a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: #222;
    color: #00ff00;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    margin: 5px;
}

.footer-sponsors a:hover {
    background-color: #00ff00;
    color: #111;
}

.footer-sponsors a img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    filter: brightness(0) invert(1); /* Makes icons match dark mode */
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

/* Disabled Navigation Style */
.nav-disabled {
    color: #888; /* Greyed out */
    cursor: not-allowed;
    text-decoration: none;
    font-weight: bold;
    opacity: 0.6;
}
