.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.custom-navbar {
    position: relative;
    height: clamp(170px, 24vw, 220px);
    background:
        radial-gradient(circle at center, rgba(110, 110, 110, 0.18), transparent 58%),
        linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    overflow: hidden;
    border-bottom: 1px solid #181818;
}

.brand-lockup {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    pointer-events: none;
}

.logo-frame {
    width: clamp(96px, 12vw, 140px);
    height: clamp(96px, 12vw, 140px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    filter: brightness(1.35) contrast(1.12) drop-shadow(0 0 18px rgba(255, 255, 255, 0.16));
    transform: scale(1.08);
    transform-origin: center center;
}

.brand-title {
    margin: 0;
    color: #f3f3f3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3.8vw, 48px);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.brand-accent {
    width: min(260px, 42vw);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, #7e1717 20%, #ff3333 50%, #7e1717 80%, transparent 100%);
    box-shadow: 0 0 14px rgba(255, 51, 51, 0.35);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.info-bar {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 8px;
    font-size: 20px;
    border-bottom: 1px solid #222;
}

.info-bar a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.info-bar a:hover {
    color: #fff;
    text-decoration: underline;
}
