/*public*/
ul, li, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;

}
body {
    background-color: #0d0e20;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

/* Page container - for non-admin content pages */
.page-container {
    color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navbar container */
.navbar {
    background-color: #21233a; /* Dark background */
    padding: 1rem 2rem; /* Adjusted padding */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    border-radius: 2rem; /* Rounded corners */
    width: 90%; /* Responsive width */
    max-width: 1200px; /* Max width for larger screens */
    margin: 1rem auto; /* Center the navbar */
}

/* Nav container */
.nav-container {
    display: flex;
    justify-content: space-between; /* Space between logo and links */
    align-items: center;
    padding: 0 1rem; /* Inner padding */
}

/* Logo on the left */
.logo a {
    color: #fff;
    font-size: clamp(1rem, 3vw, 1.5rem); /* Dynamically scale font size */
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: color 0.3s ease; /* Smooth color transition */
}

.logo a:hover {
    color: #3f4265; /* Lighter color on hover */
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 1.5rem; /* Space between links */
    align-items: center;
}
 
.nav-links a {
    display: inline-block;
    min-width: 70px; /* Adjust as needed for your longest link */
    text-align: center;
    transition: color 0.2s;
    /* Optional: set a fixed font-weight and letter-spacing */
    font-weight: 500;
    letter-spacing: normal;
}

.nav-links li a {
    color: #fff;
    font-size: clamp(0.8rem, 2.5vw, 1rem); /* Dynamically scale font size */
    padding: 0.5rem 1rem; /* Padding for clickable area */
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 0.5rem; /* Rounded corners for links */
}

/* Hover effect for links */
.nav-links li a:hover {
    background-color: #3f4265; /* Slightly lighter color on hover */
    color: #fff; /* Ensure text remains visible */
}

/* Menu toggle button for mobile */
.menu-toggle {
    display: none;
    font-size: 1rem; /* Try 1rem, 0.9rem, or any size you like */
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    z-index: 102;
    position: relative;
    margin-left: auto;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
        border-radius: 1rem;
    }

    .nav-container {
        flex-direction: row; /* Keep logo left, menu right */
        align-items: center;
        position: relative;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 102;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        position: absolute;
        top: 100%; /* Directly below the toggle */
        right: 0;  /* Align to the right side */
        left: auto;
        transform: none;
        background: #21233a;
        border-radius: 0 0 1rem 1rem;
        padding: 1rem 2rem;
        min-width: 180px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        z-index: 101;
        align-items: flex-start;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        display: block;
        text-align: left;
        padding: 0.5rem;
    }
}

.breathing-ball {
    width: 50rem;
    height: 25rem;
    background-color: #352e52;
    border-radius: 25rem 25rem 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    filter: blur(4rem);
    top: 28rem;
    z-index: -1;
}

.glowing {
    color: #00ffea;
    text-shadow: 0 0 8px #00ffea, 0 0 2px #00ffea;
    /* Do NOT set font-weight, font-size, or letter-spacing here */
}

/* Getting Started Button */
.getting-started-btn {
    background: linear-gradient(90deg, #00ffea 0%, #3f4265 100%);
    color: #21233a;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,255,234,0.15);
    transition: 
        background 0.3s cubic-bezier(.4,2,.6,1),
        color 0.2s,
        transform 0.1s;
    outline: none;
}

/* Hovered State */
.getting-started-btn:hover:not(:disabled) {
    background: linear-gradient(90deg, #3f4265 0%, #00ffea 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,255,234,0.25);
}

/* Clicked (Active) State */
.getting-started-btn:active:not(:disabled) {
    background: linear-gradient(90deg, #00bfae 0%, #21233a 100%);
    color: #fff;
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(0,255,234,0.10);
}

/* Deactivated (Disabled) State */
.getting-started-btn:disabled,
.getting-started-btn.deactivated {
    background: #888;
    color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
    transform: none;
}

.primary-btn {
    background: linear-gradient(90deg, #00ffea 0%, #3f4265 100%);
    color: #21233a;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,255,234,0.15);
    transition: 
        background 0.3s cubic-bezier(.4,2,.6,1),
        color 0.2s,
        transform 0.1s;
    outline: none;
}
.primary-btn:hover:not(:disabled) {
    background: linear-gradient(90deg, #3f4265 0%, #00ffea 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0,255,234,0.25);
}
.primary-btn:active:not(:disabled) {
    background: linear-gradient(90deg, #00bfae 0%, #21233a 100%);
    color: #fff;
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(0,255,234,0.10);
}
.primary-btn:disabled,
.primary-btn.deactivated {
    background: #888;
    color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
    transform: none;
}

.login-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.5rem;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s, box-shadow 0.2s;
    margin-left: 0.5rem;
}

.login-logo-link:hover,
.login-logo-link:focus {
    background: #23244a;
    box-shadow: 0 0 8px #00ffea55;
}

.login-logo-icon {
    display: block;
    width: 24px;
    height: 24px;
}