.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav-title {
    color: #eaeaea;
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

body {
    background: #0a0a0a;
    color: #eaeaea;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;

    padding-top: 80px; /* space for navbar */
}

.dropdown {
    position: relative;
}

.dropbtn {
    background: transparent;
    color: #eaeaea;
    border: 1px solid #444;
    padding: 10px 16px;
    cursor: pointer;
    letter-spacing: 1px;
}

.dropbtn:hover {
    border-color: #ff3b3b;
    box-shadow: 0 0 10px #ff3b3b44;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    min-width: 180px;
    background: #111;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #eaeaea;
    text-decoration: none;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: #1f1f1f;
    color: #ff3b3b;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.page-section {
    padding-top: 140px;
}

.release-card {
    margin-top: 30px;
    padding: 30px;
    border: 1px solid #333;
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.release-card h2 {
    margin-bottom: 10px;
}

.release-card p {
    margin-bottom: 25px;
}

.release-cover {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}