:root {
    --primary: #ff1276;
    --glowStrong: rgba(255,0,140,0.75);

    --glass-bg: rgba(255,255,255,0.10);
    --glass-bg-dark: rgba(15,15,25,0.55);
    --glass-blur: blur(20px);
    --glass-border: rgba(255,255,255,0.18);

    --text-light: #f8f8f8;
}

/* NAVBAR CORE */
.v-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 18px 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(10,12,22,0.45);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 9999;
    pointer-events: auto;
}

/* LOGO */
.v-logo {
    height: 80px;
    transform: scale(1.9);
    transform-origin: left center;
}

/* DESKTOP LINKS */
.v-links {
    display: flex;
    gap: 36px;
}
.v-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: 0.25s;
}

/* Hover animation */
.v-links a:hover {
    transform: scale(1.15);
    color: var(--primary);
}

/* Active underline */
.v-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 6px;
}

/* INDUSTRY NEWS BUTTON */
.v-news-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #ff007f, #8a2be2);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    box-shadow: 0 0 12px rgba(255,20,120,0.45);
    transition: .28s ease;
}

.v-news-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 18px rgba(255,20,120,0.7);
}

/* HAMBURGER */
.v-hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 20px;
    position: relative;
    z-index: 10000;
}
.v-hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

/* Animated hamburger → X */
.v-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.v-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.v-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* GLASSMORPHIC MENU PANEL */
.v-menu-panel {
    position: fixed;
    top: 0;
    right: -330px;
    width: 300px;
    height: 100vh;

    background: var(--glass-bg-dark);
    border-left: 1px solid var(--glass-border);

    padding: 40px 28px;

    display: flex;
    flex-direction: column;
    gap: 35px;

    transition: right .35s ease;
    box-shadow: -6px 0 18px rgba(0,0,0,0.4);
    z-index: 550;
    pointer-events: auto;
}

.v-menu-panel.open {
    right: 0;
}

/* Premium section headings */
.v-panel-section h4 {
    font-size: 15px;
    color: #fff;
    opacity: .9;
    margin-bottom: 8px;
}

/* Premium line */
.v-section-line {
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin-bottom: 14px;
}

/* menu links */
.v-panel-section a {
    color: #ececec;
    text-decoration: none;
    display: block;
    font-size: 15px;
    padding: 6px 0;
    opacity: .85;
    transition: .25s;
}

.v-panel-section a:hover {
    opacity: 1;
    transform: translateX(8px);
}

/* highlight quick links */
.v-panel-section .highlight {
    color: var(--primary);
    font-weight: 700;
}

/* MOBILE: hide desktop links */
@media(max-width: 768px){
    .v-links {
        display: none;
    }
    .v-news-btn {
        display: none;
    }
}

.v-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);   /* dim, no blur */
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 500;                  /* below panel (panel is 400) */
}

/* When menu opens */
.v-menu-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* ACTIVE PAGE (Desktop navbar) */
.v-links a.active-page {
    color: var(--primary);
    font-weight: 600;
    transform: scale(1.22);   /* magnify slightly */
    opacity: 1;
}





/* WRAPPER */
.v-ann {
    position: relative;
    left: 50px;
}

/* BELL ICON */
.v-ann-icon-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.v-ann-icon {
    width: 88px;
    height: 88px;
    display: block;
}

.v-ann-icon-wrap:hover .v-ann-icon {
    transform: scale(1.1);
}


/* NEW BADGE */
.v-ann-label {
    background: #ff2f92;
    color: #fff;

    font-size: 10px;      /* SMALL */
    font-weight: 600;
    padding: 4px 10px;    /* SMALL */
    border-radius: 999px;

    box-shadow: 0 0 8px rgba(255,47,146,.6);
    white-space: nowrap;
    align-self: flex-start;   /* KEY FIX */
    margin-top: -1px;

    animation: vAnnPulse 2s infinite;
}

@keyframes vAnnPulse {
    0%,100% { transform: scale(1); opacity: .75; }
    50% { transform: scale(1.25); opacity: 1; }
}



/* ANNOUNCEMENT DROPDOWN */
.v-ann-dropdown {
    position: absolute;
    top: 127%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    transform-origin: top center;

    width: 280px;
    padding: 18px;

    background: rgba(12, 12, 18, 0.92);   /* much less transparent */
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35),
        inset 0 0 20px rgba(255,255,255,0.08);

    opacity: 0;
    pointer-events: none;
    z-index: 9999;
}

/* SHOW WITH DROPDOWN BOUNCE */
.v-ann:hover .v-ann-dropdown {
    opacity: 1;
    pointer-events: auto;
    animation: vDropBounce 0.55s ease-out forwards;
}

@keyframes vDropBounce {
    0% {
        transform: translateX(-50%) translateY(-20px) scale(0.95);
        opacity: 0;
    }
    55% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }
    72% {
        transform: translateX(-50%) translateY(-6px) scale(0.98);
    }
    88% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    95% {
        transform: translateX(-50%) translateY(-3px) scale(0.995);
    }
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.v-ann-dropdown p {
    opacity: 0;
    transform: translateY(-10px);
    color: #f8f8f8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.v-ann-dropdown p:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid transparent;
    background-image: linear-gradient(
        to right,
        rgba(255, 20, 120, 0.65),
        rgba(255, 255, 255, 0.08)
    );
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: bottom left;
}

.v-ann:hover .v-ann-dropdown p {
    animation: vAnnLineDrop .45s ease-out forwards;
    opacity: 1;
}

@keyframes vAnnLineDrop {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    60% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.v-ann-dropdown p:nth-child(1) { animation-delay: .65s; }
.v-ann-dropdown p:nth-child(2) { animation-delay: .75s; }
.v-ann-dropdown p:nth-child(3) { animation-delay: .85s; }
.v-ann-dropdown p:nth-child(4) { animation-delay: .95s; }



/* MOBILE: hide announcement icon completely */
@media (max-width: 768px) {
    .v-ann {
        display: none;
    }
}

