:root {
    --ink: #0D1B35;
    --gold: #F5A623;
    --gold-l: #FFD580;
    --teal: #0ABFA3;
    --sky: #F0F5FF;
    --line: #DDE4F0;
    --sans: 'Plus Jakarta Sans', sans-serif;
    --serif: 'Lora', serif;
}

/* ─── ANNOUNCEMENT BAR ─── */
.ann-bar {
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 9px 1rem;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    z-index: 200
}

.ann-bar strong {
    background: var(--gold);
    color: var(--ink);
    padding: 2px 10px;
    border-radius: 99px;
    font-size: 11px;
    margin-left: 8px
}

.ann-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    cursor: pointer;
    line-height: 1
}

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 150;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    gap: 16px;
    font-family: var(--sans);
}

/* ─── MAIN LOGO (replaces old .nav-logo) ─── */
.main-logo {
    flex-shrink: 0;
}

.main-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.main-logo-image {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.main-logo-title {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.04em;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.main-logo-title .logo-accent {
    color: var(--gold);
}

.main-logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: #6C7A99;
    white-space: nowrap;
    margin-top: 2px;
}

.main-logo-subtitle strong {
    color: var(--teal);
    font-weight: 700;
}

/* ─── NAV LINKS ─── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted, #6C7A99);
    text-decoration: none;
    transition: color .18s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links a.active {
    color: var(--ink);
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-xs-ghost {
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 16px;
    border: 1.5px solid var(--line);
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    color: var(--ink);
    transition: all .18s;
    white-space: nowrap;
}

.btn-xs-ghost:hover {
    border-color: var(--ink);
    background: var(--sky);
}

.btn-xs-login {
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 16px;
    border: 1.5px solid var(--teal);
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    color: var(--teal);
    transition: all .18s;
    white-space: nowrap;
}

.btn-xs-login:hover {
    background: var(--teal);
    color: #fff;
}

.btn-xs-gold {
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 99px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    color: var(--ink);
    transition: all .15s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-xs-gold:hover {
    background: var(--gold-l);
    transform: translateY(-1px);
}

/* ─── DROPDOWN MENU ─── */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 200;
    flex-direction: column;
    border: 1px solid var(--line);
}

.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

.nav-dropdown .dropdown-menu a {
    padding: 10px 16px;
    display: block;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: background .18s, color .18s;
}

.nav-dropdown .dropdown-menu a:hover {
    background: var(--sky);
    color: var(--gold);
}

.nav-dropdown .dropdown-toggle::after {
    content: "▼";
    font-size: 8px;
    margin-left: 6px;
    vertical-align: middle;
    color: var(--muted, #6C7A99);
}

/* ─── VIDEO MODAL ─── */
.vmodal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.vmodal-overlay.active {
    display: flex;
}

.vmodal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.vmodal {
    width: min(860px, 92vw);
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.vmodal iframe {
    width: 100%;
    height: 100%;
    border: none;
}