/* Global Reset & Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Layout Helpers */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header & Navigation */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 10;
    padding: 0 20px;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
    padding: 12px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    display: inline-block;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
}

.navbar li a {
    position: relative;
    font-weight: 500;
    font-size: 1em;
    padding: 8px 12px;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.3s ease;
}

.navbar li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.navbar li a:hover {
    transform: translateY(-4px) scale(1.02);
    color: #ccc;
}

.navbar li a:hover::after {
    width: 100%;
}

.navbar li a.active {
    font-weight: bold;
}

.left-logo,
.right-placeholder {
    width: 50px;
}

.left-logo img {
    width: 50px;
    height: 50px;
    padding: 5px;
    border-radius: 50%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.left-logo img:hover {
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transform: scale(1.05);
}

/* Shared Footer */
.site-footer {
    padding: 25px;
    text-align: center;
}

.site-footer p {
    margin-bottom: 5px;
    color: #777;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        gap: 12px;
    }
}
