/* =========================================================
   VOTEMYBABY HEADER
   PURE CSS - NO TAILWIND
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


/* =========================================================
   VARIABLES
========================================================= */
:root {

    --vmb-font: "Outfit", sans-serif;

    --vmb-white: #ffffff;
    --color-blue-100: oklch(93.2% .032 255.585);
    --vmb-slate-50: #f8fafc;
    --vmb-slate-100: #f1f5f9;
    --vmb-slate-200: #e2e8f0;
    --vmb-slate-300: #cbd5e1;
    --vmb-slate-400: #94a3b8;
    --vmb-slate-500: #64748b;
    --vmb-slate-600: #475569;
    --vmb-slate-700: #334155;
    --vmb-slate-800: #1e293b;
    --vmb-slate-900: #0f172a;
    --vmb-slate-950: #020617;

    --vmb-indigo-50: oklch(96.2% .018 272.314);
    --vmb-indigo-200: oklch(87% .065 274.039);
    --vmb-indigo-500: #6366f1;
    --vmb-indigo-600: oklch(51.1% .262 276.966);
    --vmb-indigo-700: oklch(45.7% .24 277.023);
    --vmb-indigo-950: #1e1b4b;

    --vmb-pink-50: #fdf2f8;
    --vmb-pink-100: #fce7f3;
    --vmb-pink-200: #fbcfe8;
    --vmb-pink-500: #ec4899;
    --vmb-pink-600: #db2777;
    --vmb-pink-700: #be185d;

    --vmb-rose-500: #f43f5e;
    --vmb-rose-600: #e11d48;

    --vmb-amber-50: #fffbeb;
    --vmb-amber-100: #fef3c7;
    --vmb-amber-200: #fde68a;
    --vmb-amber-300: #fcd34d;
    --vmb-amber-400: #fbbf24;
    --vmb-amber-500: #f59e0b;
    --vmb-amber-600: #d97706;
    --vmb-amber-700: #b45309;
    --vmb-amber-800: #92400e;
    --vmb-amber-900: #78350f;
    --vmb-amber-950: #451a03;

    --vmb-blue-50: #eff6ff;
    --vmb-blue-200: #bfdbfe;
    --vmb-blue-500: #3b82f6;

    --vmb-emerald-50: #ecfdf5;
    --vmb-emerald-200: #a7f3d0;
    --vmb-emerald-500: #10b981;
    --vmb-emerald-600: #059669;

    --vmb-radius-2xl: 1rem;

    --vmb-transition: 0.2s ease;
    --vmb-purple-50: #faf5ff;
    --vmb-purple-100: #f3e8ff;
    --vmb-purple-200: #e9d5ff;
    --vmb-purple-500: #a855f7;

    --vmb-rose-50: #fff1f2;
    --vmb-rose-200: #fecdd3;

    --vmb-cyan-50: #ecfeff;
    --vmb-cyan-200: #a5f3fc;
    --vmb-cyan-500: #06b6d4;

    --vmb-indigo-50: #eef2ff;
    --vmb-indigo-200: #c7d2fe;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--vmb-font);
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

/* =========================================================
   RESET
========================================================= */

.vmb-header,
.vmb-header * {
    box-sizing: border-box;
}


.vmb-header button,
.vmb-header a {
    font-family: var(--vmb-font);
}


/* =========================================================
   HEADER
========================================================= */

.vmb-header {

    position: sticky;

    top: 0;

    z-index: 9999;

    width: 100%;

    font-family: var(--vmb-font);

    background:
        rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(226, 232, 240, 0.8);

    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04);

}


/* =========================================================
   CONTAINER
========================================================= */

.vmb-container {

    width: 100%;

    max-width: 1280px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;

}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.vmb-navigation {

    position: relative;

    background:
        var(--vmb-white);

}


.vmb-navigation-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* =========================================================
   LOGO
========================================================= */
.vmb-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    padding: 0;
    margin: 0;

    border: 0;
    outline: none;

    background: transparent;
    text-decoration: none;
}

.vmb-logo-link img {
    display: block;

    width: auto;
    height: 60px;

    object-fit: contain;

    transition: transform 0.2s ease;
}



/* =========================================================
   DESKTOP NAV
========================================================= */

.vmb-desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
}

.vmb-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-radius: 8px;
    color: var(--vmb-slate-900);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    cursor: pointer;
    transition: color var(--vmb-transition);
    background-color: transparent;
}


.vmb-nav-link:hover {

    color: var(--vmb-pink-600);
}



.vmb-nav-active {
    color: var(--vmb-pink-600);
}


/* =========================================================
   MORE MENU
========================================================= */

.vmb-more-wrapper {

    position: relative;

}


.vmb-chevron {

    width: 14px;
    height: 14px;

    opacity: 0.7;

    transition:
        transform 0.2s ease;

}


.vmb-more-wrapper.is-open .vmb-chevron {

    transform:
        rotate(180deg);

}


/* =========================================================
   DROPDOWN
========================================================= */

.vmb-more-dropdown {

    position: absolute;

    top: calc(100% + 8px);

    right: 0;

    width: 240px;

    padding: 6px;

    border:
        1px solid var(--vmb-slate-200);

    border-radius: 16px;

    background:
        var(--vmb-white);

    box-shadow:
        0 20px 25px -5px rgba(15, 23, 42, 0.1),
        0 8px 10px -6px rgba(15, 23, 42, 0.1);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-6px);

    transition:
        opacity 0.15s ease,
        visibility 0.15s ease,
        transform 0.15s ease;

}


.vmb-more-wrapper.is-open .vmb-more-dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* =========================================================
   DROPDOWN HEADING
========================================================= */

.vmb-dropdown-heading {

    padding:
        4px 12px;

    color:
        var(--vmb-slate-400);

    font-size: 10px;

    font-weight: 900;

    line-height: 1.5;

    text-transform: uppercase;

    letter-spacing: 0.08em;

}


/* =========================================================
   DROPDOWN ITEM
========================================================= */

.vmb-dropdown-item {

    display: flex;

    align-items: center;

    width: 100%;

    gap: 8px;

    padding:
        6px 12px;

    border: 0;

    border-radius: 12px;

    color:
        var(--vmb-slate-700);

    background:
        transparent;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.5;

    text-align: left;

    cursor: pointer;

    transition:
        color var(--vmb-transition),
        background var(--vmb-transition);

}


.vmb-dropdown-item svg {

    width: 14px;
    height: 14px;

    flex-shrink: 0;

}


.vmb-dropdown-item:hover {

    color:
        var(--vmb-pink-600);

    background:
        var(--vmb-slate-50);

}


.vmb-dropdown-item span {

    min-width: 0;

}


/* Photo removal */
.vmb-removal-item {

    color:
        var(--vmb-pink-700);

}


.vmb-removal-item:hover {

    color:
        var(--vmb-pink-700);

    background:
        #fdf2f8;

}


/* =========================================================
   ICON COLORS
========================================================= */

.vmb-icon-pink {
    color: #ec4899;
}

.vmb-icon-amber {
    color: #f59e0b;
}

.vmb-icon-blue {
    color: #3b82f6;
}

.vmb-icon-green {
    color: #10b981;
}

.vmb-icon-indigo {
    color: #6366f1;
}


/* =========================================================
   DIVIDER
========================================================= */

.vmb-dropdown-divider {

    height: 1px;

    margin:
        4px 0;

    background:
        var(--vmb-slate-100);

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.vmb-header-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}

/* =========================================================
   ENTER BABY BUTTON
========================================================= */

.vmb-enter-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    min-height: 36px;

    padding:
        8px 16px;

    border: 0;

    border-radius: 12px;

    color:
        var(--vmb-white);

    background:
        var(--vmb-pink-600);

    font-size: 12px;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1);

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;

}


.vmb-enter-button:hover {

    background:
        linear-gradient(to right,
            var(--vmb-pink-600),
            var(--vmb-rose-600));

    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.12);

}


.vmb-enter-button:active {

    transform:
        scale(0.98);

}


.vmb-baby-icon {

    width: 14px;
    height: 14px;

}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.vmb-mobile-toggle {

    display: none;

    align-items: center;

    justify-content: center;

    width: 34px;
    height: 34px;

    padding: 6px;

    border: 0;

    border-radius: 12px;

    color:
        var(--vmb-slate-700);

    background: var(--vmb-slate-100);

    cursor: pointer;

}


.vmb-mobile-toggle:hover {

    background:
        var(--vmb-slate-100);

}


.vmb-mobile-toggle svg {

    width: 20px;
    height: 20px;

}


.vmb-close-icon {

    display: none;

}


.vmb-mobile-toggle.is-open .vmb-menu-icon {

    display: none;

}


.vmb-mobile-toggle.is-open .vmb-close-icon {

    display: block;

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.vmb-mobile-navigation {
    display: none;
    padding: 12px 16px 16px;
    border-top: 1px solid var(--vmb-slate-200);
    background: var(--vmb-white);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 99;
}


.vmb-mobile-navigation.is-open {

    display: block;

}


.vmb-mobile-link {

    display: block;

    width: 100%;

    margin-bottom: 4px;

    padding:
        11px 12px;

    border: 0;

    border-radius: 10px;

    color:
        var(--vmb-slate-700);

    background:
        transparent;

    font-size: 13px;

    font-weight: 700;

    text-align: left;

    cursor: pointer;

}


.vmb-mobile-link:hover {

    background:
        var(--vmb-slate-100);

}


.vmb-mobile-active {

    color:
        var(--vmb-white);

    background:
        var(--vmb-slate-900);

}


/* =====================================================
   VOTEMYBABY LIVE ACTIVITY BAR
   PURE CSS
===================================================== */

.vmb-activity-bar {
    position: relative;
    z-index: 20;
    width: 100%;
    overflow: hidden;
    color: #fff;

    background:
        linear-gradient(to right,
            #020617,
            #0f172a,
            #1e1b4b);

    border-bottom: 1px solid #1e293b;

    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.08);

    font-family: "Outfit", sans-serif;
}


.vmb-activity-container {
    width: 100%;
    max-width: 1280px;
    min-height: 25px;

    margin: 0 auto;
    padding: 6px 12px;

    display: flex;
    align-items: center;

    gap: 12px;
}


/* =====================================================
   LIVE BADGE
===================================================== */

.vmb-activity-badge {
    position: relative;
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 7px;

    flex-shrink: 0;

    padding: 3px 10px;

    border:
        1px solid #1e293b;

    border-radius: 999px;

    background:
        rgba(15, 23, 42, 0.9);
}


.vmb-activity-status {
    position: relative;

    display: inline-flex;

    width: 8px;
    height: 8px;
}


.vmb-activity-ping {
    position: absolute;
    inset: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #34d399;

    opacity: 0.75;

    animation:
        vmb-activity-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}


.vmb-activity-dot {
    position: relative;

    display: block;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #10b981;
}


@keyframes vmb-activity-ping {

    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }

}


.vmb-activity-label {
    color: #34d399;

    font-size: 10px;
    font-weight: 900;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    white-space: nowrap;
}


/* =====================================================
   MARQUEE AREA
===================================================== */

.vmb-activity-marquee {
    position: relative;

    flex: 1;

    min-width: 0;

    overflow: hidden;

    /* Fade edges */
    mask-image:
        linear-gradient(to right,
            transparent 0,
            #000 4%,
            #000 96%,
            transparent 100%);

    -webkit-mask-image:
        linear-gradient(to right,
            transparent 0,
            #000 4%,
            #000 96%,
            transparent 100%);
}


.vmb-activity-track {
    display: flex;
    align-items: center;

    width: max-content;

    gap: 24px;

    white-space: nowrap;

    animation:
        vmb-activity-marquee 45s linear infinite;
}


@keyframes vmb-activity-marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* Pause on hover */

.vmb-activity-marquee:hover .vmb-activity-track {

    animation-play-state: paused;

}


/* =====================================================
   ACTIVITY ITEM
===================================================== */

.vmb-activity-item {

    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 6px;

    color:
        #cbd5e1;

    font-size: 11px;

    font-weight: 500;

    line-height: 1.4;
}


.vmb-activity-item strong {

    color: #fff;

    font-weight: 800;
}


.vmb-activity-item em {

    color: #e2e8f0;

    font-style: normal;

}


.vmb-activity-icon {

    width: 14px;
    height: 14px;

    flex-shrink: 0;
}


.vmb-icon-filled {

    fill: currentColor;

}


/* =====================================================
   ICON COLORS
===================================================== */

.vmb-icon-pink {
    color: #f472b6;
}


.vmb-icon-amber {
    color: #fbbf24;
}


.vmb-icon-indigo {
    color: #818cf8;
}


.vmb-icon-emerald {
    color: #34d399;
}


/* =====================================================
   SEPARATOR
===================================================== */

.vmb-activity-separator {

    flex-shrink: 0;

    color:
        #475569;

    font-size: 12px;
}


/* =====================================================
   ENTER FREE BUTTON
===================================================== */

.vmb-activity-cta {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    flex-shrink: 0;

    padding:
        4px 10px;

    border: 0;

    border-radius: 8px;

    color: #fff;

    background:
        #db2777;

    font-family:
        "Outfit", sans-serif;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    cursor: pointer;

    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.1);

    transition:
        background 0.2s ease,
        transform 0.15s ease;
}


.vmb-activity-cta:hover {

    background:
        #be185d;

}


.vmb-activity-cta:active {

    transform:
        scale(0.97);

}


.vmb-activity-cta svg {

    width: 12px;
    height: 12px;

}


/* =====================================================
   TABLET
===================================================== */




/* =====================================================
   MOBILE
===================================================== */




/* =====================================================
   VERY SMALL MOBILE
===================================================== */





/* =========================================================
   TABLET
========================================================= */




/* =========================================================
   MOBILE
========================================================= */




/* =========================================================
   SMALL MOBILE
========================================================= */




/* =========================================================
   VMB HERO SECTION
========================================================= */

.vmb-hero-section {
    position: relative;
    padding: 64px 0 64px;
    background:
        linear-gradient(to bottom,
            rgba(255, 251, 235, 0.4),
            rgba(255, 241, 242, 0.25),
            rgba(248, 250, 252, 0.8));
    border-bottom: 1px solid var(--vmb-slate-200);
    overflow: hidden;
    font-family: var(--vmb-font);
}

.vmb-hero-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.vmb-hero-bg {
    position: absolute;
    top: 40px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.vmb-hero-bg-pink {
    left: 40px;
    background: rgba(249, 168, 212, 0.20);
}

.vmb-hero-bg-amber {
    right: 40px;
    background: rgba(252, 211, 77, 0.20);
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.vmb-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 48px;
    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.vmb-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
}


/* =========================================================
   BADGES
========================================================= */

.vmb-hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.vmb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.vmb-hero-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.vmb-hero-badge-pink {
    color: var(--vmb-slate-900);
    background: var(--vmb-white);
    border: 1px solid #fbcfe8;
}

.vmb-hero-badge-pink svg {
    color: var(--vmb-pink-500);
}

.vmb-hero-badge-emerald {
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    font-weight: 700;
}

.vmb-hero-badge-emerald svg {
    color: #059669;
}

.vmb-hero-badge-amber {
    color: #78350f;
    background: #fffbeb;
    border: 1px solid #fde68a;
    font-weight: 700;
}

.vmb-hero-badge-amber svg {
    color: #d97706;
}


/* =========================================================
   HEADING + DESCRIPTION
========================================================= */

.vmb-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vmb-hero-copy h1 {
    margin: 0;
    color: var(--vmb-slate-950);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.025em;
    font-weight: 900;
}

.vmb-hero-gradient-text {
    color: transparent;
    background: linear-gradient(to right,
            var(--vmb-pink-600),
            var(--vmb-rose-500),
            #d97706);
    background-clip: text;
    -webkit-background-clip: text;
}

.vmb-hero-subtitle {
    color: var(--vmb-slate-900);
}

.vmb-hero-copy p {
    max-width: 640px;
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.vmb-hero-copy p strong {
    color: var(--vmb-slate-800);
    font-weight: 700;
}


/* =========================================================
   CTA LINKS
========================================================= */

.vmb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
}

.vmb-hero-primary-link,
.vmb-hero-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition:
        background-color var(--vmb-transition),
        box-shadow var(--vmb-transition),
        transform var(--vmb-transition);
}

.vmb-hero-primary-link {
    color: var(--vmb-white);
    background: var(--vmb-pink-600);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.vmb-hero-primary-link:hover {
    background: linear-gradient(to right,
            var(--vmb-pink-600),
            var(--vmb-rose-600));
    box-shadow: 0 8px 20px rgba(219, 39, 119, 0.20);
    transform: translateY(-1px);
}

.vmb-hero-secondary-link {
    color: var(--vmb-slate-800);
    background: var(--vmb-white);
    border: 1px solid var(--vmb-slate-200);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.vmb-hero-secondary-link:hover {
    background: var(--vmb-slate-50);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.vmb-hero-actions svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.vmb-hero-secondary-link svg {
    color: var(--vmb-pink-500);
    fill: var(--vmb-pink-500);
}

.vmb-arrow-icon {
    transition: transform var(--vmb-transition);
}

.vmb-hero-primary-link:hover .vmb-arrow-icon {
    transform: translateX(2px);
}




/* =========================================================
   RIGHT BABY IMAGE
========================================================= */

.vmb-hero-image-column {
    position: relative;
    width: 100%;
}

.vmb-hero-image-wrapper {
    position: relative;
    width: 100%;
}

.vmb-hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right,
            #fecdd3,
            #fde68a);
    border-radius: 48px;
    transform: rotate(3deg) scale(1.05);
    opacity: 0.5;
    filter: blur(24px);
}

.vmb-hero-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 4px solid var(--vmb-white);
    border-radius: 48px;
    box-shadow:
        0 20px 35px -10px rgba(15, 23, 42, 0.25),
        0 10px 15px -8px rgba(15, 23, 42, 0.12);
}


/* =========================================================
   RESPONSIVE
========================================================= */








/**footer**/

/* =========================================================
   VMB FOOTER
========================================================= */

.vmb-footer {
    position: relative;
    overflow: hidden;
    padding: 64px 0 20px;
    color: var(--vmb-slate-300);
    background: var(--vmb-slate-950);
    border-top: 1px solid var(--vmb-slate-900);
    font-family: var(--vmb-font);
}

.vmb-footer-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.vmb-footer-bg {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.vmb-footer-bg-pink {
    top: 0;
    left: 25%;
    background: rgba(190, 24, 93, 0.10);
}

.vmb-footer-bg-blue {
    right: 25%;
    bottom: 0;
    background: rgba(30, 64, 175, 0.10);
}


/* =========================================================
   SUPPORT CTA
========================================================= */

.vmb-footer-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    margin-bottom: 40px;
    background:
        linear-gradient(to right,
            var(--vmb-slate-900),
            var(--vmb-slate-900),
            var(--vmb-indigo-950));
    border: 1px solid var(--vmb-slate-800);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.vmb-footer-support-content {
    min-width: 0;
}

.vmb-footer-support-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    color: #f472b6;
    background: rgba(236, 72, 153, 0.10);
    border: 1px solid rgba(236, 72, 153, 0.20);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vmb-footer-support-label svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-footer-support-content h3 {
    margin: 6px 0 0;
    color: var(--vmb-white);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.vmb-footer-support-content p {
    max-width: 680px;
    margin: 6px 0 0;
    color: var(--vmb-slate-400);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   SUPPORT BUTTONS
========================================================= */

.vmb-footer-support-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vmb-footer-whatsapp-link,
.vmb-footer-enter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    color: var(--vmb-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition:
        background-color var(--vmb-transition),
        transform var(--vmb-transition),
        box-shadow var(--vmb-transition);
}

.vmb-footer-whatsapp-link {
    background: var(--vmb-emerald-500);
}

.vmb-footer-whatsapp-link:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.20);
}

.vmb-footer-enter-link {
    background: var(--vmb-pink-600);
}

.vmb-footer-enter-link:hover {
    background: var(--vmb-pink-700);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(219, 39, 119, 0.20);
}

.vmb-footer-support-actions svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   FOOTER MAIN GRID
========================================================= */

.vmb-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(180px, 1.2fr) repeat(4, minmax(140px, 1fr));
    gap: 32px 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.80);
}


/* =========================================================
   BRAND
========================================================= */

.vmb-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vmb-footer-logo img {
    display: block;
    width: auto;
    height: 64px;
    object-fit: contain;
}

.vmb-footer-brand>p {
    margin: 0;
    color: var(--vmb-slate-400);
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   GLOBAL ENTRY BOX
========================================================= */

.vmb-footer-global {
    padding: 12px;
    background: rgba(15, 23, 42, 0.90);
    border: 1px solid var(--vmb-slate-800);
    border-radius: 12px;
}

.vmb-footer-global-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
}

.vmb-footer-global-title svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-footer-global p {
    margin: 4px 0 0;
    color: var(--vmb-slate-400);
    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.vmb-footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vmb-footer-column h4 {
    margin: 0;
    color: var(--vmb-white);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vmb-footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vmb-footer-column li {
    margin: 0;
    padding: 0;
}

.vmb-footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vmb-slate-400);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.4;
    transition: color var(--vmb-transition);
}

.vmb-footer-column a:hover {
    color: var(--vmb-white);
}

.vmb-footer-column a svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   SPECIAL FOOTER COLORS
========================================================= */

.vmb-footer-column li:first-child svg {
    color: #f472b6;
}

.vmb-footer-column:nth-child(3) li:first-child svg {
    color: #fbbf24;
}

.vmb-footer-column:nth-child(3) li:nth-child(5) svg {
    color: #fbbf24;
}

.vmb-footer-column:nth-child(4) li:first-child svg {
    color: #60a5fa;
}

.vmb-footer-danger-link {
    color: #f472b6 !important;
    font-weight: 700;
}

.vmb-footer-danger-link:hover {
    color: #f9a8d4 !important;
}

.vmb-footer-danger-link svg {
    color: #f472b6 !important;
}

.vmb-footer-whatsapp-text {
    color: #34d399 !important;
    font-weight: 700;
}

.vmb-footer-whatsapp-text:hover {
    color: #6ee7b7 !important;
}

.vmb-footer-whatsapp-text svg {
    color: #34d399;
}

.vmb-footer-email {
    overflow: hidden;
    max-width: 180px;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.vmb-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    color: var(--vmb-slate-500);
    font-size: 12px;
}

.vmb-footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vmb-footer-copyright p {
    margin: 0;
}

.vmb-footer-copyright p:last-child {
    color: #475569;
    font-size: 10px;
}

.vmb-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vmb-footer-legal a {
    color: var(--vmb-slate-500);
    text-decoration: none;
    transition: color var(--vmb-transition);
}

.vmb-footer-legal a:hover {
    color: var(--vmb-slate-300);
}

.vmb-footer-legal .vmb-footer-photo-removal {
    color: rgba(236, 72, 153, 0.90);
    font-weight: 700;
}

.vmb-footer-legal .vmb-footer-photo-removal:hover {
    color: #f472b6;
}


/* =========================================================
   TABLET
========================================================= */




/* =========================================================
   MOBILE
========================================================= */







/* =========================================================
   VMB ACTIVE COMPETING BABY STARS
========================================================= */

.vmb-active-stars-section {
    width: 100%;
    padding: 60px 0px;
    font-family: var(--vmb-font, "Outfit", sans-serif);
    box-sizing: border-box;
    background: #f7f7f7;
}

.vmb-active-stars-section *,
.vmb-active-stars-section *::before,
.vmb-active-stars-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.vmb-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px !important;
}

.vmb-section-heading {
    min-width: 0;
}

.vmb-section-heading h2 {
    margin: 0;
    color: var(--vmb-slate-900, #0f172a);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-section-heading p {
    margin: 8px 0 0;
    color: var(--vmb-slate-500, #64748b);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.vmb-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;

    color: var(--vmb-pink-600, #db2777);
    text-decoration: none;

    font-size: 13px;
    line-height: 1;
    font-weight: 800;

    transition:
        color var(--vmb-transition, 0.2s ease),
        gap var(--vmb-transition, 0.2s ease);
}

.vmb-view-all-link:hover {
    color: var(--vmb-pink-700, #be185d);
    gap: 10px;
}

.vmb-view-all-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   GRID
========================================================= */

.vmb-stars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   BABY CARD
========================================================= */

.vmb-star-card {
    position: relative;
    min-width: 0;

    overflow: hidden;

    background: var(--vmb-white, #ffffff);
    border: 1px solid var(--vmb-slate-200, #e2e8f0);
    border-radius: 20px;

    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.vmb-star-card:hover {

    border-color: var(--vmb-slate-300, #cbd5e1);

    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.10);
}


/* =========================================================
   IMAGE
========================================================= */

.vmb-star-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--vmb-slate-100, #f1f5f9);
}

.vmb-star-image-wrap>img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.vmb-star-card:hover .vmb-star-image-wrap>img {
    transform: scale(1.04);
}


/* =========================================================
   RANK BADGE
========================================================= */

.vmb-top-contenders .vmb-rank-badge {

    min-width: 38px;
    height: 28px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    border:none !important;
}

.vmb-top-contenders .vmb-rank-badge svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: #fff !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-top-contenders .vmb-first-badge {
    background: var(--vmb-amber-500, #f59e0b);
}

.vmb-top-contenders .vmb-second-badge {
    background: #64748b;
}

.vmb-top-contenders .vmb-third-badge {
    background: #b45309;
}

.vmb-top-contenders .vmb-rank-default {
    background: var(--vmb-slate-700, #334155);
}

/* =========================================================
   STAR CERTIFIED BADGE
========================================================= */

.vmb-certified-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 9px;

    border-radius: 999px;

    background: rgba(15, 23, 42, 0.86);
    color: #ffffff;

    font-size: 10px;
    line-height: 1;
    font-weight: 800;

    backdrop-filter: blur(6px);
}

.vmb-certified-badge svg {
    width: 13px;
    height: 13px;

    fill: var(--vmb-amber-500, #f59e0b);
    stroke: var(--vmb-amber-500, #f59e0b);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CARD INFORMATION
========================================================= */

.vmb-star-info {
    padding: 15px 16px 12px;
}

.vmb-star-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vmb-star-title-row h3 {
    min-width: 0;
    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: var(--vmb-slate-900, #0f172a);

    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
}

.vmb-active-stars-section .vmb-vote-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;

    color: var(--vmb-pink-600, #db2777);

    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}

.vmb-active-stars-section .vmb-vote-count span {


    color: var(--vmb-pink-600, #db2777);

    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}


.vmb-active-stars-section .vmb-vote-count svg {
    width: 14px;
    height: 14px;

    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-entry-age {
    margin: 5px 0 0;

    color: var(--vmb-slate-500, #64748b);

    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================================================
   CARD ACTIONS
========================================================= */

.vmb-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 16px 16px;
}

.vmb-free-vote-button,
.vmb-share-button {
    border: 0;
    font-family: inherit;
    cursor: pointer;
}


/* FREE VOTE */

.vmb-free-vote-button {
    flex: 1;

    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 9px 12px;

    border-radius: 10px;

    background: var(--vmb-pink-600, #db2777);
    color: #ffffff;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;

    box-shadow: 0 3px 8px rgba(219, 39, 119, 0.18);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vmb-free-vote-button:hover {
    background: var(--vmb-pink-700, #be185d);

    box-shadow:
        0 6px 14px rgba(219, 39, 119, 0.25);
}

.vmb-free-vote-button:active {
    transform: scale(0.97);
}

.vmb-free-vote-button svg {
    width: 14px;
    height: 14px;

    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* SHARE */

.vmb-share-button {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--vmb-slate-200, #e2e8f0);
    border-radius: 10px;

    background: var(--vmb-white, #ffffff);
    color: var(--vmb-slate-600, #475569);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.vmb-share-button:hover {
    background: var(--vmb-pink-50, #fdf2f8);
    border-color: var(--vmb-pink-200, #fbcfe8);
    color: var(--vmb-pink-600, #db2777);
}

.vmb-share-button:active {
    transform: scale(0.95);
}

.vmb-share-button svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   RESPONSIVE
========================================================= */











/* =========================================================
   SHARE MODAL
========================================================= */

.vmb-share-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.vmb-share-modal.is-open {
    display: flex;
}

.vmb-share-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(15, 23, 42, 0.70);

    backdrop-filter: blur(4px);
}

.vmb-share-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 430px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200, #e2e8f0);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    animation: vmbShareModalIn 0.2s ease;
    font-family: 'Outfit';
}

@keyframes vmbShareModalIn {

    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.vmb-share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.vmb-share-modal-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmb-share-icon-box {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--vmb-pink-100, #fce7f3);
    color: var(--vmb-pink-600, #db2777);
}

.vmb-share-icon-box svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-share-modal-heading h3 {
    margin: 0;

    color: var(--vmb-slate-900, #0f172a);

    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
}

.vmb-share-modal-heading p {
    margin: 3px 0 0;

    color: var(--vmb-slate-500, #64748b);

    font-size: 11px;
    line-height: 1.4;
}

.vmb-share-close {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 0;
    border-radius: 50%;

    background: var(--vmb-slate-100, #f1f5f9);
    color: var(--vmb-slate-600, #475569);

    cursor: pointer;

    transition: background 0.2s ease;
}

.vmb-share-close:hover {
    background: var(--vmb-slate-200, #e2e8f0);
}

.vmb-share-close svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ENTRY PREVIEW */

.vmb-share-entry-preview {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 18px;
    padding: 12px;

    border: 1px solid var(--vmb-slate-100, #f1f5f9);
    border-radius: 16px;

    background: var(--vmb-slate-50, #f8fafc);
}

.vmb-share-entry-preview img {
    width: 56px;
    height: 56px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 12px;
}

.vmb-share-entry-details {
    min-width: 0;
}

.vmb-share-entry-details h4 {
    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: var(--vmb-slate-900, #0f172a);

    font-size: 14px;
    font-weight: 800;
}

.vmb-share-entry-details p {
    margin: 4px 0 0;

    color: var(--vmb-slate-500, #64748b);

    font-size: 11px;
}


/* SOCIAL */

.vmb-share-direct-section {
    margin-top: 20px;
}

.vmb-share-label {
    display: block;

    margin: 0 0 8px;

    color: var(--vmb-slate-400, #94a3b8);

    font-size: 10px;
    line-height: 1.3;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vmb-share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.vmb-social-share {
    min-height: 74px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 10px;

    border-radius: 14px;

    font-family: inherit;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.vmb-social-share:hover {
    transform: translateY(-2px);
}

.vmb-whatsapp-share {
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #065f46;
}

.vmb-whatsapp-share:hover {
    background: #d1fae5;
}

.vmb-whatsapp-share svg {
    width: 22px;
    height: 22px;

    fill: #10b981;
}

.vmb-facebook-share {
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1e40af;
}

.vmb-facebook-share:hover {
    background: #dbeafe;
}

.vmb-facebook-icon {
    color: #2563eb;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

.vmb-pinterest-share {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.vmb-pinterest-share:hover {
    background: #fee2e2;
}

.vmb-pinterest-icon {
    color: #dc2626;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}


/* COPY */

.vmb-copy-section {
    margin-top: 18px;
}

.vmb-copy-row {
    display: flex;
    gap: 7px;
}

.vmb-copy-row input {
    min-width: 0;
    flex: 1;

    height: 40px;

    padding: 0 11px;

    border: 1px solid var(--vmb-slate-200, #e2e8f0);
    border-radius: 10px;

    background: var(--vmb-slate-50, #f8fafc);
    color: var(--vmb-slate-600, #475569);

    outline: none;

    font-family: var(--vmb-font, "Outfit", sans-serif);
    font-size: 11px;
}

.vmb-copy-button {
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    flex-shrink: 0;

    padding: 0 13px;

    border: 0;
    border-radius: 10px;

    background: var(--vmb-blue-500, #3b82f6);
    color: #ffffff;

    font-family: inherit;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    transition: background 0.2s ease;
}

.vmb-copy-button:hover {
    background: #2563eb;
}

.vmb-copy-button svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* RALLY TIP */

.vmb-rally-tip {
    margin-top: 18px;
    padding: 11px 12px;

    border: 1px solid var(--vmb-pink-100, #fce7f3);
    border-radius: 12px;

    background: #fdf2f8;

    color: #831843;
}

.vmb-rally-title {
    display: flex;
    align-items: center;
    gap: 5px;

    margin: 0 0 3px;

    color: var(--vmb-pink-700, #be185d);

    font-size: 11px;
    line-height: 1.3;
    font-weight: 900;
}

.vmb-rally-title svg {
    width: 13px;
    height: 13px;

    fill: var(--vmb-pink-500, #ec4899);
    stroke: var(--vmb-pink-500, #ec4899);
}

.vmb-rally-text {
    margin: 0;

    font-size: 10px;
    line-height: 1.55;
}


/* BODY LOCK */

body.vmb-share-modal-open {
    overflow: hidden;
}


/* MOBILE MODAL */



/* =====================================================
   CERTIFICATE / 100 VOTE SECTION
===================================================== */


.vmb-certificate-box {
    background:
        linear-gradient(135deg,
            #fffbeb 0%,
            #fff1f2 48%,
            #eef2ff 100%);

    border: 1px solid #fcd34d;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.vmb-certificate-content {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 32px;
    align-items: center;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.vmb-certificate-info {
    min-width: 0;
}

.vmb-certificate-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #fbbf24;
    color: #451a03;

    padding: 4px 14px;
    border-radius: 999px;

    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.5;
}

.vmb-certificate-label svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 2;
}

.vmb-certificate-title {
    margin: 8px 0 0;

    color: var(--vmb-slate-950);
    font-family: var(--vmb-font);

    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-certificate-description {
    max-width: 780px;
    margin: 14px 0 0;

    color: var(--vmb-slate-700);
    font-family: var(--vmb-font);

    font-size: 14px;
    line-height: 1.65;
}

.vmb-certificate-description strong {
    color: var(--vmb-slate-900);
    font-weight: 800;
}


/* =====================================================
   FEATURE GRID
===================================================== */

.vmb-certificate-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    margin-top: 18px;
}

.vmb-certificate-feature {
    padding: 14px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid #fde68a;
    border-radius: 12px;
}

.vmb-feature-title {
    display: flex;
    align-items: center;
    gap: 6px;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 900;
}

.vmb-feature-title svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    flex-shrink: 0;
}

.vmb-certificate-feature:nth-child(1) .vmb-feature-title svg {
    color: #059669;
}

.vmb-certificate-feature:nth-child(2) .vmb-feature-title svg {
    color: var(--vmb-amber-500);
}

.vmb-certificate-feature:nth-child(3) .vmb-feature-title svg {
    color: #2563eb;
}

.vmb-certificate-feature:nth-child(4) .vmb-feature-title svg {
    color: var(--vmb-pink-600);
}

.vmb-certificate-feature p {
    margin: 4px 0 0;

    color: var(--vmb-slate-600);

    font-family: var(--vmb-font);
    font-size: 12px;
    line-height: 1.5;
}


/* =====================================================
   ACTIONS
===================================================== */

.vmb-certificate-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    margin-top: 18px;
}

.vmb-certificate-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 20px;

    border-radius: 12px;

    text-decoration: none;

    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;

    transition:
        background-color var(--vmb-transition),
        transform var(--vmb-transition),
        box-shadow var(--vmb-transition);
}

.vmb-certificate-actions a:hover {
    transform: translateY(-1px);
}

.vmb-certificate-actions svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-certificate-preview {
    background: var(--vmb-amber-500);
    color: #451a03;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.08);
}

.vmb-certificate-preview:hover {
    background: #d97706;
}

.vmb-certificate-enter {
    background: var(--vmb-slate-900);
    color: var(--vmb-white);
}

.vmb-certificate-enter:hover {
    background: var(--vmb-slate-800);
}


/* =====================================================
   RIGHT CALCULATOR
===================================================== */

.vmb-voting-calculator {
    padding: 24px;

    background: var(--vmb-white);

    border: 1px solid #fde68a;
    border-radius: 16px;

    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.08);

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vmb-calculator-label {
    display: inline-block;

    padding: 2px 10px;

    background: #fdf2f8;
    color: var(--vmb-pink-600);

    border-radius: 6px;

    font-family: var(--vmb-font);
    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vmb-calculator-heading h3 {
    margin: 5px 0 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.vmb-calculator-heading p {
    margin: 4px 0 0;

    color: var(--vmb-slate-500);

    font-family: var(--vmb-font);
    font-size: 12px;
    line-height: 1.5;
}


/* =====================================================
   RANGE CONTROLS
===================================================== */

.vmb-range-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vmb-range-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    color: var(--vmb-slate-700);

    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
}

.vmb-range-value {
    padding: 2px 10px;
    border-radius: 6px;

    font-weight: 800;
    white-space: nowrap;
}

.vmb-range-pink {
    color: var(--vmb-pink-600);
    background: #fdf2f8;
}

.vmb-range-blue {
    color: #2563eb;
    background: #eff6ff;
}

.vmb-range {
    width: 100%;
    height: 8px;

    margin: 0;

    appearance: none;
    -webkit-appearance: none;

    background: var(--vmb-slate-100);
    border-radius: 999px;

    cursor: pointer;
}

.vmb-range::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 17px;
    height: 17px;

    border-radius: 50%;
    border: 3px solid var(--vmb-white);

    cursor: pointer;

    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.25);
}

.vmb-range::-moz-range-thumb {
    width: 17px;
    height: 17px;

    border-radius: 50%;
    border: 3px solid var(--vmb-white);

    cursor: pointer;

    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.25);
}

.vmb-range-pink-input::-webkit-slider-thumb {
    background: var(--vmb-pink-600);
}

.vmb-range-pink-input::-moz-range-thumb {
    background: var(--vmb-pink-600);
}

.vmb-range-blue-input::-webkit-slider-thumb {
    background: #2563eb;
}

.vmb-range-blue-input::-moz-range-thumb {
    background: #2563eb;
}


/* =====================================================
   CALCULATOR RESULT
===================================================== */

.vmb-calculator-result {
    padding: 16px;

    background:
        linear-gradient(90deg,
            #ecfdf5,
            #f0fdfa);

    border: 1px solid #a7f3d0;
    border-radius: 12px;

    text-align: center;
}

.vmb-calculator-result>span {
    display: block;

    color: #065f46;

    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
}

.vmb-calculator-result strong {
    display: block;

    margin-top: 2px;

    color: #047857;

    font-family: var(--vmb-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.vmb-calculator-result p {
    margin: 3px 0 0;

    color: #064e3b;

    font-family: var(--vmb-font);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}


/***leader baord***/

/* =========================================================
   LEADERBOARD
========================================================= */

.vmb-leaderboard-section {
    font-family: Outfit;
    padding: 60px 0px;
}


/* =========================================================
   HEADING
========================================================= */

.vmb-leaderboard-heading {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;

    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vmb-leaderboard-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 0.375rem;

    color: var(--vmb-pink-600);
    background: var(--vmb-pink-50);

    border: 1px solid var(--vmb-pink-200);

    padding: 0.25rem 0.875rem;

    border-radius: 999px;

    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-leaderboard-label svg {
    width: 0.875rem;
    height: 0.875rem;

    color: var(--vmb-pink-500);

    flex-shrink: 0;
}

.vmb-leaderboard-heading h2 {
    margin: 0.25rem 0 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 2.25rem;
    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -0.025em;
}

.vmb-leaderboard-heading p {
    width: 100%;
    max-width: 36rem;

    margin: 0.5rem auto 0;

    color: var(--vmb-slate-600);

    font-size: 1rem;
    line-height: 1.625;

    font-weight: 400;
}


/* =========================================================
   TOP 3 GRID
========================================================= */

.vmb-top-contenders {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    align-items: end;

    gap: 1.5rem;

    padding-top: 0.5rem;

    margin-top: 2rem;
}


/* =========================================================
   COMMON CARD
========================================================= */

.vmb-contender-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    gap: 1rem;

    padding: 1.25rem;

    background: var(--vmb-white);

    border: 1px solid rgb(226 232 240 / 0.9);

    border-radius: var(--vmb-radius-2xl);

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);

    cursor: pointer;

    transition:
        box-shadow var(--vmb-transition),
        transform var(--vmb-transition);
}

.vmb-contender-card:hover {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
}


/* =========================================================
   FIRST PLACE
========================================================= */

.vmb-first-place {
    padding: 1.5rem;

    background:
        linear-gradient(to bottom,
            rgb(255 251 235 / 0.7),
            var(--vmb-white),
            var(--vmb-white));

    border: 2px solid var(--vmb-amber-300);

    box-shadow:
        0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);

    position: relative;

    z-index: 10;

    transform: translateY(-0.75rem);
}

.vmb-first-place:hover {
    box-shadow:
        0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
}


/* =========================================================
   CARD TOP
========================================================= */

.vmb-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 0.5rem;
}

.vmb-rank-badge {
    display: inline-flex;

    align-items: center;

    gap: 0.375rem;

    padding: 0.25rem 0.75rem;

    border-radius: 999px;

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 800;

    white-space: nowrap;
}

.vmb-rank-badge svg {
    width: 0.875rem;
    height: 0.875rem;

    flex-shrink: 0;
}


/* SECOND */

.vmb-second-badge {
    color: var(--vmb-slate-800);

    background: var(--vmb-slate-100);

    border: 1px solid var(--vmb-slate-200);
}

.vmb-second-badge svg {
    color: var(--vmb-slate-700);
}


/* FIRST */

.vmb-first-badge {
    color: var(--vmb-amber-950);

    background: var(--vmb-amber-400);

    padding: 0.25rem 0.875rem;

    font-weight: 900;

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.vmb-first-badge svg {
    color: var(--vmb-amber-950);
}


/* THIRD */

.vmb-third-badge {
    color: var(--vmb-amber-900);

    background: var(--vmb-amber-100);

    border: 1px solid var(--vmb-amber-200);
}

.vmb-third-badge svg {
    color: var(--vmb-amber-800);
}


/* AGE */

.vmb-age-badge {
    flex-shrink: 0;

    color: var(--vmb-slate-500);

    background: var(--vmb-slate-50);

    padding: 0.125rem 0.625rem;

    border-radius: 999px;

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 500;

    white-space: nowrap;
}

.vmb-first-age {
    color: var(--vmb-amber-900);

    background: rgb(254 243 199 / 0.8);
}


/* =========================================================
   IMAGE
========================================================= */

.vmb-contender-image-wrap {
    padding-top: 0.25rem;

    text-align: center;
}

.vmb-contender-image-inner {
    position: relative;

    display: inline-block;
}
.vmb-contender-image-inner img {
    display: block;
    width: 7rem;
    height: 7rem;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    transition: transform var(--vmb-transition);
    object-position: top;
}

.vmb-contender-card:hover .vmb-contender-image-inner img {
    transform: scale(1.03);
}


/* FIRST IMAGE */

.vmb-first-place .vmb-contender-image-inner img {
    width: 8rem;
    height: 8rem;

    border: 3px solid var(--vmb-amber-300);

    outline: 2px solid var(--vmb-amber-300);

    outline-offset: 2px;
}


/* RANK */

.vmb-rank-number {
    position: absolute;

    left: 50%;
    bottom: -0.5rem;

    transform: translateX(-50%);

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0.125rem 0.625rem;

    color: var(--vmb-white);

    background: var(--vmb-slate-800);

    border-radius: 999px;

    font-size: 0.625rem;
    line-height: 1rem;

    font-weight: 700;

    white-space: nowrap;
}

.vmb-third-rank {
    background: var(--vmb-amber-800);
}


/* LEADER LABEL */

.vmb-leader-label-image {
    position: absolute;

    left: 50%;
    bottom: -0.5rem;

    transform: translateX(-50%);

    display: inline-flex;

    align-items: center;

    gap: 0.25rem;

    padding: 0.125rem 0.75rem;

    color: var(--vmb-amber-950);

    background: var(--vmb-amber-500);

    border-radius: 999px;

    font-family: var(--vmb-font);

    font-size: 0.625rem;
    line-height: 1rem;

    font-weight: 900;

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);

    white-space: nowrap;
}

.vmb-leader-label-image svg {
    width: 0.75rem;
    height: 0.75rem;

    fill: var(--vmb-amber-950);
}


/* =========================================================
   NAME
========================================================= */

.vmb-contender-name {
    min-width: 0;

    text-align: center;
}

.vmb-contender-name h3 {
    margin: 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 1rem;
    line-height: 1.5;

    font-weight: 900;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    transition: color var(--vmb-transition);
}

.vmb-contender-card:hover .vmb-contender-name h3 {
    color: var(--vmb-pink-600);
}

.vmb-first-place .vmb-contender-name h3 {
    font-size: 1.125rem;
}

.vmb-first-place:hover .vmb-contender-name h3 {
    color: var(--vmb-amber-700);
}


/* =========================================================
   PRIZE
========================================================= */

.vmb-prize-box {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 0.375rem;

    padding: 0.625rem;

    color: var(--vmb-slate-700);

    background: var(--vmb-slate-50);

    border: 1px solid var(--vmb-slate-100);

    border-radius: 0.75rem;

    text-align: center;

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 500;
}

.vmb-prize-box svg {
    width: 0.875rem;
    height: 0.875rem;

    color: var(--vmb-blue-500);

    flex-shrink: 0;
}

.vmb-prize-box strong {
    font-weight: 800;
}


/* FIRST PRIZE */

.vmb-first-prize {
    color: var(--vmb-amber-950);

    background: rgb(254 243 199 / 0.7);

    border-color: var(--vmb-amber-200);

    font-weight: 700;
}

.vmb-first-prize svg {
    color: var(--vmb-amber-700);
}


/* =========================================================
   VOTES
========================================================= */

.vmb-votes-area {
    padding-top: 0.5rem;

    border-top: 1px solid var(--vmb-slate-100);

    display: flex;

    flex-direction: column;

    gap: 0.5rem;
}

.vmb-first-votes {
    border-top-color: rgb(252 211 77 / 0.7);
}

.vmb-votes-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 0.5rem;

    color: var(--vmb-slate-500);

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 700;
}

.vmb-votes-count {
    display: inline-flex;

    align-items: center;

    gap: 0.25rem;

    color: var(--vmb-pink-600);

    background: var(--vmb-pink-50);

    border: 1px solid var(--vmb-pink-100);

    padding: 0.125rem 0.625rem;

    border-radius: 0.375rem;

    font-weight: 800;
}

.vmb-votes-count svg {
    width: 0.75rem;
    height: 0.75rem;

    color: var(--vmb-pink-500);

    fill: var(--vmb-pink-500);
}


/* FIRST VOTES */

.vmb-main-votes {
    color: var(--vmb-white);

    background: var(--vmb-pink-600);

    padding: 0.25rem 0.75rem;

    border-radius: 999px;

    border: 0;

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.vmb-main-votes svg {
    color: var(--vmb-white);

    fill: var(--vmb-white);
}


/* =========================================================
   PROFILE BUTTON
========================================================= */

.vmb-profile-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.375rem;

    padding: 0.625rem 0.75rem;

    border-radius: 0.75rem;

    color: var(--vmb-white);

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 700;

    text-decoration: none;

    transition:
        background-color var(--vmb-transition),
        transform var(--vmb-transition);
}

.vmb-profile-button:hover {
    transform: translateY(-1px);
}

.vmb-profile-button svg {
    width: 0.875rem;
    height: 0.875rem;

    flex-shrink: 0;
}

.vmb-dark-button {
    background: var(--vmb-slate-900);
}

.vmb-dark-button:hover {
    background: var(--vmb-slate-800);
}

.vmb-pink-button {
    background: var(--vmb-pink-600);

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.vmb-pink-button:hover {
    background: var(--vmb-pink-700);
}


/* =========================================================
   CHALLENGERS
========================================================= */

.vmb-challengers {
    margin-top: 1.5rem;

    padding: 1.25rem;

    background: var(--vmb-white);

    border: 1px solid rgb(226 232 240 / 0.9);

    border-radius: 1rem;

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);

    display: flex;

    flex-direction: column;

    gap: 0.875rem;
}

.vmb-challengers-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 1rem;
}

.vmb-challengers-header h3 {
    margin: 0;

    display: flex;

    align-items: center;

    gap: 0.375rem;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 0.875rem;
    line-height: 1.25rem;

    font-weight: 900;
}

.vmb-challengers-header h3 svg {
    width: 1rem;
    height: 1rem;

    color: var(--vmb-pink-500);

    flex-shrink: 0;
}

.vmb-full-leaderboard {
    display: inline-flex;

    align-items: center;

    gap: 0.25rem;

    color: var(--vmb-pink-600);

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: color var(--vmb-transition);
}

.vmb-full-leaderboard:hover {
    color: var(--vmb-pink-700);
}

.vmb-full-leaderboard svg {
    width: 0.875rem;
    height: 0.875rem;
}


/* =========================================================
   CHALLENGER GRID
========================================================= */

.vmb-challenger-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 0.875rem;
}

.vmb-challenger-card {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 0.75rem;

    padding: 0.75rem;

    color: inherit;

    background: var(--vmb-slate-50);

    border: 1px solid rgb(226 232 240 / 0.8);

    border-radius: 0.75rem;

    text-decoration: none;

    transition:
        background-color var(--vmb-transition),
        border-color var(--vmb-transition);
}

.vmb-challenger-card:hover {
    background: var(--vmb-slate-100);
}


/* =========================================================
   CHALLENGER IMAGE
========================================================= */

.vmb-challenger-image {
    position: relative;

    flex-shrink: 0;
}

.vmb-challenger-image img {
    display: block;

    width: 3rem;
    height: 3rem;

    object-fit: cover;

    border-radius: 0.75rem;

    transition: transform var(--vmb-transition);
}

.vmb-challenger-card:hover .vmb-challenger-image img {
    transform: scale(1.03);
}

.vmb-challenger-image span {
    position: absolute;

    top: -0.25rem;
    left: -0.25rem;

    width: 1rem;
    height: 1rem;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--vmb-white);

    background: var(--vmb-slate-800);

    border-radius: 999px;

    font-size: 0.5625rem;

    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   CHALLENGER INFO
========================================================= */

.vmb-challenger-info {
    min-width: 0;

    flex: 1;
}

.vmb-challenger-info h4 {
    margin: 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 700;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    transition: color var(--vmb-transition);
}

.vmb-challenger-card:hover .vmb-challenger-info h4 {
    color: var(--vmb-pink-600);
}

.vmb-challenger-votes {
    margin: 0.125rem 0 0;

    display: flex;

    align-items: center;

    gap: 0.25rem;

    color: var(--vmb-pink-600);

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 900;
}

.vmb-challenger-votes svg {
    width: 0.75rem;
    height: 0.75rem;

    flex-shrink: 0;

    color: var(--vmb-pink-500);

    fill: var(--vmb-pink-500);
}

/**win price sec ss***/


/* =========================================================
   SPARK TOTS PRIZES
========================================================= */

.vmb-prizes-section {
    width: 100%;
    padding: 60px 0px;
}

.vmb-prizes-container {
    width: 100%;
    font-family: 'Outfit';
}

/* =========================================================
   HEADING
========================================================= */

.vmb-prizes-heading {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 0.5rem;

    text-align: center;
}

.vmb-prizes-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.375rem;

    padding: 0.25rem 0.875rem;

    color: var(--vmb-pink-600);
    background: var(--vmb-pink-50);

    border: 1px solid var(--vmb-pink-200);

    border-radius: 999px;

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-prizes-label svg {
    width: 0.875rem;
    height: 0.875rem;

    color: var(--vmb-pink-500);

    flex-shrink: 0;
}

.vmb-prizes-heading h2 {
    margin: 0.25rem 0 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 2.25rem;
    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -0.025em;
}

.vmb-prizes-heading p {
    max-width: 40rem;

    margin: 0.5rem auto 0;

    color: var(--vmb-slate-600);

    font-size: 1rem;
    line-height: 1.625;

    font-weight: 400;
}

.vmb-prizes-heading p strong {
    font-weight: 700;
}


/* =========================================================
   PRIZES GRID
========================================================= */

.vmb-prizes-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 1.5rem;

    padding-top: 0.5rem;

    margin-top: 1.5rem;
}


/* =========================================================
   PRIZE CARD
========================================================= */

.vmb-prize-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    gap: 1rem;

    padding: 1.25rem;

    background: var(--vmb-white);

    border: 1px solid rgb(226 232 240 / 0.9);

    border-radius: 1rem;

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);

    transition:
        box-shadow var(--vmb-transition),
        transform var(--vmb-transition);
}

.vmb-prize-card:hover {
    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.vmb-prize-content {
    display: flex;
    flex-direction: column;

    gap: 0.75rem;
}


/* =========================================================
   TOP ROW
========================================================= */

.vmb-prize-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 0.75rem;
}

.vmb-prize-badge {
    display: inline-flex;

    align-items: center;

    gap: 0.375rem;

    padding: 0.25rem 0.75rem;

    border-radius: 999px;

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 900;

    white-space: nowrap;

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.vmb-prize-badge svg {
    width: 0.875rem;
    height: 0.875rem;

    flex-shrink: 0;
}


/* FIRST */

.vmb-prize-first {
    color: var(--vmb-amber-950);

    background: var(--vmb-amber-400);

    box-shadow:
        0 1px 2px rgb(0 0 0 / 0.05),
        0 0 0 1px var(--vmb-amber-300);
}

.vmb-prize-first svg {
    color: var(--vmb-amber-950);
}


/* SECOND */

.vmb-prize-second {
    color: var(--vmb-slate-900);

    background: var(--vmb-slate-200);
}

.vmb-prize-second svg {
    color: var(--vmb-slate-900);
}


/* THIRD */

.vmb-prize-third {
    color: var(--vmb-white);

    background: var(--vmb-amber-700);
}

.vmb-prize-third svg {
    color: var(--vmb-white);
}


/* MIN VOTES */

.vmb-min-votes {
    flex-shrink: 0;

    color: var(--vmb-slate-400);

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.vmb-product-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 0.75rem;

    background: var(--vmb-slate-50);

    border: 1px solid var(--vmb-slate-100);

    border-radius: 0.75rem;
}

.vmb-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.vmb-prize-card:hover .vmb-product-image img {
    transform: scale(1.03);
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.vmb-product-info h3 {
    margin: 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 1rem;
    line-height: 1.5;

    font-weight: 900;
}

.vmb-product-info p {
    margin: 0.125rem 0 0;

    color: var(--vmb-slate-500);

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 400;
}


/* =========================================================
   FEATURES
========================================================= */

.vmb-product-features {
    display: flex;
    flex-direction: column;

    gap: 0.375rem;

    margin: 0;

    padding: 0.25rem 0 0;

    list-style: none;

    color: var(--vmb-slate-600);

    font-size: 0.75rem;
    line-height: 1rem;
}

.vmb-product-features li {
    display: flex;

    align-items: flex-start;

    gap: 0.5rem;
}

.vmb-product-features li svg {
    width: 0.875rem;
    height: 0.875rem;

    margin-top: 0.125rem;

    color: var(--vmb-emerald-500);

    flex-shrink: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.vmb-prize-footer {
    padding-top: 0.75rem;

    border-top: 1px solid var(--vmb-slate-100);

    display: flex;
    flex-direction: column;

    gap: 0.625rem;
}

.vmb-courier {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 0.75rem;

    color: var(--vmb-slate-500);

    font-size: 0.75rem;
    line-height: 1rem;
}

.vmb-courier strong {
    color: var(--vmb-emerald-500);

    font-weight: 700;

    text-align: right;
}


/* =========================================================
   BUTTON
========================================================= */

.vmb-specs-button {
    width: 100%;

    min-height: 2.5rem;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.375rem;

    padding: 0.625rem 0.75rem;

    border: 0;

    border-radius: 0.75rem;

    color: var(--vmb-white);

    background: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 700;

    cursor: pointer;

    transition: background-color var(--vmb-transition);
}

.vmb-specs-button:hover {
    background: var(--vmb-slate-800);
}

.vmb-specs-button svg {
    width: 0.875rem;
    height: 0.875rem;

    flex-shrink: 0;
}


/***how it works***/

/* =========================================================
   HOW VOTEMYBABY WORKS
========================================================= */

.vmb-how-section {
    width: 100%;
    padding: 60px 0px;
}

.vmb-how-container {
    width: 100%;
    font-family: 'Outfit';
}

/* =========================================================
   SECTION HEADING
========================================================= */

.vmb-how-heading {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 0.5rem;

    text-align: center;
}

.vmb-how-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.375rem;

    padding: 0.25rem 0.875rem;

    color: var(--vmb-pink-600);
    background: var(--vmb-pink-50);

    border: 1px solid var(--vmb-pink-200);

    border-radius: 999px;

    font-size: 0.75rem;
    line-height: 1rem;

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-how-label svg {
    width: 0.875rem;
    height: 0.875rem;

    color: var(--vmb-pink-500);

    flex-shrink: 0;
}

.vmb-how-heading h2 {
    margin: 0.25rem 0 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 2.25rem;
    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -0.025em;
}

.vmb-how-heading p {
    max-width: 40rem;

    margin: 0.5rem auto 0;

    color: var(--vmb-slate-600);

    font-size: 1rem;
    line-height: 1.625;

    font-weight: 400;
}


/* =========================================================
   STEPS GRID
========================================================= */

.vmb-how-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 1.25rem;

    padding-top: 0.5rem;

    margin-top: 1.5rem;
}


/* =========================================================
   STEP CARD
========================================================= */

.vmb-how-card {
    position: relative;

    min-width: 0;

    padding: 1.25rem;

    background: var(--vmb-white);

    border: 1px solid rgb(226 232 240 / 0.9);

    border-radius: 1rem;

    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);

    transition:
        border-color var(--vmb-transition),
        box-shadow var(--vmb-transition);
}

.vmb-how-card:hover {
    border-color: #f9a8d4;

    box-shadow:
        0 4px 6px -1px rgb(0 0 0 / 0.08),
        0 2px 4px -2px rgb(0 0 0 / 0.08);
}


/* =========================================================
   STEP NUMBER
========================================================= */

.vmb-how-number {
    width: 2.25rem;
    height: 2.25rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0.75rem;

    font-family: var(--vmb-font);

    font-size: 0.875rem;
    line-height: 1rem;

    font-weight: 900;

    border: 1px solid;
}


/* PINK */

.vmb-how-number-pink {
    color: var(--vmb-pink-600);

    background: var(--vmb-pink-50);

    border-color: var(--vmb-pink-200);
}


/* BLUE */

.vmb-how-number-blue {
    color: var(--vmb-blue-500);

    background: var(--vmb-blue-50);

    border-color: var(--vmb-blue-200);
}


/* AMBER */

.vmb-how-number-amber {
    color: var(--vmb-amber-600);

    background: var(--vmb-amber-50);

    border-color: var(--vmb-amber-200);
}


/* EMERALD */

.vmb-how-number-emerald {
    color: var(--vmb-emerald-600);

    background: var(--vmb-emerald-50);

    border-color: var(--vmb-emerald-200);
}


/* =========================================================
   CARD TEXT
========================================================= */

.vmb-how-card h3 {
    margin: 0.625rem 0 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);

    font-size: 1rem;
    line-height: 1.25rem;

    font-weight: 900;
}

.vmb-how-card p {
    margin: 0.625rem 0 0;

    color: var(--vmb-slate-600);

    font-size: 0.75rem;
    line-height: 1.625;

    font-weight: 400;
}


/* =========================================================
   RESPONSIVE
========================================================= */










/**blog sec**/

.vmb-blog-section {
    font-family: var(--vmb-font);
    padding: 60px 0px 60px;
}

.vmb-blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vmb-blog-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vmb-blog-label {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.375rem;
    padding: 0.25rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid var(--vmb-pink-200);
    background: var(--vmb-pink-50);
    color: var(--vmb-pink-600);
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-blog-label svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
    color: var(--vmb-pink-500);
}

.vmb-blog-heading h2 {
    margin: 0.25rem 0 0;
    color: var(--vmb-slate-900);
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-blog-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 0.75rem;
    background: var(--vmb-white);
    color: var(--vmb-slate-800);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--vmb-transition);
}

.vmb-blog-all-link:hover {
    background: var(--vmb-pink-600);
    color: var(--vmb-slate-100);
}

.vmb-blog-all-link svg {
    width: 0.875rem;
    height: 0.875rem;
}

.vmb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.vmb-blog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--vmb-radius-2xl);
    background: var(--vmb-white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--vmb-transition);
}

.vmb-blog-card:hover {
    border-color: var(--vmb-pink-600);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.vmb-blog-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--vmb-slate-100);
}

.vmb-blog-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vmb-blog-card:hover .vmb-blog-image-wrap img {
    transform: scale(1.03);
}

.vmb-blog-category {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--vmb-pink-600);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 0.625rem;
    line-height: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.vmb-blog-content {
    padding: 1.25rem;
}

.vmb-blog-section .vmb-blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--vmb-slate-400);
    font-size: 0.75rem;
    line-height: 1rem;
    justify-content: flex-start;
    margin-top: 0px;
}

.vmb-blog-content h3 {
    margin: 0;
    color: var(--vmb-slate-900);
    font-size: 1rem;
    line-height: 1.375;
    font-weight: 900;
    transition: var(--vmb-transition);
}

.vmb-blog-card:hover .vmb-blog-content h3 {
    color: var(--vmb-pink-600);
}

.vmb-blog-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0.5rem 0 0;
    color: var(--vmb-slate-600);
    font-size: 0.88rem;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.vmb-blog-read {
    padding: 0 1.25rem 1.25rem;
}

.vmb-blog-read a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--vmb-pink-600);
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.vmb-blog-read a svg {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform var(--vmb-transition);
}

.vmb-blog-read a:hover {
    color: var(--vmb-indigo-700);
}

.vmb-blog-card:hover .vmb-blog-read a svg {
    transform: translateX(0.125rem);
}














/***faq***/

.vmb-faq-section {
    padding: 60px 0px;
    background: #f7f7f7;
}

.vmb-faq-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.vmb-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--vmb-pink-600);
    background: var(--vmb-pink-50);
    border: 1px solid var(--vmb-pink-200);
    padding: 0.25rem 0.875rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-faq-badge svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--vmb-pink-500);
    flex-shrink: 0;
}

.vmb-faq-header h2 {
    margin: 16px 0px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-faq-header p {
    margin: 0.5rem 0 0;
    color: var(--vmb-slate-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

.vmb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vmb-faq-item {
    background: var(--vmb-white);
    border: 1px solid var(--vmb-slate-200);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: border-color var(--vmb-transition),
        box-shadow var(--vmb-transition);
}

.vmb-faq-item:hover {
    border-color: var(--vmb-slate-300);
}

.vmb-faq-item.is-open {
    border-color: var(--vmb-slate-200);
}

.vmb-faq-question {
    width: 100%;
    padding: 1rem;
    border: 0;
    background: transparent;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    transition: color var(--vmb-transition);
}

.vmb-faq-question:hover {
    color: var(--vmb-pink-600);
}

.vmb-faq-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--vmb-slate-400);
    transition: transform var(--vmb-transition),
        color var(--vmb-transition);
}

.vmb-faq-item.is-open .vmb-faq-icon {
    color: var(--vmb-pink-600);
    transform: rotate(180deg);
}

.vmb-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease;
}

.vmb-faq-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    color: var(--vmb-slate-600);
    font-size: 0.9rem;
    line-height: 1.625;
    border-top: 0 solid var(--vmb-slate-100);
    transition: padding 0.2s ease,
        border-top-width 0.2s ease;
}

.vmb-faq-item.is-open .vmb-faq-answer {
    grid-template-rows: 1fr;
}

.vmb-faq-item.is-open .vmb-faq-answer-inner {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
    border-top-width: 1px;
}

.vmb-faq-footer {
    text-align: center;
    margin-top: 40px;
}

.vmb-faq-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--vmb-pink-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color var(--vmb-transition);
}

.vmb-faq-footer a:hover {
    color: var(--vmb-pink-700);
}

.vmb-faq-footer svg {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform var(--vmb-transition);
}

.vmb-faq-footer a:hover svg {
    transform: translateX(2px);
}


/**links**/

.vmb-resource-section {
    padding: 60px 0px;
    background: var(--vmb-slate-50);
}

.vmb-resource-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--vmb-slate-100);
}

.vmb-resource-heading {
    min-width: 0;
}

.vmb-resource-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.25rem;
    color: var(--vmb-pink-600);
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-resource-label svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.vmb-resource-heading h2 {
    margin: 10px 0px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-resource-heading p {
    max-width: 42rem;
    margin: 0.25rem 0 0;
    color: var(--vmb-slate-500);
    font-size: 0.875rem;
    line-height: 1.5;
}

.vmb-resource-tag {
    flex-shrink: 0;
    align-self: center;
    padding: 0.25rem 0.75rem;
    color: var(--vmb-slate-400);
    background: var(--vmb-slate-50);
    border: 1px solid var(--vmb-slate-200);
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 700;
}

.vmb-resource-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.vmb-resource-card {
    min-width: 0;
    min-height: 100%;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    transition:
        border-color var(--vmb-transition),
        box-shadow var(--vmb-transition);
}

.vmb-resource-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.vmb-resource-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.vmb-resource-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.vmb-resource-icon {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: transform var(--vmb-transition);
}

.vmb-resource-card:hover .vmb-resource-icon {
    transform: scale(1.05);
}

.vmb-resource-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.vmb-resource-status {
    padding: 0.125rem 0.5rem;
    color: var(--vmb-slate-700);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 0.375rem;
    font-size: 0.625rem;
    line-height: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.vmb-resource-card h3 {
    margin: 0;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 0.875rem;
    line-height: 1.25;
    font-weight: 900;
    transition: color var(--vmb-transition);
}

.vmb-resource-card p {
    display: -webkit-box;
    margin: 0.25rem 0 0;
    overflow: hidden;
    color: var(--vmb-slate-600);
    font-size: 0.75rem;
    line-height: 1.625;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.vmb-resource-card-link {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    color: var(--vmb-slate-700);
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    transition: color var(--vmb-transition);
}

.vmb-resource-card-link svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
    transition: transform var(--vmb-transition);
}


/* PINK */
.vmb-card-pink {
    background: linear-gradient(to bottom right,
            var(--vmb-pink-50),
            rgba(255, 241, 242, 0.6));
    border-color: var(--vmb-pink-200);
}

.vmb-card-pink:hover {
    border-color: var(--vmb-pink-500);
}

.vmb-card-pink .vmb-resource-icon {
    color: var(--vmb-pink-600);
    background: var(--vmb-pink-100);
}

.vmb-card-pink h3:hover,
.vmb-card-pink:hover h3 {
    color: var(--vmb-pink-600);
}

.vmb-card-pink:hover .vmb-resource-card-link {
    color: var(--vmb-pink-600);
}


/* BLUE */
.vmb-card-blue {
    background: linear-gradient(to bottom right,
            var(--vmb-blue-50),
            rgba(240, 249, 255, 0.6));
    border-color: var(--vmb-blue-200);
}

.vmb-card-blue:hover {
    border-color: var(--vmb-blue-500);
}

.vmb-card-blue .vmb-resource-icon {
    color: var(--vmb-blue-500);
    background: var(--vmb-blue-50);
}

.vmb-card-blue:hover h3 {
    color: var(--vmb-blue-500);
}


/* PURPLE */
.vmb-card-purple {
    background: linear-gradient(to bottom right,
            var(--vmb-purple-50),
            rgba(238, 242, 255, 0.6));
    border-color: var(--vmb-purple-200);
}

.vmb-card-purple:hover {
    border-color: var(--vmb-purple-500);
}

.vmb-card-purple .vmb-resource-icon {
    color: var(--vmb-purple-500);
    background: var(--vmb-purple-100);
}

.vmb-card-purple:hover h3 {
    color: var(--vmb-purple-500);
}


/* AMBER */
.vmb-card-amber {
    background: linear-gradient(to bottom right,
            var(--vmb-amber-50),
            rgba(254, 252, 232, 0.6));
    border-color: var(--vmb-amber-200);
}

.vmb-card-amber:hover {
    border-color: var(--vmb-amber-500);
}

.vmb-card-amber .vmb-resource-icon {
    color: var(--vmb-amber-600);
    background: var(--vmb-amber-100);
}

.vmb-card-amber:hover h3 {
    color: var(--vmb-amber-600);
}


/* EMERALD */
.vmb-card-emerald {
    background: linear-gradient(to bottom right,
            var(--vmb-emerald-50),
            rgba(240, 253, 250, 0.6));
    border-color: var(--vmb-emerald-200);
}

.vmb-card-emerald:hover {
    border-color: var(--vmb-emerald-500);
}

.vmb-card-emerald .vmb-resource-icon {
    color: var(--vmb-emerald-600);
    background: var(--vmb-emerald-50);
}

.vmb-card-emerald:hover h3 {
    color: var(--vmb-emerald-600);
}


/* ROSE */
.vmb-card-rose {
    background: linear-gradient(to bottom right,
            var(--vmb-rose-50),
            rgba(255, 247, 237, 0.6));
    border-color: var(--vmb-rose-200);
}

.vmb-card-rose:hover {
    border-color: var(--vmb-rose-500);
}

.vmb-card-rose .vmb-resource-icon {
    color: var(--vmb-rose-500);
    background: var(--vmb-rose-50);
}

.vmb-card-rose:hover h3 {
    color: var(--vmb-rose-500);
}


/* CYAN */
.vmb-card-cyan {
    background: linear-gradient(to bottom right,
            var(--vmb-cyan-50),
            rgba(239, 246, 255, 0.6));
    border-color: var(--vmb-cyan-200);
}

.vmb-card-cyan:hover {
    border-color: var(--vmb-cyan-500);
}

.vmb-card-cyan .vmb-resource-icon {
    color: var(--vmb-cyan-500);
    background: var(--vmb-cyan-50);
}

.vmb-card-cyan:hover h3 {
    color: var(--vmb-cyan-500);
}


/* INDIGO */
.vmb-card-indigo {
    background: linear-gradient(to bottom right,
            var(--vmb-indigo-50),
            rgba(245, 243, 255, 0.6));
    border-color: var(--vmb-indigo-200);
}

.vmb-card-indigo:hover {
    border-color: var(--vmb-indigo-500);
}

.vmb-card-indigo .vmb-resource-icon {
    color: var(--vmb-indigo-500);
    background: var(--vmb-indigo-50);
}

.vmb-card-indigo:hover h3 {
    color: var(--vmb-indigo-500);
}


.vmb-resource-card:hover .vmb-resource-card-link svg {
    transform: translateX(0.25rem);
}











/*last cta**/

.vmb-final-cta {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    margin: 60px auto;
}

.vmb-final-cta-inner {
    position: relative;
    overflow: hidden;
    padding: 3rem 3rem;
    border-radius: 1rem;
    color: var(--vmb-white);

    background: linear-gradient(to right,
            var(--vmb-pink-600),
            var(--vmb-rose-600),
            var(--vmb-amber-600));

    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);

    text-align: center;
}

.vmb-final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 36rem;
    margin: 0 auto;
}

.vmb-final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;

    padding: 0.25rem 0.875rem;

    background: rgba(255, 255, 255, 0.2);
    color: var(--vmb-white);

    border-radius: 9999px;

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.25rem;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.vmb-final-cta-badge svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
    color: #fcd34d;
}

.vmb-final-cta-content h2 {
    margin: 20px 0px 10px;
    color: var(--vmb-white);
    font-family: var(--vmb-font);
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-final-cta-content p {
    margin: 0.75rem 0 0;

    color: var(--vmb-pink-100);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    line-height: 1.625;
    font-weight: 400;
}

.vmb-final-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 30px;
}

.vmb-final-cta-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    border-radius: 0.75rem;

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background-color var(--vmb-transition),
        color var(--vmb-transition),
        transform var(--vmb-transition),
        box-shadow var(--vmb-transition);
}

.vmb-final-cta-actions button svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.vmb-final-cta-primary {
    padding: 0.5rem 1.75rem;
    background: var(--vmb-white);
    color: var(--vmb-slate-950);
    border: 1px solid var(--vmb-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    line-height: 20px;
}

.vmb-final-cta-primary:hover {
    background: var(--vmb-slate-50);
}

.vmb-final-cta-primary>svg:first-child {
    color: var(--vmb-pink-600);
}

.vmb-final-cta-primary .vmb-arrow {
    color: var(--vmb-slate-900);
    transition: transform var(--vmb-transition);
    width: 16px;
}

.vmb-final-cta-primary:hover .vmb-arrow {
    transform: translateX(0.125rem);
}

.vmb-final-cta-primary:active,
.vmb-final-cta-secondary:active {
    transform: scale(0.98);
}
.vmb-final-cta-secondary {
    padding: 0.7rem 1.5rem;
    background: rgba(2, 6, 23, 0.4);
    color: var(--vmb-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-size: 13px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.vmb-final-cta-secondary:hover {
    background: rgba(2, 6, 23, 0.6);
}

.vmb-final-cta-secondary svg {
    width: 0.875rem !important;
    height: 0.875rem !important;
    color: #f9a8d4;
}

/***about page css**/

/* =========================================
   ABOUT HERO SECTION
========================================= */

.vmb-about-hero-section {
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    background:
        linear-gradient(to bottom,
            rgba(255, 251, 235, 0.5),
            rgba(255, 241, 242, 0.3),
            rgba(248, 250, 252, 0.7));
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.vmb-about-hero-content {
    text-align: center;
}

/* Badge */

.vmb-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--vmb-white);
    color: var(--vmb-slate-900);
    border: 1px solid var(--vmb-pink-200);
    padding: 0.25rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.vmb-about-badge svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
    stroke: var(--vmb-pink-600);
    fill: var(--vmb-pink-500);
}

/* Heading */

.vmb-about-hero-content h1 {
    margin: 1rem 0 0;
    font-family: var(--vmb-font);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--vmb-slate-950);
}

.vmb-about-gradient-text {
    color: transparent;
    background-image: linear-gradient(to right,
            var(--vmb-pink-600),
            var(--vmb-rose-500),
            var(--vmb-amber-600));
    background-clip: text;
    -webkit-background-clip: text;
}

/* Description */

.vmb-about-hero-content>p {
    max-width: 42rem;
    margin: 0.75rem auto 0;
    color: var(--vmb-slate-600);
    font-family: var(--vmb-font);
    font-size: 0.75rem;
    line-height: 1.625;
}

.vmb-about-hero-content>p strong {
    font-weight: 700;
    color: var(--vmb-slate-700);
}

/* Buttons */

.vmb-about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.vmb-about-primary-btn,
.vmb-about-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--vmb-transition);
}

.vmb-about-primary-btn {
    border: 1px solid transparent;
    background: var(--vmb-pink-600);
    color: var(--vmb-white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.vmb-about-primary-btn:hover {
    background: linear-gradient(to right,
            var(--vmb-pink-600),
            var(--vmb-rose-600));
}

.vmb-about-secondary-btn {
    border: 1px solid var(--vmb-slate-200);
    background: var(--vmb-white);
    color: var(--vmb-slate-800);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.vmb-about-secondary-btn:hover {
    background: var(--vmb-slate-50);
}

.vmb-about-primary-btn svg,
.vmb-about-secondary-btn svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-about-secondary-btn svg {
    color: var(--vmb-pink-500);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 640px) {

    .vmb-about-hero-section {
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }

    .vmb-about-hero-content h1 {
        font-size: 2.25rem;
    }

    .vmb-about-hero-content>p {
        font-size: 0.875rem;
    }

    .vmb-about-primary-btn,
    .vmb-about-secondary-btn {
        font-size: 0.875rem;
    }

}


@media (min-width: 1024px) {

    .vmb-about-hero-content h1 {
        font-size: 3rem;
    }

    .vmb-about-hero-content>p {
        font-size: 1rem;
    }

}



/* =========================================
   ABOUT CONTENT
========================================= */

.vmb-about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.vmb-about-content section {
    width: 100%;
}

/* =========================================
   COMMON
========================================= */

.vmb-section-label,
.vmb-quick-label,
.vmb-safety-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-section-label {
    color: var(--vmb-pink-600);
}

.vmb-section-heading {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.vmb-section-heading>span {
    color: var(--vmb-pink-600);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-section-heading h2,
.vmb-cadence-header h2,
.vmb-prizes-header h2,
.vmb-quick-links-header h3 {
    margin: 0.125rem 0 0;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-weight: 900;
}

.vmb-section-heading h2 {
    font-size: 1.25rem;
}

.vmb-section-heading p {
    margin: 0.375rem 0 0;
    color: var(--vmb-slate-500);
    font-size: 1rem;
    line-height: 1.5;
}


/* =========================================
   FOUNDATIONAL PRINCIPLES
========================================= */

.vmb-principles-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 60px 0px 0px;
}

.vmb-principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.vmb-principle-card {
    padding: 1.5rem;
    background: var(--vmb-white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--vmb-radius-2xl);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: border-color var(--vmb-transition),
        transform var(--vmb-transition);
}

.vmb-principle-card:hover {
    transform: translateY(-2px);
}

.vmb-principle-pink:hover {
    border-color: var(--vmb-pink-200);
}

.vmb-principle-blue:hover {
    border-color: var(--vmb-blue-200);
}

.vmb-principle-amber:hover {
    border-color: var(--vmb-amber-200);
}

.vmb-principle-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.vmb-principle-card:hover .vmb-principle-icon {
    transform: scale(1.05);
}

.vmb-principle-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-principle-pink .vmb-principle-icon {
    background: var(--vmb-pink-50);
    color: var(--vmb-pink-600);
}

.vmb-principle-blue .vmb-principle-icon {
    background: var(--vmb-blue-50);
    color: var(--vmb-blue-500);
}

.vmb-principle-amber .vmb-principle-icon {
    background: var(--vmb-amber-50);
    color: var(--vmb-amber-600);
}

.vmb-principle-card h3 {
    margin: 0;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 1.125rem;
    font-weight: 900;
}

.vmb-principle-card p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 0.75rem;
    line-height: 1.625;
}


/* =========================================
   14-DAY CYCLE
========================================= */

.vmb-cadence-section {
    padding: 1.5rem;
    background: var(--vmb-white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.vmb-cadence-header,
.vmb-prizes-header,
.vmb-quick-links-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vmb-cadence-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--vmb-slate-100);
}

.vmb-cadence-header h2 {
    font-size: 1.25rem;
}

.vmb-cadence-header p,
.vmb-prizes-header p {
    margin: 0.25rem 0 0;
    color: var(--vmb-slate-500);
    font-size: 0.75rem;
}

.vmb-current-cycle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.375rem 0.75rem;
    background: var(--vmb-pink-50);
    color: var(--vmb-pink-700);
    border: 1px solid var(--vmb-pink-200);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.vmb-current-cycle svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.vmb-cycle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.vmb-cycle-card {
    padding: 1.25rem;
    background: var(--vmb-slate-50);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--vmb-radius-2xl);
}

.vmb-cycle-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.vmb-cycle-top>span:last-child {
    color: var(--vmb-slate-400);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.vmb-cycle-number {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vmb-white);
    font-size: 0.75rem;
    font-weight: 900;
}

.vmb-pink-bg {
    background: var(--vmb-pink-600);
}

.vmb-blue-bg {
    background: var(--vmb-blue-500);
}

.vmb-indigo-bg {
    background: var(--vmb-indigo-500);
}

.vmb-emerald-bg {
    background: var(--vmb-emerald-600);
}

.vmb-cycle-card h3 {
    margin: 0.5rem 0 0;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 0.875rem;
    font-weight: 700;
}

.vmb-cycle-card p {
    margin: 0.5rem 0 0;
    color: var(--vmb-slate-600);
    font-size: 0.75rem;
    line-height: 1.625;
}


/* =========================================
   SAFETY
========================================= */

.vmb-safety-section {
    padding: 1.5rem;
    background: var(--vmb-slate-900);
    color: var(--vmb-white);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vmb-safety-label {
    color: #34d399;
}

.vmb-safety-label svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.vmb-safety-intro h2 {
    margin: 0.375rem 0 0;
    color: var(--vmb-white);
    font-family: var(--vmb-font);
    font-size: 1.25rem;
    font-weight: 900;
}

.vmb-safety-intro p {
    max-width: 42rem;
    margin: 0.5rem 0 0;
    color: var(--vmb-slate-300);
    font-size: 0.75rem;
    line-height: 1.625;
}

.vmb-safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.vmb-safety-card {
    padding: 1rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.8);
    border-radius: var(--vmb-radius-2xl);
}

.vmb-safety-card>svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: #34d399;
    stroke-width: 2;
}

.vmb-safety-card h3 {
    margin: 0.5rem 0 0;
    color: var(--vmb-white);
    font-size: 0.875rem;
    font-weight: 700;
}

.vmb-safety-card p {
    margin: 0.5rem 0 0;
    color: var(--vmb-slate-300);
    font-size: 0.75rem;
    line-height: 1.625;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 640px) {

    .vmb-about-content {
        gap: 4rem;
    }

    .vmb-principle-card {
        padding: 2rem;
    }

    .vmb-cadence-section,
    .vmb-safety-section,
    .vmb-quick-links-section {
        padding: 2.5rem;
    }

    .vmb-principles-grid,
    .vmb-prize-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vmb-cycle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmb-safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmb-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmb-principle-card p,
    .vmb-cycle-card p,
    .vmb-safety-card p,
    .vmb-prize-card p,
    .vmb-quick-card p,
    .vmb-contact-section p {
        font-size: 0.875rem;
    }

    .vmb-section-heading h2 {
        font-size: 1.875rem;
    }

    .vmb-cadence-header h2,
    .vmb-prizes-header h2 {
        font-size: 1.5rem;
    }
}


@media (min-width: 768px) {

    .vmb-cadence-header,
    .vmb-prizes-header,
    .vmb-quick-links-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .vmb-safety-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vmb-quick-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .vmb-cycle-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


@media (min-width: 1024px) {

    .vmb-quick-links-section {
        padding: 2.5rem;
    }
}


/***how its work**/

/* =========================================================
   HOW VOTEMYBABY PAGE
========================================================= */

.full-width-section {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.vmb-how-hero {
    padding: 42px 0 52px;
    background: linear-gradient(to bottom,
            rgba(255, 251, 235, 0.55),
            rgba(253, 242, 248, 0.35),
            rgba(248, 250, 252, 0.7));
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.vmb-how-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.vmb-how-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--vmb-pink-200);
    color: var(--vmb-pink-600);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.07em;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.vmb-how-badge svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-how-hero h1 {
    margin: 14px 0 10px;
    color: var(--vmb-slate-950);
    font-family: var(--vmb-font);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-how-hero-content>p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--vmb-slate-600);
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.vmb-section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.vmb-section-heading>span {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: 999px;
    background: var(--vmb-pink-50);
    border: 1px solid var(--vmb-pink-200);
    color: var(--vmb-pink-600);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vmb-section-heading h2 {
    margin: 10px 0 7px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-section-heading p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   8 STEPS
========================================================= */

.vmb-steps-section {
    padding: 64px 0;
    background: #ffffff;
}

.vmb-steps-heading {
    margin-bottom: 32px;
}

.vmb-how-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.vmb-how-step-card {
    position: relative;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200);
    border-radius: var(--vmb-radius-2xl);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.035);
    overflow: hidden;
    transition:
        border-color var(--vmb-transition),
        box-shadow var(--vmb-transition),
        transform var(--vmb-transition);
}

.vmb-how-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.vmb-step-pink:hover {
    border-color: var(--vmb-pink-200);
}

.vmb-step-blue:hover {
    border-color: var(--vmb-blue-200);
}

.vmb-step-amber:hover {
    border-color: var(--vmb-amber-200);
}

.vmb-step-emerald:hover {
    border-color: var(--vmb-emerald-200);
}

.vmb-how-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 17px;
}

.vmb-how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    font-family: var(--vmb-font);
}

.vmb-step-pink .vmb-how-step-number {
    background: var(--vmb-pink-50);
    border: 1px solid var(--vmb-pink-200);
    color: var(--vmb-pink-600);
}

.vmb-step-blue .vmb-how-step-number {
    background: var(--vmb-blue-50);
    border: 1px solid var(--vmb-blue-200);
    color: var(--vmb-blue-500);
}

.vmb-step-indigo .vmb-how-step-number {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    color: #4f46e5;
}

.vmb-step-amber .vmb-how-step-number {
    background: var(--vmb-amber-50);
    border: 1px solid var(--vmb-amber-200);
    color: var(--vmb-amber-600);
}

.vmb-step-rose .vmb-how-step-number {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: var(--vmb-rose-600);
}

.vmb-step-purple .vmb-how-step-number {
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    color: #9333ea;
}

.vmb-step-emerald .vmb-how-step-number {
    background: var(--vmb-emerald-50);
    border: 1px solid var(--vmb-emerald-200);
    color: var(--vmb-emerald-600);
}

.vmb-how-step-label {
    color: var(--vmb-slate-400);
    font-size: 10px;
    font-weight: 800;
    text-align: right;
    line-height: 1.3;
}

.vmb-how-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 13px;
    border-radius: 13px;
}

.vmb-how-step-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-step-pink .vmb-how-step-icon {
    background: var(--vmb-pink-50);
    color: var(--vmb-pink-600);
}

.vmb-step-blue .vmb-how-step-icon {
    background: var(--vmb-blue-50);
    color: var(--vmb-blue-500);
}

.vmb-step-indigo .vmb-how-step-icon {
    background: #eef2ff;
    color: #4f46e5;
}

.vmb-step-amber .vmb-how-step-icon {
    background: var(--vmb-amber-50);
    color: var(--vmb-amber-600);
}

.vmb-step-rose .vmb-how-step-icon {
    background: #fff1f2;
    color: var(--vmb-rose-600);
}

.vmb-step-purple .vmb-how-step-icon {
    background: #faf5ff;
    color: #9333ea;
}

.vmb-step-emerald .vmb-how-step-icon {
    background: var(--vmb-emerald-50);
    color: var(--vmb-emerald-600);
}

.vmb-how-step-card h3 {
    margin: 0 0 8px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

.vmb-how-step-card p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   FAIR VOTING TRANSPARENCY
========================================================= */

.vmb-transparency-section {
    padding: 0 0 64px;
}

.vmb-transparency-box {
    padding: 38px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            var(--vmb-slate-50),
            #ffffff);
    border: 1px solid var(--vmb-slate-200);
}

.vmb-transparency-header {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
}

.vmb-transparency-header .vmb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vmb-blue-500);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vmb-section-label svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-transparency-header h2 {
    margin: 9px 0 7px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    font-weight: 900;
}

.vmb-transparency-header p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 13px;
    line-height: 1.65;
}

.vmb-transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.vmb-transparency-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 18px;
}

.vmb-transparency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 13px;
    border-radius: 11px;
}

.vmb-transparency-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-icon-blue {
    background: var(--vmb-blue-50);
    color: var(--vmb-blue-500);
}

.vmb-icon-amber {
    background: var(--vmb-amber-50);
    color: var(--vmb-amber-600);
}

.vmb-icon-emerald {
    background: var(--vmb-emerald-50);
    color: var(--vmb-emerald-600);
}

.vmb-transparency-card h3 {
    margin: 0 0 7px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 14px;
    font-weight: 900;
}

.vmb-transparency-card p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 12px;
    line-height: 1.65;
}

.vmb-transparency-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.vmb-action-primary,
.vmb-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 800;
    transition: var(--vmb-transition);
}

.vmb-action-primary {
    color: #ffffff;
    background: var(--vmb-pink-600);
}

.vmb-action-primary:hover {
    background: var(--vmb-pink-700);
}

.vmb-action-secondary {
    color: var(--vmb-slate-800);
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200);
}

.vmb-action-secondary:hover {
    background: var(--vmb-slate-50);
}

.vmb-action-primary svg,
.vmb-action-secondary svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   RESOURCES
========================================================= */

.vmb-how-resources-section {
    padding: 0 0 64px;
}

.vmb-resource-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.vmb-resource-heading {
    max-width: 700px;
}

.vmb-resource-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--vmb-indigo-500);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vmb-resource-label svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-resource-heading h2 {
    margin: 0 0 7px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    font-weight: 900;
}

.vmb-resource-heading p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 13px;
    line-height: 1.65;
}

.vmb-resource-tag {
    flex-shrink: 0;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--vmb-slate-50);
    border: 1px solid var(--vmb-slate-200);
    color: var(--vmb-slate-600);
    font-size: 10px;
    font-weight: 800;
}

.vmb-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.vmb-resource-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 205px;
    padding: 20px;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 18px;
    background: #ffffff;
    text-decoration: none;
    overflow: hidden;
    transition:
        transform var(--vmb-transition),
        box-shadow var(--vmb-transition),
        border-color var(--vmb-transition);
}

.vmb-resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.vmb-resource-card-content {
    flex: 1;
}

.vmb-resource-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 17px;
}

.vmb-resource-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.vmb-resource-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-resource-status {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vmb-card-pink .vmb-resource-icon {
    background: var(--vmb-pink-50);
    color: var(--vmb-pink-600);
}

.vmb-card-pink .vmb-resource-status,
.vmb-card-pink .vmb-resource-card-link {
    color: var(--vmb-pink-600);
}

.vmb-card-blue .vmb-resource-icon {
    background: var(--vmb-blue-50);
    color: var(--vmb-blue-500);
}

.vmb-card-blue .vmb-resource-status,
.vmb-card-blue .vmb-resource-card-link {
    color: var(--vmb-blue-500);
}

.vmb-card-purple .vmb-resource-icon {
    background: #faf5ff;
    color: #9333ea;
}

.vmb-card-purple .vmb-resource-status,
.vmb-card-purple .vmb-resource-card-link {
    color: #9333ea;
}

.vmb-card-amber .vmb-resource-icon {
    background: var(--vmb-amber-50);
    color: var(--vmb-amber-600);
}

.vmb-card-amber .vmb-resource-status,
.vmb-card-amber .vmb-resource-card-link {
    color: var(--vmb-amber-600);
}

.vmb-card-rose .vmb-resource-icon {
    background: #fff1f2;
    color: var(--vmb-rose-600);
}

.vmb-card-rose .vmb-resource-status,
.vmb-card-rose .vmb-resource-card-link {
    color: var(--vmb-rose-600);
}

.vmb-card-cyan .vmb-resource-icon {
    background: #ecfeff;
    color: #0891b2;
}

.vmb-card-cyan .vmb-resource-status,
.vmb-card-cyan .vmb-resource-card-link {
    color: #0891b2;
}

.vmb-card-indigo .vmb-resource-icon {
    background: #eef2ff;
    color: #4f46e5;
}

.vmb-card-indigo .vmb-resource-status,
.vmb-card-indigo .vmb-resource-card-link {
    color: #4f46e5;
}

.vmb-resource-card h3 {
    margin: 0 0 7px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
}

.vmb-resource-card p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 11px;
    line-height: 1.65;
}

.vmb-resource-card-link {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 900;
}

.vmb-resource-card-link svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--vmb-transition);
}

.vmb-resource-card:hover .vmb-resource-card-link svg {
    transform: translateX(3px);
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.vmb-highlights-section {
    padding: 0 0 54px;
}

.vmb-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.vmb-highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200);
    color: var(--vmb-slate-700);
    font-size: 10px;
    font-weight: 800;
}

.vmb-highlight-item svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--vmb-pink-600);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   FINAL CTA
========================================================= */

.vmb-how-final-cta {
    padding: 0 0 70px;
}

.vmb-how-final-inner {
    position: relative;
    padding: 46px 42px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(110deg,
            var(--vmb-pink-600),
            var(--vmb-rose-600),
            var(--vmb-amber-600));
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.13);
}

.vmb-how-final-inner::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.vmb-how-final-inner::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -100px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.vmb-how-final-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.vmb-final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.vmb-final-cta-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-how-final-content h2 {
    margin: 13px 0 9px;
    color: #ffffff;
    font-family: var(--vmb-font);
    font-size: clamp(25px, 4vw, 38px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-how-final-content p {
    margin: 0 auto;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.65;
}

.vmb-how-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.vmb-how-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.vmb-how-benefit>svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #ffffff;
}

.vmb-how-benefit h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 900;
}

.vmb-how-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.55;
}

.vmb-how-final-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 27px;
}

.vmb-how-primary-btn,
.vmb-how-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 43px;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--vmb-font);
    font-size: 11px;
    font-weight: 900;
    transition: var(--vmb-transition);
}

.vmb-how-primary-btn {
    color: var(--vmb-slate-950);
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vmb-how-primary-btn:hover {
    background: var(--vmb-slate-50);
}

.vmb-how-primary-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--vmb-pink-600);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-how-primary-btn .vmb-arrow {
    stroke: var(--vmb-slate-900);
    transition: transform var(--vmb-transition);
}

.vmb-how-primary-btn:hover .vmb-arrow {
    transform: translateX(3px);
}

.vmb-how-secondary-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(15, 23, 42, 0.22);
}

.vmb-how-secondary-btn:hover {
    background: rgba(15, 23, 42, 0.35);
}

.vmb-how-footer-note {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 9px;
    text-align: center;
}

.vmb-how-footer-note span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vmb-how-footer-note svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-how-footer-note strong {
    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .vmb-how-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmb-how-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 768px) {

    .vmb-how-hero {
        padding: 32px 0 42px;
    }

    .vmb-steps-section {
        padding: 48px 0;
    }

    .vmb-how-steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vmb-transparency-box {
        padding: 26px 18px;
    }

    .vmb-transparency-grid {
        grid-template-columns: 1fr;
    }

    .vmb-resource-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .vmb-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmb-how-final-inner {
        padding: 34px 20px;
    }

}


@media (max-width: 560px) {

    .vmb-how-hero-content>p {
        font-size: 13px;
    }

    .vmb-how-step-card {
        padding: 17px;
    }

    .vmb-how-step-top {
        margin-bottom: 14px;
    }

    .vmb-how-step-label {
        max-width: 150px;
    }

    .vmb-resource-grid {
        grid-template-columns: 1fr;
    }

    .vmb-resource-card {
        min-height: 185px;
    }

    .vmb-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .vmb-highlight-item {
        justify-content: center;
        text-align: center;
    }

    .vmb-how-benefits {
        grid-template-columns: 1fr;
    }

    .vmb-how-final-actions {
        flex-direction: column;
    }

    .vmb-how-primary-btn,
    .vmb-how-secondary-btn {
        width: 100%;
    }

    .vmb-how-footer-note {
        flex-direction: column;
    }

}


/***new prize css**/

/* =========================================================
   PRIZES PAGE
========================================================= */


/* =========================================================
   PRIZE HERO
========================================================= */

.vmb-prize-hero {
    padding: 42px 0 52px;
    background: linear-gradient(to bottom,
            rgba(255, 251, 235, 0.55),
            rgba(253, 242, 248, 0.35),
            rgba(248, 250, 252, 0.7));
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.vmb-prize-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.vmb-prize-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--vmb-pink-200);
    color: var(--vmb-pink-600);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.vmb-prize-badge svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-prize-hero h1 {
    margin: 14px 0 10px;
    color: var(--vmb-slate-950);
    font-family: var(--vmb-font);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-prize-hero-content>p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--vmb-slate-600);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   PRIZE CARDS
========================================================= */

.vmb-prizes-section {
    padding: 64px 0;
    background: #ffffff;
}

.vmb-prize-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.vmb-prize-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
    transition:
        transform var(--vmb-transition),
        box-shadow var(--vmb-transition),
        border-color var(--vmb-transition);
}

.vmb-prize-card:hover {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
}

.vmb-prize-first:hover {
    border-color: var(--vmb-pink-200);
}

.vmb-prize-second:hover {
    border-color: var(--vmb-blue-200);
}

.vmb-prize-third:hover {
    border-color: var(--vmb-amber-200);
}

.vmb-prize-image-wrap {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--vmb-slate-50);
    overflow: hidden;
}

.vmb-prize-first .vmb-prize-image-wrap {
    background: linear-gradient(135deg,
            var(--vmb-pink-50),
            #ffffff);
}

.vmb-prize-second .vmb-prize-image-wrap {
    background: linear-gradient(135deg,
            var(--vmb-blue-50),
            #ffffff);
}

.vmb-prize-third .vmb-prize-image-wrap {
    background: linear-gradient(135deg,
            var(--vmb-amber-50),
            #ffffff);
}

.vmb-prize-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vmb-prize-card:hover .vmb-prize-image-wrap img {
    transform: scale(1.04);
}

.vmb-prize-place {
    position: absolute;
    top: 13px;
    left: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--vmb-slate-200);
    color: var(--vmb-slate-800);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.06);
}

.vmb-prize-place svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: var(--vmb-amber-600);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-prize-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 21px;
}

.vmb-prize-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 11px;
}

.vmb-prize-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--vmb-slate-50);
    color: var(--vmb-slate-500);
    font-size: 8px;
    line-height: 1.2;
    font-weight: 900;
}

.vmb-prize-meta span:first-child {
    background: var(--vmb-amber-50);
    color: var(--vmb-amber-700);
}

.vmb-prize-card h3 {
    margin: 0 0 9px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 900;
}

.vmb-prize-card-body>p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 11px;
    line-height: 1.65;
}

.vmb-product-highlights {
    margin-top: 18px;
}

.vmb-product-highlights strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vmb-slate-800);
    font-family: var(--vmb-font);
    font-size: 11px;
    font-weight: 900;
}
.vmb-prize-card  .vmb-shipping-note span {
    color: #000 !important;
}
.vmb-product-highlights ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vmb-product-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--vmb-slate-600);
    font-size: 10px;
    line-height: 1.5;
}

.vmb-product-highlights li svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    margin-top: 1px;
    fill: none;
    stroke: var(--vmb-emerald-600);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-shipping-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 11px 12px;
    margin-top: 20px;
    border-radius: 11px;
    background: var(--vmb-emerald-50);
    border: 1px solid var(--vmb-emerald-200);
    color: var(--vmb-emerald-800);
    font-size: 9px;
    line-height: 1.4;
}

.vmb-shipping-note svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: var(--vmb-emerald-600);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-shipping-note strong {
    font-weight: 900;
}


/* =========================================================
   CERTIFICATE
========================================================= */

.vmb-certificate-section {
    padding: 0 0 64px;
}

.vmb-certificate-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 40px;
    padding: 42px;
    border-radius: 24px;
    background: linear-gradient(135deg,
            var(--vmb-pink-50),
            #ffffff 55%,
            var(--vmb-amber-50));
    border: 1px solid var(--vmb-pink-200);
}

.vmb-certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--vmb-pink-200);
    color: var(--vmb-pink-600);
    font-size: 10px;
    font-weight: 900;
}

.vmb-certificate-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-certificate-layout .vmb-certificate-content {
    display: block;
}

.vmb-certificate-content h2 {
    margin: 13px 0 10px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 900;
}

.vmb-certificate-content h2 span {
    color: var(--vmb-pink-600);
}

.vmb-certificate-content>p {
    max-width: 620px;
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 13px;
    line-height: 1.7;
}

.vmb-certificate-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.vmb-certificate-features>div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--vmb-slate-700);
    font-size: 11px;
    line-height: 1.5;
}

.vmb-certificate-features svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-top: 1px;
    fill: none;
    stroke: var(--vmb-pink-600);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-certificate-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 23px;
    padding: 11px 16px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--vmb-pink-600);
    text-decoration: none;
    font-family: var(--vmb-font);
    font-size: 11px;
    font-weight: 900;
    transition: var(--vmb-transition);
}

.vmb-certificate-btn:hover {
    background: var(--vmb-pink-700);
}

.vmb-certificate-btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-certificate-btn .vmb-arrow {
    transition: transform var(--vmb-transition);
}

.vmb-certificate-btn:hover .vmb-arrow {
    transform: translateX(3px);
}


/* =========================================================
   CERTIFICATE MOCKUP
========================================================= */

.vmb-certificate-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vmb-certificate-paper {
    position: relative;
    width: min(100%, 340px);
    min-height: 360px;
    padding: 38px 25px 30px;
    text-align: center;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 251, 235, 0.95));
    border: 6px double var(--vmb-amber-400);
    border-radius: 8px;
    box-shadow:
        0 18px 35px rgba(15, 23, 42, 0.12),
        inset 0 0 0 1px var(--vmb-amber-200);
}

.vmb-certificate-small {
    display: block;
    color: var(--vmb-slate-500);
    font-family: var(--vmb-font);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vmb-certificate-star {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 18px auto 12px;
    border-radius: 50%;
    background: var(--vmb-amber-50);
    border: 1px solid var(--vmb-amber-300);
}

.vmb-certificate-star svg {
    width: 27px;
    height: 27px;
    fill: var(--vmb-amber-500);
    stroke: var(--vmb-amber-700);
    stroke-width: 1.2;
    stroke-linejoin: round;
}

.vmb-certificate-paper h3 {
    margin: 0;
    color: var(--vmb-slate-900);
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 700;
}

.vmb-certificate-paper p {
    margin: 13px 0 6px;
    color: var(--vmb-slate-500);
    font-size: 10px;
}

.vmb-certificate-paper strong {
    display: block;
    color: var(--vmb-slate-900);
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
}

.vmb-certificate-paper strong+p {
    max-width: 220px;
    margin: 10px auto 0;
    line-height: 1.5;
}

.vmb-certificate-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 23px auto 0;
    border-radius: 50%;
    border: 2px solid var(--vmb-amber-500);
    color: var(--vmb-amber-700);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.06em;
}


/* =========================================================
   LOGISTICS
========================================================= */

.vmb-logistics-section {
    padding: 0 0 64px;
}

.vmb-logistics-section .vmb-section-heading {
    max-width: 760px;
}

.vmb-logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.vmb-logistics-card {
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 18px;
    transition:
        transform var(--vmb-transition),
        box-shadow var(--vmb-transition);
}

.vmb-logistics-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.vmb-logistics-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 12px;
}

.vmb-logistics-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-logistics-pink {
    background: var(--vmb-pink-50);
    color: var(--vmb-pink-600);
}

.vmb-logistics-blue {
    background: var(--vmb-blue-50);
    color: var(--vmb-blue-500);
}

.vmb-logistics-amber {
    background: var(--vmb-amber-50);
    color: var(--vmb-amber-600);
}

.vmb-logistics-card h3 {
    margin: 0 0 7px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 15px;
    font-weight: 900;
}

.vmb-logistics-card p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   FINAL PRIZE CTA
========================================================= */

.vmb-prize-final-cta {
    padding: 0 0 70px;
}

.vmb-prize-final-inner {
    position: relative;
    padding: 46px 42px;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(110deg,
            var(--vmb-pink-600),
            var(--vmb-rose-600),
            var(--vmb-amber-600));
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.13);
}

.vmb-prize-final-inner::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.vmb-prize-final-inner::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -100px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.vmb-prize-final-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.vmb-prize-final-content h2 {
    margin: 13px 0 9px;
    color: #ffffff;
    font-family: var(--vmb-font);
    font-size: clamp(25px, 4vw, 38px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-prize-final-content p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .vmb-prize-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmb-prize-grid .vmb-prize-third {
        grid-column: 1 / -1;
        max-width: calc(50% - 9px);
        width: 100%;
        justify-self: center;
    }

    .vmb-certificate-layout {
        grid-template-columns: 1fr;
    }

    .vmb-certificate-content {
        text-align: center;
    }

    .vmb-certificate-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .vmb-certificate-features {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .vmb-logistics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 768px) {

    .vmb-prize-hero {
        padding: 32px 0 42px;
    }

    .vmb-prizes-section {
        padding: 48px 0;
    }

    .vmb-prize-grid {
        grid-template-columns: 1fr;
    }

    .vmb-prize-grid .vmb-prize-third {
        grid-column: auto;
        max-width: none;
    }

    .vmb-prize-image-wrap {
        height: 225px;
    }

    .vmb-certificate-layout {
        padding: 28px 20px;
        gap: 30px;
    }

    .vmb-logistics-grid {
        grid-template-columns: 1fr;
    }

    .vmb-prize-final-inner {
        padding: 34px 20px;
    }

}


@media (max-width: 560px) {

    .vmb-prize-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .vmb-prize-card-body {
        padding: 18px;
    }

    .vmb-prize-image-wrap {
        height: 210px;
    }

    .vmb-certificate-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

}

/* =========================================================
   VMB POLICY PAGES
   Shared by:
   Privacy Policy
   Terms of Service
   Cookie Policy
   Child Safety
   Disclaimer
========================================================= */


/* =========================================================
   PAGE WRAPPER
========================================================= */

.vmb-policy-page {
    padding: 48px 0 70px;
    background:
        linear-gradient(to bottom,
            rgba(255, 251, 235, 0.45),
            rgba(253, 242, 248, 0.25),
            #ffffff 45%);
}


/* =========================================================
   POLICY HEADER
========================================================= */

.vmb-policy-header {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.vmb-policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border: 1px solid var(--vmb-pink-200);
    border-radius: 999px;
    background: #ffffff;
    color: var(--vmb-pink-600);
    font-family: var(--vmb-font);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vmb-policy-badge svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-policy-header h1 {
    margin: 14px 0 10px;
    color: var(--vmb-slate-950);
    font-family: var(--vmb-font);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-policy-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--vmb-slate-600);
    font-size: 13px;
    line-height: 1.7;
}

.vmb-policy-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    color: var(--vmb-slate-500);
    font-size: 10px;
}

.vmb-policy-meta strong {
    color: var(--vmb-slate-700);
    font-weight: 800;
}


/* =========================================================
   CONTENT LAYOUT
========================================================= */

.vmb-policy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
    gap: 24px;
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   POLICY CONTENT
========================================================= */

.vmb-policy-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vmb-policy-block {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.035);
    transition:
        transform var(--vmb-transition),
        box-shadow var(--vmb-transition),
        border-color var(--vmb-transition);
}

.vmb-policy-block:hover {
    transform: translateY(-1px);
    border-color: var(--vmb-pink-200);
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.06);
}

.vmb-policy-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--vmb-pink-50);
    border: 1px solid var(--vmb-pink-100);
    color: var(--vmb-pink-600);
    font-family: var(--vmb-font);
    font-size: 10px;
    font-weight: 900;
}

.vmb-policy-block h2 {
    margin: 1px 0 8px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.vmb-policy-block p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 11px;
    line-height: 1.75;
}

.vmb-policy-block strong {
    color: var(--vmb-slate-800);
    font-weight: 800;
}


/* =========================================================
   SIDEBAR
========================================================= */

.vmb-policy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 20px;
}

.vmb-policy-side-card {
    padding: 21px;
    background: #ffffff;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 17px;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
}

.vmb-policy-side-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 13px;
    border-radius: 12px;
    background: var(--vmb-pink-50);
    color: var(--vmb-pink-600);
}

.vmb-policy-side-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-policy-side-card h3 {
    margin: 0 0 7px;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 14px;
    font-weight: 900;
}

.vmb-policy-side-card p {
    margin: 0;
    color: var(--vmb-slate-600);
    font-size: 10px;
    line-height: 1.65;
}

.vmb-policy-side-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    color: var(--vmb-pink-600);
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
}

.vmb-policy-side-card a:hover {
    color: var(--vmb-pink-700);
}

.vmb-policy-side-card a svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--vmb-transition);
}

.vmb-policy-side-card a:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   SIDEBAR HIGHLIGHT
========================================================= */

.vmb-policy-side-highlight {
    background: linear-gradient(135deg,
            var(--vmb-pink-50),
            #ffffff 75%);
    border-color: var(--vmb-pink-200);
}

.vmb-policy-side-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--vmb-pink-600);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
}


/* =========================================================
   BOTTOM NOTICE
========================================================= */

.vmb-policy-notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    max-width: 1050px;
    margin: 20px auto 0;
    padding: 17px 19px;
    border: 1px solid var(--vmb-amber-200);
    border-radius: 14px;
    background: var(--vmb-amber-50);
}

.vmb-policy-notice>svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 1px;
    fill: none;
    stroke: var(--vmb-amber-600);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-policy-notice strong {
    display: block;
    margin-bottom: 3px;
    color: var(--vmb-amber-900);
    font-family: var(--vmb-font);
    font-size: 11px;
    font-weight: 900;
}

.vmb-policy-notice p {
    margin: 0;
    color: var(--vmb-amber-800);
    font-size: 10px;
    line-height: 1.5;
}

.vmb-policy-notice a {
    color: var(--vmb-amber-900);
    font-weight: 800;
    text-decoration: none;
}

.vmb-policy-notice a:hover {
    text-decoration: underline;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .vmb-policy-layout {
        grid-template-columns: 1fr;
    }

    .vmb-policy-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 640px) {

    .vmb-policy-page {
        padding: 35px 0 50px;
    }

    .vmb-policy-header {
        margin-bottom: 28px;
    }

    .vmb-policy-header h1 {
        font-size: 28px;
    }

    .vmb-policy-intro {
        font-size: 12px;
    }

    .vmb-policy-layout {
        gap: 14px;
    }

    .vmb-policy-block {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 11px;
        padding: 17px;
    }

    .vmb-policy-number {
        width: 30px;
        height: 30px;
        font-size: 9px;
    }

    .vmb-policy-block h2 {
        font-size: 14px;
    }

    .vmb-policy-block p {
        font-size: 10px;
    }

    .vmb-policy-sidebar {
        grid-template-columns: 1fr;
    }

    .vmb-policy-meta {
        flex-direction: column;
        gap: 3px;
    }

    .vmb-policy-meta>span:nth-child(2) {
        display: none;
    }

    .vmb-policy-notice {
        padding: 15px;
    }

}


/* ========================================
   VMB FAQ PAGE
======================================== */

.vmb-faq-page {
    padding: 32px 0 80px;
}

.vmb-faq-hero {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vmb-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--vmb-pink-100);
    color: var(--vmb-pink-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.vmb-faq-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-faq-hero h1 {
    margin: 10px 0 0;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 48px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.vmb-faq-hero p {
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--vmb-slate-600);
    font-size: 16px;
    line-height: 1.625;
}


/* SEARCH */

.vmb-faq-search {
    position: relative;
    max-width: 640px;
    margin: 32px auto 0;
}

.vmb-faq-search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 17px;
    height: 17px;
    transform: translateY(-50%);
    fill: none;
    stroke: var(--vmb-slate-400);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.vmb-faq-search input {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 16px;
    background: var(--vmb-white);
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 14px;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: var(--vmb-transition);
    box-sizing: border-box;
}

.vmb-faq-search input::placeholder {
    color: var(--vmb-slate-400);
}

.vmb-faq-search input:focus {
    border-color: var(--vmb-pink-500);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.12);
}


/* FILTERS */

.vmb-faq-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.vmb-faq-filter {
    padding: 6px 14px;
    border: 0;
    border-radius: 12px;
    background: var(--vmb-slate-100);
    color: var(--vmb-slate-600);
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--vmb-transition);
}

.vmb-faq-filter:hover {
    background: var(--vmb-slate-200);
}

.vmb-faq-filter.active {
    background: var(--vmb-blue-500);
    color: var(--vmb-white);
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.2);
}


/* FAQ LIST */

.vmb-faq-list {
    max-width: 900px;
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vmb-faq-item {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    background: var(--vmb-white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: var(--vmb-transition);
}

.vmb-faq-item:hover {
    border-color: var(--vmb-pink-200);
}

.vmb-faq-question {
    width: 100%;
    min-height: 64px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--vmb-slate-900);
    text-align: left;
    font-family: var(--vmb-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--vmb-transition);
}

.vmb-faq-question:hover {
    background: rgba(248, 250, 252, 0.6);
    color: var(--vmb-pink-600);
}

.vmb-faq-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--vmb-slate-100);
    color: var(--vmb-slate-600);
    transition: transform var(--vmb-transition), background var(--vmb-transition), color var(--vmb-transition);
}

.vmb-faq-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-faq-item.active .vmb-faq-icon {
    background: var(--vmb-pink-100);
    color: var(--vmb-pink-600);
    transform: rotate(180deg);
}

.vmb-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.vmb-faq-answer p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--vmb-slate-600);
    font-size: 14px;
    line-height: 1.625;
    border-top: 1px solid transparent;
    transition: padding 0.25s ease, border-color 0.25s ease;
}

.vmb-faq-item.active .vmb-faq-answer {
    grid-template-rows: 1fr;
}

.vmb-faq-item.active .vmb-faq-answer p {
    padding: 14px 20px 20px;
    border-top-color: var(--vmb-slate-100);
}


/* SUPPORT */

.vmb-faq-support {
    max-width: 900px;
    margin: 32px auto 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--vmb-blue-200);
    border-radius: 24px;
    background: var(--vmb-blue-50);
    text-align: center;
    box-sizing: border-box;
}

.vmb-faq-support-icon {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--vmb-blue-500);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-faq-support-content h2 {
    margin: 0;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.vmb-faq-support-content p {
    max-width: 560px;
    margin: 6px auto 0;
    color: var(--vmb-slate-600);
    font-size: 14px;
    line-height: 1.625;
}

.vmb-faq-support-content strong {
    color: #065f46;
    font-weight: 700;
}

.vmb-faq-support-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
}

.vmb-faq-whatsapp,
.vmb-faq-contact {
    min-height: 44px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    text-decoration: none;
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
    transition: var(--vmb-transition);
    box-sizing: border-box;
}

.vmb-faq-whatsapp {
    background: var(--vmb-emerald-600);
    color: var(--vmb-white);
    box-shadow: 0 3px 6px rgba(5, 150, 105, 0.18);
}

.vmb-faq-whatsapp:hover {
    background: var(--vmb-emerald-500);
}

.vmb-faq-contact {
    border: 1px solid var(--vmb-slate-300);
    background: var(--vmb-white);
    color: var(--vmb-slate-700);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vmb-faq-contact:hover {
    background: var(--vmb-slate-100);
}

.vmb-faq-whatsapp svg,
.vmb-faq-contact svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* SEARCH / FILTER HIDDEN STATE */

.vmb-faq-item.vmb-faq-hidden {
    display: none;
}


/* RESPONSIVE */

@media (max-width: 767px) {

    .vmb-faq-page {
        padding: 24px 0 60px;
    }

    .vmb-faq-hero h1 {
        font-size: 34px;
    }

    .vmb-faq-hero p {
        font-size: 14px;
    }

    .vmb-faq-search {
        margin-top: 24px;
    }

    .vmb-faq-filter {
        font-size: 11px;
    }

    .vmb-faq-question {
        padding: 14px 16px;
        font-size: 13px;
    }

    .vmb-faq-answer p {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 13px;
    }

    .vmb-faq-item.active .vmb-faq-answer p {
        padding: 13px 16px 17px;
    }

    .vmb-faq-support {
        padding: 24px 18px;
    }

    .vmb-faq-support-buttons {
        width: 100%;
        flex-direction: column;
    }

    .vmb-faq-whatsapp,
    .vmb-faq-contact {
        width: 100%;
    }

}

@media (max-width: 480px) {

    .vmb-faq-hero h1 {
        font-size: 30px;
    }

    .vmb-faq-badge {
        font-size: 10px;
    }

    .vmb-faq-filters {
        gap: 6px;
    }

    .vmb-faq-filter {
        padding: 6px 10px;
    }

}


/* ========================================
   VMB CONTACT PAGE
   Shared .vmb-container is used
======================================== */

.vmb-contact-page {
    padding: 32px 0 80px;
}


/* ========================================
   HERO
======================================== */

.vmb-contact-hero {
    max-width: 680px;
    margin: 0 auto 32px;
    text-align: center;
}

.vmb-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--vmb-blue-50);
    border: 1px solid var(--vmb-blue-200);
    color: var(--vmb-blue-500);
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.vmb-contact-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-contact-hero h1 {
    margin: 10px 0 0;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 48px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.025em;
}

.vmb-contact-hero p {
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--vmb-slate-600);
    font-family: var(--vmb-font);
    font-size: 16px;
    line-height: 1.625;
}


/* ========================================
   MAIN GRID
======================================== */

.vmb-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 32px;
    align-items: start;
}


/* ========================================
   FORM CARD
======================================== */

.vmb-contact-form-card {
    padding: 32px;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 24px;
    background: var(--vmb-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.vmb-contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vmb-form-group {
    display: flex;
    flex-direction: column;
}

.vmb-form-group label {
    margin-bottom: 5px;
    color: var(--vmb-slate-700);
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
}

.vmb-form-group input,
.vmb-form-group select,
.vmb-form-group textarea {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 12px;
    outline: none;
    background: rgba(248, 250, 252, .5);
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 14px;
    box-sizing: border-box;
    transition: var(--vmb-transition);
}

.vmb-form-group input,
.vmb-form-group select {
    min-height: 44px;
}

.vmb-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.vmb-form-group input::placeholder,
.vmb-form-group textarea::placeholder {
    color: var(--vmb-slate-400);
}

.vmb-form-group input:focus,
.vmb-form-group select:focus,
.vmb-form-group textarea:focus {
    border-color: var(--vmb-pink-500);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, .12);
    background: var(--vmb-white);
}


/* ========================================
   SUBMIT BUTTON
======================================== */

.vmb-contact-submit {
    width: 100%;
    min-height: 48px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 16px;
    background: var(--vmb-blue-500);
    color: var(--vmb-white);
    font-family: var(--vmb-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(59, 130, 246, .18);
    transition: var(--vmb-transition);
}

.vmb-contact-submit:hover {
    background: #2563eb;
}

.vmb-contact-submit svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ========================================
   SIDEBAR
======================================== */

.vmb-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* ========================================
   INFORMATION CARDS
======================================== */

.vmb-contact-info-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--vmb-slate-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.vmb-contact-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vmb-contact-card-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.vmb-contact-card-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-contact-card-head h3 {
    margin: 0;
    color: var(--vmb-slate-900);
    font-family: var(--vmb-font);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.vmb-contact-card-head strong,
.vmb-contact-card-head span {
    display: block;
    margin-top: 2px;
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
}

.vmb-contact-info-card>p {
    margin: 12px 0 0;
    color: var(--vmb-slate-600);
    font-family: var(--vmb-font);
    font-size: 12px;
    line-height: 1.625;
}


/* ========================================
   WHATSAPP
======================================== */

.vmb-contact-whatsapp {
    background: rgba(236, 253, 245, .9);
    border-color: rgba(167, 243, 208, .9);
}

.vmb-contact-whatsapp .vmb-contact-card-icon {
    background: var(--vmb-emerald-600);
    color: var(--vmb-white);
}

.vmb-contact-whatsapp .vmb-contact-card-icon svg {
    fill: currentColor;
    stroke: none;
}

.vmb-contact-whatsapp .vmb-contact-card-head strong {
    color: #065f46;
    font-family: var(--vmb-font);
}

.vmb-whatsapp-button {
    width: 100%;
    min-height: 42px;
    margin-top: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 12px;
    background: var(--vmb-emerald-600);
    color: var(--vmb-white);
    text-decoration: none;
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
    transition: var(--vmb-transition);
}

.vmb-whatsapp-button:hover {
    background: #047857;
}


/* ========================================
   EMAIL
======================================== */

.vmb-contact-email {
    background: rgba(239, 246, 255, .8);
    border-color: rgba(191, 219, 254, .8);
}

.vmb-contact-email .vmb-contact-card-icon {
    background: var(--vmb-blue-500);
    color: var(--vmb-white);
}

.vmb-contact-email .vmb-contact-card-head strong {
    color: #1e40af;
    font-family: var(--vmb-font);
}

.vmb-email-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.vmb-email-button {
    flex: 1;
    min-height: 42px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 12px;
    background: var(--vmb-blue-500);
    color: var(--vmb-white);
    text-decoration: none;
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
    transition: var(--vmb-transition);
}

.vmb-email-button:hover {
    background: #2563eb;
}

.vmb-copy-email {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--vmb-slate-200);
    border-radius: 12px;
    background: var(--vmb-white);
    color: var(--vmb-slate-700);
    cursor: pointer;
    transition: var(--vmb-transition);
}

.vmb-copy-email:hover {
    background: var(--vmb-slate-100);
}

.vmb-copy-email svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ========================================
   REPLY TIME
======================================== */

.vmb-contact-reply {
    background: var(--vmb-white);
}

.vmb-contact-reply .vmb-contact-card-icon {
    background: var(--vmb-emerald-50);
    color: var(--vmb-emerald-600);
}

.vmb-contact-reply .vmb-contact-card-head span {
    color: var(--vmb-slate-500);
    font-weight: 500;
}


/* ========================================
   PHOTO REMOVAL
======================================== */

.vmb-contact-removal {
    background: var(--vmb-amber-50);
    border-color: var(--vmb-amber-200);
}

.vmb-contact-removal .vmb-contact-card-icon {
    background: var(--vmb-amber-100);
    color: var(--vmb-amber-700);
}

.vmb-contact-removal .vmb-contact-card-head span {
    color: var(--vmb-amber-700);
}

.vmb-contact-removal>p {
    color: var(--vmb-amber-900);
}

.vmb-removal-button {
    width: 100%;
    min-height: 42px;
    margin-top: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 12px;
    background: var(--vmb-amber-600);
    color: var(--vmb-white);
    text-decoration: none;
    font-family: var(--vmb-font);
    font-size: 12px;
    font-weight: 700;
    transition: var(--vmb-transition);
}

.vmb-removal-button:hover {
    background: var(--vmb-amber-700);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .vmb-contact-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .vmb-contact-page {
        padding: 24px 0 60px;
    }

    .vmb-contact-hero {
        margin-bottom: 24px;
    }

    .vmb-contact-hero h1 {
        font-size: 34px;
    }

    .vmb-contact-hero p {
        font-size: 14px;
    }

    .vmb-contact-form-card {
        padding: 20px;
        border-radius: 20px;
    }

    .vmb-contact-info-card {
        padding: 20px;
        border-radius: 20px;
    }

}

@media (max-width: 480px) {

    .vmb-contact-hero h1 {
        font-size: 30px;
    }

    .vmb-contact-badge {
        font-size: 10px;
    }

    .vmb-email-actions {
        flex-direction: row;
    }

}

/* =========================================
   VMB PARTICIPATE PAGE
   Uses existing shared .vmb-container
========================================= */

.vmb-participate-page {
    padding: 32px 0 80px;
}


/* =========================================
   HERO
========================================= */

.vmb-participate-hero {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.vmb-participate-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    background: #fce7f3;
    border: 1px solid #fbcfe8;
    color: #db2777;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-participate-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-participate-hero h1 {
    margin: 12px 0 0;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 48px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.03em;
}

.vmb-participate-hero h1 span {
    color: #db2777;
}

.vmb-participate-hero p {
    max-width: 680px;
    margin: 14px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================
   ENTRY GRID
========================================= */

.vmb-participate-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 32px;
    align-items: start;
}


/* =========================================
   FORM CARD
========================================= */

.vmb-entry-form-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.vmb-entry-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vmb-form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vmb-field {
    display: flex;
    flex-direction: column;
}

.vmb-field label,
.vmb-photo-label {
    margin-bottom: 6px;
    color: #1e293b;
    font-size: 12px;
    font-weight: 700;
}

.vmb-field input,
.vmb-field textarea,
.vmb-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    background: rgba(248, 250, 252, .6);
    color: #0f172a;
    font-family: inherit;
    font-size: 14px;
    transition: .2s ease;
}

.vmb-field input {
    min-height: 44px;
}

.vmb-field textarea {
    resize: vertical;
    min-height: 100px;
}

.vmb-field input:focus,
.vmb-field textarea:focus {
    border-color: #f472b6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(244, 114, 182, .12);
}

.vmb-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.vmb-label-row span {
    color: #94a3b8;
    font-size: 11px;
}

.vmb-age-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmb-age-input input {
    flex: 1;
}

.vmb-age-input>span {
    padding: 8px 12px;
    white-space: nowrap;
    border: 1px solid #fbcfe8;
    border-radius: 9px;
    background: #fdf2f8;
    color: #db2777;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   PHOTO UPLOAD
========================================= */

.vmb-photo-section {
    display: flex;
    flex-direction: column;
}

.vmb-photo-upload {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
}

.vmb-photo-upload input {
    display: none;
}

.vmb-upload-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fce7f3;
    color: #db2777;
}

.vmb-upload-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vmb-select-photo {
    padding: 9px 16px;
    border: 0;
    border-radius: 11px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.vmb-photo-upload>p {
    margin: 0;
    color: #94a3b8;
    font-size: 11px;
}

.vmb-photo-tip {
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 11px;
    text-align: left;
}

.vmb-photo-tip span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vmb-photo-tip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: none;
    stroke: #f59e0b;
    stroke-width: 2;
}

.vmb-photo-tip a {
    color: #db2777;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}


/* =========================================
   DEMO PHOTOS
========================================= */

.vmb-demo-photos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vmb-demo-photos>span {
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
}

.vmb-demo-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vmb-demo-buttons button {
    padding: 7px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #475569;
    font-size: 12px;
    cursor: pointer;
    transition: .2s ease;
}

.vmb-demo-buttons button:hover,
.vmb-demo-buttons button.active {
    border-color: #f472b6;
    background: #fdf2f8;
    color: #be185d;
    font-weight: 700;
}


/* =========================================
   AGREEMENTS
========================================= */

.vmb-agreements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.vmb-agreements label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
}

.vmb-agreements input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex: 0 0 16px;
    accent-color: #ec4899;
}

.vmb-agreements strong {
    color: #334155;
}


/* =========================================
   SUBMIT
========================================= */

.vmb-entry-submit {
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 16px;
    background: #db2777;
    color: #fff;
    font-family: var(--vmb-font);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(236, 72, 153, .2);
    transition: .2s ease;
}

.vmb-entry-submit:hover {
    background: linear-gradient(90deg, #db2777, #e11d48);
    transform: translateY(-1px);
}

.vmb-entry-submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   PREVIEW
========================================= */

.vmb-entry-preview-column {
    position: sticky;
    top: 20px;
}

.vmb-preview-heading {
    margin-bottom: 10px;
}

.vmb-preview-heading>span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-preview-heading svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #ec4899;
    stroke-width: 2;
}

.vmb-preview-heading p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 12px;
}

.vmb-preview-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
}

.vmb-preview-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0f172a;
}

.vmb-preview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vmb-preview-age {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
}

.vmb-preview-name {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    color: #fff;
}

.vmb-preview-name h3 {
    margin: 0;
    color: #fff;
    font-family: var(--vmb-font);
    font-size: 22px;
    font-weight: 900;
}

.vmb-preview-content {
    padding: 20px;
}

.vmb-preview-content>p {
    margin: 0 0 14px;
    color: #475569;
    font-size: 12px;
    font-style: italic;
    line-height: 1.6;
}

.vmb-preview-target {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid #fde68a;
    border-radius: 12px;
    background: #fffbeb;
    color: #78350f;
    font-size: 11px;
    line-height: 1.5;
}

.vmb-preview-target svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    fill: none;
    stroke: #d97706;
    stroke-width: 2;
}


/* =========================================
   PARTICIPATION GUIDE
========================================= */

.vmb-participation-guide {
    margin-top: 32px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
}

.vmb-guide-heading>span {
    color: #db2777;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-guide-heading h2 {
    margin: 8px 0;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
}

.vmb-guide-heading p {
    max-width: 850px;
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.vmb-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.vmb-guide-card {
    padding: 20px;
    border-radius: 18px;
}

.vmb-guide-card.pink {
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
}

.vmb-guide-card.amber {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.vmb-guide-card.blue {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.vmb-guide-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vmb-guide-card-title span {
    font-size: 16px;
}

.vmb-guide-card-title h3 {
    margin: 0;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 14px;
    font-weight: 800;
}

.vmb-guide-card p {
    margin: 10px 0 0;
    color: #475569;
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================
   QUICK LINKS
========================================= */

.vmb-quick-links {
    margin-top: 32px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
}

.vmb-quick-links-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.vmb-quick-links-heading>div>span {
    color: #db2777;
    font-size: 12px;
    font-weight: 800;
}

.vmb-quick-links-heading h2 {
    margin: 7px 0 4px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 24px;
    font-weight: 900;
}

.vmb-quick-links-heading p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.vmb-quick-label {
    padding: 6px 12px;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
}

.vmb-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.vmb-quick-card {
    min-height: 205px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 18px;
    text-decoration: none;
    transition: .2s ease;
}

.vmb-quick-card:hover {
    transform: translateY(-3px);
}

.vmb-quick-card.blue {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border: 1px solid #bfdbfe;
}

.vmb-quick-card.purple {
    background: linear-gradient(135deg, #faf5ff, #eef2ff);
    border: 1px solid #ddd6fe;
}

.vmb-quick-card.amber {
    background: linear-gradient(135deg, #fffbeb, #fefce8);
    border: 1px solid #fde68a;
}

.vmb-quick-card.emerald {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
    border: 1px solid #a7f3d0;
}

.vmb-quick-card.rose {
    background: linear-gradient(135deg, #fff1f2, #fff7ed);
    border: 1px solid #fecdd3;
}

.vmb-quick-card.cyan {
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
    border: 1px solid #a5f3fc;
}

.vmb-quick-card.indigo {
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border: 1px solid #c7d2fe;
}

.vmb-quick-icon {
    font-size: 20px;
}

.vmb-quick-card small {
    width: fit-content;
    margin-top: 10px;
    padding: 3px 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .8);
    color: #475569;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-quick-card h3 {
    margin: 10px 0 5px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 14px;
    font-weight: 900;
}

.vmb-quick-card p {
    margin: 0;
    color: #64748b;
    font-size: 11px;
    line-height: 1.55;
}

.vmb-quick-card strong {
    margin-top: auto;
    padding-top: 12px;
    color: #334155;
    font-size: 11px;
    border-top: 1px solid rgba(148, 163, 184, .2);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .vmb-participate-grid {
        grid-template-columns: 1fr;
    }

    .vmb-entry-preview-column {
        position: static;
    }

    .vmb-preview-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .vmb-quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 767px) {

    .vmb-participate-page {
        padding: 24px 0 60px;
    }

    .vmb-participate-hero h1 {
        font-size: 34px;
    }

    .vmb-participate-hero p {
        font-size: 14px;
    }

    .vmb-entry-form-card,
    .vmb-participation-guide,
    .vmb-quick-links {
        padding: 20px;
        border-radius: 20px;
    }

    .vmb-form-two-col {
        grid-template-columns: 1fr;
    }

    .vmb-guide-grid {
        grid-template-columns: 1fr;
    }

    .vmb-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmb-quick-links-heading {
        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .vmb-participate-hero h1 {
        font-size: 29px;
    }

    .vmb-participate-badge {
        font-size: 10px;
    }

    .vmb-age-input {
        align-items: stretch;
        flex-direction: column;
    }

    .vmb-age-input>span {
        text-align: center;
    }

    .vmb-photo-tip {
        flex-direction: column;
        align-items: flex-start;
    }

    .vmb-quick-grid {
        grid-template-columns: 1fr;
    }

    .vmb-quick-links-heading h2 {
        font-size: 21px;
    }

}



/* =========================================
   LEADERBOARD PAGE
========================================= */

.vmb-leaderboard-page {
    padding: 32px 0 80px;
}


/* =========================================
   HERO
========================================= */

.vmb-leaderboard-hero {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.vmb-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #fde68a;
    border-radius: 999px;
    background: #fef3c7;
    color: #d97706;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-leaderboard-hero h1 {
    margin: 12px 0 8px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.vmb-leaderboard-hero p {
    margin: 0 auto;
    max-width: 700px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   TOP THREE
========================================= */

.vmb-top-leaders {
    position: relative;
    overflow: hidden;
    padding: 42px 30px 48px;
    border: 1px solid rgba(99, 102, 241, .25);
    border-radius: 28px;
    background:
        linear-gradient(180deg,
            #172554 0%,
            #0f172a 55%,
            #020617 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
}

.vmb-top-leaders-bg {
    position: absolute;
    top: -120px;
    left: 50%;
    width: 420px;
    height: 420px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(245, 158, 11, .08);
    filter: blur(60px);
    pointer-events: none;
}

.vmb-top-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    text-align: center;
}

.vmb-top-heading span {
    color: #fbbf24;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-top-heading h2 {
    margin: 6px 0 0;
    color: #fff;
    font-family: var(--vmb-font);
    font-size: 28px;
    font-weight: 900;
}

.vmb-top-three {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: end;
    margin-top: 50px !important;
}

.vmb-leader-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    transition: .2s ease;
}

.vmb-leader-card:hover {
    background: rgba(255, 255, 255, .13);
    transform: translateY(-3px);
}

.vmb-first-place {
    padding: 25px;
    border: 2px solid rgba(251, 191, 36, .55);
    background:
        linear-gradient(180deg,
            rgba(245, 158, 11, .2),
            rgba(120, 53, 15, .35));
    transform: translateY(-16px);
}

.vmb-first-place:hover {
    transform: translateY(-19px);
}

.vmb-leader-image-wrap {
    position: relative;
}

.vmb-leader-image-wrap img {
    width: 96px;
    height: 96px;
    display: block;
    object-fit: cover;
    border: 4px solid #cbd5e1;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    object-position: top;
}

.vmb-first-place .vmb-leader-image-wrap img {
    width: 128px;
    height: 128px;
    border-color: #fbbf24;
    border-radius: 24px;
}

.vmb-third-place .vmb-leader-image-wrap img {
    border-color: #a16207;
}

.vmb-position {
    position: absolute;
    right: -10px;
    bottom: -9px;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.vmb-position.first {
    background: #fbbf24;
    color: #451a03;
}

.vmb-position.second {
    background: #e2e8f0;
    color: #0f172a;
}

.vmb-position.third {
    background: #a16207;
    color: #fff;
}

.vmb-leader-info h3 {
    margin: 0;
    color: #fff;
    font-family: var(--vmb-font);
    font-size: 16px;
    font-weight: 800;
}

.vmb-first-place .vmb-leader-info h3 {
    font-size: 20px;
}

.vmb-leader-info strong {
    display: block;
    margin-top: 4px;
    color: #f472b6;
    font-family: monospace;
    font-size: 15px;
}

.vmb-first-place .vmb-leader-info strong {
    color: #fcd34d;
    font-size: 18px;
}

.vmb-prize-info {
    width: 100%;
    box-sizing: border-box;
    padding: 9px;
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 11px;
    background: rgba(15, 23, 42, .65);
    color: #cbd5e1;
    font-size: 10px;
    line-height: 1.5;
}

.vmb-first-place .vmb-prize-info {
    border-color: rgba(251, 191, 36, .35);
    background: rgba(245, 158, 11, .15);
    color: #fde68a;
}

.vmb-prize-info b {
    color: #fff;
}

.vmb-vote-button {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 21px;
    background: #db2777;
    color: #ffffff;
    border: 0;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(236, 72, 153, 0.25);
    transition: all 0.25s ease;
}

.vmb-vote-button:hover {
    background: rgba(255, 255, 255, .25);
}

.vmb-vote-button.primary {
    background: #db2777;
    box-shadow: 0 8px 20px rgba(236, 72, 153, .25);
}

.vmb-vote-button.primary:hover {
    background: #e11d48;
}


/* =========================================
   STANDINGS
========================================= */

.vmb-standings-section {
    margin-top: 32px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(15, 23, 42, .04);
}

.vmb-section-header {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0px !important;
}
.vmb-section-header h2 {
    margin: 0;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 22px;
    font-weight: 900;
}

.vmb-section-header p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 11px;
}

.vmb-star-status {
    flex-shrink: 0;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #059669;
    font-size: 10px;
    font-weight: 800;
}

.vmb-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.vmb-leaderboard-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    text-align: left;
    font-size: 12px;
}

.vmb-leaderboard-table thead {
    background: #f8fafc;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: 9px;
}

.vmb-leaderboard-table th,
.vmb-leaderboard-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.vmb-leaderboard-table tbody tr {
    transition: .15s ease;
}

.vmb-leaderboard-table tbody tr:hover {
    background: #f8fafc;
}

.vmb-table-entry {
    display: flex;
    align-items: center;
    gap: 11px;
}

.vmb-table-entry img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 11px;
    border: 1px solid #e2e8f0;
}

.vmb-table-entry strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
}

.vmb-table-entry small {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-family: monospace;
    font-size: 9px;
}

.vmb-vote-count {
    color: #0f172a;
    font-family: monospace;
    font-size: 14px;
}

.vmb-certified {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #059669;
    font-size: 9px;
    font-weight: 800;
}

.vmb-votes-needed {
    color: #64748b;
    font-size: 10px;
}

.vmb-action-column {
    text-align: right;
}

.vmb-table-vote {
    padding: 7px 11px;
    border: 0;
    border-radius: 9px;
    background: #fdf2f8;
    color: #db2777;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.vmb-table-vote:hover {
    background: #fce7f3;
}


/* =========================================
   RULES
========================================= */

.vmb-leaderboard-rules {
    margin-top: 32px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
}

.vmb-rules-heading>span {
    color: #db2777;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-rules-heading h2 {
    max-width: 850px;
    margin: 7px 0;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.vmb-rules-heading p {
    max-width: 900px;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

.vmb-rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.vmb-rule-card {
    padding: 20px;
    border-radius: 18px;
}

.vmb-rule-card.pink {
    border: 1px solid #fbcfe8;
    background: #fdf2f8;
}

.vmb-rule-card.amber {
    border: 1px solid #fde68a;
    background: #fffbeb;
}

.vmb-rule-card.blue {
    border: 1px solid #bfdbfe;
    background: #eff6ff;
}

.vmb-rule-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #db2777;
}

.vmb-rule-card.amber .vmb-rule-title {
    color: #d97706;
}

.vmb-rule-card.blue .vmb-rule-title {
    color: #2563eb;
}

.vmb-rule-title h3 {
    margin: 0;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.vmb-rule-card p {
    margin: 10px 0 0;
    color: #475569;
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================
   QUICK LINKS
========================================= */

.vmb-quick-links {
    margin-top: 32px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
}

.vmb-quick-links-heading {
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.vmb-quick-links-heading>div>span {
    color: #db2777;
    font-size: 10px;
    font-weight: 900;
}

.vmb-quick-links-heading h2 {
    margin: 7px 0 4px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 23px;
    font-weight: 900;
}

.vmb-quick-links-heading p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.vmb-quick-label {
    padding: 6px 12px;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
}

.vmb-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.vmb-quick-card {
    min-height: 195px;
    padding: 17px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 17px;
    text-decoration: none;
    transition: .2s ease;
}

.vmb-quick-card:hover {
    transform: translateY(-3px);
}

.vmb-quick-card.pink {
    border: 1px solid #fbcfe8;
    background: linear-gradient(135deg, #fdf2f8, #fff1f2);
}

.vmb-quick-card.purple {
    border: 1px solid #ddd6fe;
    background: linear-gradient(135deg, #faf5ff, #eef2ff);
}

.vmb-quick-card.amber {
    border: 1px solid #fde68a;
    background: linear-gradient(135deg, #fffbeb, #fefce8);
}

.vmb-quick-card.emerald {
    border: 1px solid #a7f3d0;
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.vmb-quick-card.rose {
    border: 1px solid #fecdd3;
    background: linear-gradient(135deg, #fff1f2, #fff7ed);
}

.vmb-quick-card.cyan {
    border: 1px solid #a5f3fc;
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.vmb-quick-card.indigo {
    border: 1px solid #c7d2fe;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
}

.vmb-quick-icon {
    font-size: 20px;
}

.vmb-quick-card small {
    width: fit-content;
    margin-top: 9px;
    padding: 3px 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .8);
    color: #475569;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vmb-quick-card h3 {
    margin: 9px 0 4px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 13px;
    font-weight: 900;
}

.vmb-quick-card p {
    margin: 0;
    color: #64748b;
    font-size: 10px;
    line-height: 1.55;
}

.vmb-quick-card strong {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(148, 163, 184, .2);
    color: #334155;
    font-size: 10px;
}


/* =========================================
   CTA
========================================= */

.vmb-leaderboard-cta {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    padding: 48px;
    border: 1px solid rgba(99, 102, 241, .3);
    border-radius: 28px;
    background:
        linear-gradient(135deg,
            #0f172a,
            #1e1b4b,
            #0f172a);
    color: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .2);
}

.vmb-cta-content {
    position: relative;
    z-index: 1;
}

.vmb-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vmb-cta-badges span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(236, 72, 153, .14);
    border: 1px solid rgba(244, 114, 182, .25);
    color: #f9a8d4;
    font-size: 9px;
    font-weight: 800;
}

.vmb-cta-badges span:nth-child(2) {
    background: rgba(16, 185, 129, .14);
    border-color: rgba(52, 211, 153, .25);
    color: #6ee7b7;
}

.vmb-cta-badges span:nth-child(3) {
    background: rgba(245, 158, 11, .14);
    border-color: rgba(251, 191, 36, .25);
    color: #fcd34d;
}

.vmb-leaderboard-cta h2 {
    max-width: 800px;
    margin: 18px 0 8px;
    color: #fff;
    font-family: var(--vmb-font);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
}

.vmb-leaderboard-cta>.vmb-cta-content>p {
    max-width: 800px;
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.vmb-cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.vmb-cta-stats div {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
}

.vmb-cta-stats strong {
    display: block;
    color: #f472b6;
    font-size: 18px;
}

.vmb-cta-stats span {
    display: block;
    margin-top: 5px;
    color: #cbd5e1;
    font-size: 10px;
    line-height: 1.4;
}

.vmb-cta-button {
    display: inline-flex;
    margin-top: 25px;
    padding: 13px 20px;
    border-radius: 13px;
    background: #db2777;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(236, 72, 153, .25);
    transition: .2s ease;
}

.vmb-cta-button:hover {
    background: #e11d48;
    transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .vmb-top-three {
        grid-template-columns: repeat(3, 1fr);
    }

    .vmb-quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vmb-cta-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .vmb-leaderboard-page {
        padding: 24px 0 60px;
    }

    .vmb-leaderboard-hero h1 {
        font-size: 34px;
    }

    .vmb-leaderboard-hero p {
        font-size: 13px;
    }

    .vmb-top-leaders {
        padding: 28px 18px;
        border-radius: 22px;
    }

    .vmb-top-three {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .vmb-first-place {
        order: -1;
        transform: none;
    }

    .vmb-first-place:hover {
        transform: translateY(-3px);
    }

    .vmb-leader-card {
        padding: 20px;
    }

    .vmb-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .vmb-leaderboard-rules,
    .vmb-quick-links,
    .vmb-leaderboard-cta {
        padding: 22px;
        border-radius: 20px;
    }

    .vmb-rules-grid {
        grid-template-columns: 1fr;
    }

    .vmb-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmb-quick-links-heading {
        flex-direction: column;
    }

    .vmb-leaderboard-cta h2 {
        font-size: 31px;
    }

}


@media (max-width: 480px) {

    .vmb-quick-grid,
    .vmb-cta-stats {
        grid-template-columns: 1fr;
    }

    .vmb-cta-badges {
        flex-direction: column;
        align-items: flex-start;
    }

}



/* =========================================
   HALL OF FAME PAGE
========================================= */

.vmb-hall-page {
    padding: 32px 0 80px;
}

.vmb-hall-page .vmb-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}


/* =========================================
   HERO
========================================= */

.vmb-hall-hero {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.vmb-hall-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #d1fae5;
    color: #059669;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vmb-hall-hero h1 {
    margin: 13px 0 10px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.vmb-hall-hero p {
    max-width: 780px;
    margin: auto;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   ROUND FILTER
========================================= */

.vmb-round-filter {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.vmb-round-filter>span {
    padding: 0 8px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-round-filter button {
    padding: 9px 14px;
    border: 0;
    border-radius: 11px;
    background: #f1f5f9;
    color: #475569;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.vmb-round-filter button:hover {
    background: #e2e8f0;
}

.vmb-round-filter button.active {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .2);
}


/* =========================================
   WINNER GRID
========================================= */

.vmb-winners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vmb-winner-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .04);
    transition: .25s ease;
}

.vmb-winner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, .12);
}

.vmb-winner-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.vmb-winner-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.vmb-winner-card:hover .vmb-winner-image img {
    transform: scale(1.05);
}

.vmb-place {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.vmb-place.first {
    background: #fbbf24;
    color: #451a03;
    border: 2px solid #fde68a;
}

.vmb-place.second {
    background: #e2e8f0;
    color: #0f172a;
    border: 2px solid #f8fafc;
}

.vmb-place.third {
    background: #a16207;
    color: #fff;
    border: 2px solid #d97706;
}

.vmb-verified-votes {
    position: absolute;
    right: 13px;
    bottom: 13px;
    padding: 7px 11px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .62);
    color: #fff;
    font-family: monospace;
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: blur(5px);
}

.vmb-winner-content {
    padding: 22px;
}

.vmb-winner-content h3 {
    margin: 0 0 15px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 22px;
    font-weight: 900;
}

.vmb-reward {
    padding: 12px;
    border: 1px solid #f1f5f9;
    border-radius: 15px;
    background: #f8fafc;
}

.vmb-reward span {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-reward strong {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    color: #334155;
    font-size: 11px;
    line-height: 1.5;
}

.vmb-winner-footer {
    margin-top: auto;
    padding: 0 22px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.vmb-winner-footer span {
    color: #059669;
    font-size: 10px;
    font-weight: 800;
}

.vmb-winner-footer small {
    color: #94a3b8;
    font-size: 9px;
}


/* =========================================
   VERIFICATION
========================================= */

.vmb-verification-section {
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .03);
}

.vmb-section-heading>span {
    color: #2563eb;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-section-heading h2 {
    max-width: 850px;
    margin: 7px 0;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.vmb-section-heading p {
    max-width: 900px;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

.vmb-verification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.vmb-verification-card {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
}

.vmb-step {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 900;
}

.vmb-verification-card.blue .vmb-step {
    background: #dbeafe;
    color: #2563eb;
}

.vmb-verification-card.purple .vmb-step {
    background: #ede9fe;
    color: #7c3aed;
}

.vmb-verification-card.green .vmb-step {
    background: #d1fae5;
    color: #059669;
}

.vmb-verification-card h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 16px;
    font-weight: 800;
}

.vmb-verification-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================
   QUICK LINKS
========================================= */

.vmb-hall-links {
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
}

.vmb-hall-links-header {
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.vmb-hall-links-header>div>span {
    color: #db2777;
    font-size: 13px;
    font-weight: 900;
}

.vmb-hall-links-header h2 {
    margin: 6px 0 4px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 23px;
    font-weight: 900;
}

.vmb-hall-links-header p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.vmb-cross-link {
    padding: 6px 12px;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 800;
}

.vmb-hall-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.vmb-hall-link {
    min-height: 190px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 17px;
    text-decoration: none;
    transition: .2s ease;
}

.vmb-hall-link:hover {
    transform: translateY(-3px);
}

.vmb-hall-link.pink {
    background: linear-gradient(135deg, #fdf2f8, #fff1f2);
    border: 1px solid #fbcfe8;
}

.vmb-hall-link.blue {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border: 1px solid #bfdbfe;
}

.vmb-hall-link.purple {
    background: linear-gradient(135deg, #faf5ff, #eef2ff);
    border: 1px solid #ddd6fe;
}

.vmb-hall-link.green {
    background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
    border: 1px solid #a7f3d0;
}

.vmb-hall-link.rose {
    background: linear-gradient(135deg, #fff1f2, #fff7ed);
    border: 1px solid #fecdd3;
}

.vmb-hall-link.cyan {
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
    border: 1px solid #a5f3fc;
}

.vmb-hall-link.indigo {
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border: 1px solid #c7d2fe;
}

.vmb-link-icon {
    font-size: 20px;
}

.vmb-hall-link small {
    width: fit-content;
    margin-top: 9px;
    padding: 3px 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .8);
    color: #475569;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vmb-hall-link h3 {
    margin: 9px 0 4px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 13px;
    font-weight: 900;
}

.vmb-hall-link p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.vmb-hall-link strong {
    margin-top: auto;
    padding-top: 10px;
    color: #334155;
    font-size: 10px;
}


/* =========================================
   FINAL CTA
========================================= */

.vmb-hall-cta {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border: 1px solid rgba(99, 102, 241, .3);
    border-radius: 28px;
    background:
        linear-gradient(135deg,
            #0f172a,
            #1e1b4b,
            #0f172a);
    color: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .2);
}

.vmb-cta-inner {
    position: relative;
    z-index: 2;
}

.vmb-cta-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.vmb-cta-glow.top {
    top: -150px;
    right: -80px;
    background: rgba(236, 72, 153, .14);
}

.vmb-cta-glow.bottom {
    bottom: -150px;
    left: -80px;
    background: rgba(59, 130, 246, .14);
}

.vmb-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vmb-cta-badges span {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
}

.vmb-cta-badges span:nth-child(1) {
    background: rgba(236, 72, 153, .14);
    border: 1px solid rgba(244, 114, 182, .25);
    color: #f9a8d4;
}

.vmb-cta-badges span:nth-child(2) {
    background: rgba(16, 185, 129, .14);
    border: 1px solid rgba(52, 211, 153, .25);
    color: #6ee7b7;
}

.vmb-cta-badges span:nth-child(3) {
    background: rgba(245, 158, 11, .14);
    border: 1px solid rgba(251, 191, 36, .25);
    color: #fcd34d;
}

.vmb-cta-copy {
    max-width: 850px;
    margin-top: 22px;
}

.vmb-cta-copy h2 {
    margin: 0 0 9px;
    color: #fff;
    font-family: var(--vmb-font);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
}

.vmb-cta-copy p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.vmb-cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.vmb-cta-features>div {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
}

.vmb-cta-features strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.vmb-cta-features span {
    display: block;
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 800;
}

.vmb-cta-features p {
    margin: 5px 0 0;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
}

.vmb-cta-buttons {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.vmb-cta-primary,
.vmb-cta-secondary,
.vmb-cta-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    box-sizing: border-box;
    border-radius: 13px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    transition: .2s ease;
}

.vmb-cta-primary {
    background: #db2777;
    color: #fff;
    box-shadow: 0 10px 25px rgba(236, 72, 153, .25);
}

.vmb-cta-primary:hover {
    background: #e11d48;
    transform: translateY(-2px);
}

.vmb-cta-secondary {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.vmb-cta-secondary:hover {
    background: rgba(255, 255, 255, .15);
}

.vmb-cta-text {
    color: #cbd5e1;
}

.vmb-cta-text:hover {
    color: #fff;
}

.vmb-cta-bottom {
    margin-top: 22px;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #94a3b8;
    font-size: 12px;
}

.vmb-cta-bottom strong {
    color: #34d399;
    font-family: monospace;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .vmb-winners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmb-hall-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vmb-cta-features {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .vmb-hall-page {
        padding: 24px 0 60px;
    }

    .vmb-hall-hero h1 {
        font-size: 34px;
    }

    .vmb-hall-hero p {
        font-size: 12px;
    }

    .vmb-round-filter {
        width: 100%;
        box-sizing: border-box;
    }

    .vmb-winners-grid {
        grid-template-columns: 1fr;
    }

    .vmb-verification-section,
    .vmb-hall-links,
    .vmb-hall-cta {
        padding: 22px;
        border-radius: 20px;
    }

    .vmb-verification-grid {
        grid-template-columns: 1fr;
    }

    .vmb-hall-links-header {
        flex-direction: column;
    }

    .vmb-hall-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmb-cta-copy h2 {
        font-size: 31px;
    }

}


@media (max-width: 480px) {

    .vmb-hall-links-grid,
    .vmb-cta-features {
        grid-template-columns: 1fr;
    }

    .vmb-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .vmb-cta-primary,
    .vmb-cta-secondary,
    .vmb-cta-text {
        width: 100%;
    }

    .vmb-cta-bottom {
        flex-direction: column;
    }

}



/* =========================================================
   VMB BLOG PAGE
========================================================= */

.vmb-blog-page {
    padding: 32px 0 80px;
    background: #f8fafc;
}

.vmb-blog-page .vmb-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================================
   HERO
========================================================= */

.vmb-blog-hero {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

.vmb-blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    color: #4338ca;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vmb-blog-hero h1 {
    margin: 14px 0 10px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 48px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.035em;
}

.vmb-blog-hero > p {
    max-width: 780px;
    margin: 0 auto;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.vmb-blog-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.vmb-blog-hero .vmb-blog-meta span {
    padding: 7px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   FEATURED GUIDE
========================================================= */

.vmb-featured-guide {
    position: relative;
    overflow: hidden;
    margin-bottom: 35px;
    padding: 42px;
    border: 1px solid rgba(99,102,241,.25);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e1b4b,
            #172554
        );
    box-shadow: 0 20px 45px rgba(15,23,42,.18);
}

.vmb-featured-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    top: -150px;
    right: -80px;
    border-radius: 50%;
    background: rgba(236,72,153,.12);
    filter: blur(70px);
}

.vmb-featured-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 45px;
    align-items: center;
}

.vmb-featured-left {
    min-width: 0;
}

.vmb-featured-labels {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.vmb-featured-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: #fbbf24;
    color: #0f172a;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vmb-read-time {
    color: #cbd5e1;
    font-size: 10px;
}

.vmb-featured-left h2 {
    max-width: 720px;
    margin: 0 0 13px;
    color: #fff;
    font-family: var(--vmb-font);
    font-size: 38px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.025em;
}

.vmb-featured-left > p {
    max-width: 680px;
    margin: 0;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.7;
}

.vmb-featured-author {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 22px;
}

.vmb-featured-author img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(244,114,182,.5);
}

.vmb-featured-author div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vmb-featured-author strong {
    color: #fff;
    font-size: 11px;
}

.vmb-featured-author span {
    color: #94a3b8;
    font-size: 9px;
}

.vmb-featured-button {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    padding: 10px 15px;
    border-radius: 11px;
    background: rgba(255,255,255,.1);
    color: #f9a8d4;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    transition: .2s ease;
}

.vmb-featured-button:hover {
    background: rgba(255,255,255,.17);
    transform: translateX(3px);
}

.vmb-featured-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.vmb-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.vmb-featured-guide:hover .vmb-featured-image img {
    transform: scale(1.05);
}


/* =========================================================
   CONTROLS
========================================================= */

.vmb-blog-controls {
    margin-bottom: 30px;
}

.vmb-blog-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.vmb-blog-search {
    position: relative;
    width: 360px;
}

.vmb-blog-search > span {
    position: absolute;
    top: 50%;
    left: 14px;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1;
    transform: translateY(-50%);
}

.vmb-blog-search input {
    width: 100%;
    height: 44px;
    box-sizing: border-box;
    padding: 0 15px 0 40px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    outline: none;
    background: #fff;
    color: #334155;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(15,23,42,.03);
}

.vmb-blog-search input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}

.vmb-blog-search-row > p {
    margin: 0;
    color: #64748b;
    font-size: 11px;
}

.vmb-filter-row {
    display: flex;
    align-items: center;
    gap: 7px;
    overflow-x: auto;
    padding: 5px 0 8px;
    scrollbar-width: none;
}

.vmb-filter-row::-webkit-scrollbar {
    display: none;
}

.vmb-filter-title {
    flex: 0 0 auto;
    margin-right: 4px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vmb-filter-row button {
    flex: 0 0 auto;
    padding: 7px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s ease;
}

.vmb-filter-row button:hover {
    background: #f1f5f9;
}

.vmb-filter-row button.active {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37,99,235,.16);
}

.vmb-filter-row button.dark-active {
    border-color: #0f172a;
    background: #0f172a;
    color: #fff;
}


/* =========================================================
   BLOG GRID
========================================================= */

.vmb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vmb-blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15,23,42,.035);
    transition: .25s ease;
}

.vmb-blog-card:hover {
    transform: translateY(-5px);
    border-color: #f9a8d4;
    box-shadow: 0 18px 35px rgba(15,23,42,.1);
}

.vmb-blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
}

.vmb-blog-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.vmb-blog-card:hover .vmb-blog-card-image img {
    transform: scale(1.05);
}

.vmb-blog-card-image > span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.95);
    color: #0f172a;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(15,23,42,.08);
}

.vmb-blog-card-image > small {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 4px 8px;
    border-radius: 7px;
    background: rgba(15,23,42,.85);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
}

.vmb-blog-card-body {
    padding: 20px;
    flex: 1;
}

.vmb-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 9px;
}

.vmb-card-meta span:first-child {
    color: #64748b;
}

.vmb-card-meta span:first-child::first-letter {
    color: #ec4899;
}

.vmb-blog-card-body h3 {
    margin: 0 0 9px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 900;
    transition: color .2s ease;
}

.vmb-blog-card:hover .vmb-blog-card-body h3 {
    color: #2563eb;
}

.vmb-blog-card-body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #64748b;
    font-size: 10px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.vmb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 13px;
}

.vmb-tags span {
    padding: 4px 7px;
    border-radius: 5px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 8px;
    font-weight: 600;
}

.vmb-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #f1f5f9;
}

.vmb-author {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.vmb-author img {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    object-fit: cover;
}

.vmb-author span {
    overflow: hidden;
    color: #475569;
    font-size: 9px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vmb-blog-card-footer > a {
    flex: 0 0 auto;
    color: #db2777;
    text-decoration: none;
    font-size: 9px;
    font-weight: 900;
    transition: .2s ease;
}

.vmb-blog-card-footer > a:hover {
    color: #be185d;
    transform: translateX(2px);
}


/* =========================================================
   RESOURCES
========================================================= */

.vmb-blog-resources {
    margin-top: 50px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15,23,42,.03);
}

.vmb-resource-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.vmb-resource-heading > div > span {
    color: #db2777;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.vmb-resource-heading h2 {
    margin: 6px 0;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.vmb-resource-heading p {
    max-width: 700px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.vmb-resource-heading > small {
    flex: 0 0 auto;
    padding: 6px 11px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 800;
}

.vmb-resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.vmb-resource {
    min-height: 175px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 17px;
    text-decoration: none;
    transition: .2s ease;
}

.vmb-resource:hover {
    transform: translateY(-3px);
}

.vmb-resource > strong {
    font-size: 19px;
}

.vmb-resource > small {
    width: fit-content;
    margin-top: 8px;
    padding: 3px 6px;
    border-radius: 5px;
    background: rgba(255,255,255,.8);
    color: #475569;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.vmb-resource h3 {
    margin: 8px 0 4px;
    color: #0f172a;
    font-family: var(--vmb-font);
    font-size: 13px;
    font-weight: 900;
}

.vmb-resource p {
    margin: 0;
    color: #64748b;
    font-size: 9px;
    line-height: 1.55;
}

.vmb-resource b {
    margin-top: auto;
    padding-top: 10px;
    color: #334155;
    font-size: 9px;
}


/* Resource colors */

.vmb-resource.pink {
    background: linear-gradient(135deg,#fdf2f8,#fff1f2);
    border: 1px solid #fbcfe8;
}

.vmb-resource.blue {
    background: linear-gradient(135deg,#eff6ff,#f0f9ff);
    border: 1px solid #bfdbfe;
}

.vmb-resource.purple {
    background: linear-gradient(135deg,#faf5ff,#eef2ff);
    border: 1px solid #ddd6fe;
}

.vmb-resource.green {
    background: linear-gradient(135deg,#ecfdf5,#f0fdfa);
    border: 1px solid #a7f3d0;
}

.vmb-resource.rose {
    background: linear-gradient(135deg,#fff1f2,#fff7ed);
    border: 1px solid #fecdd3;
}

.vmb-resource.cyan {
    background: linear-gradient(135deg,#ecfeff,#eff6ff);
    border: 1px solid #a5f3fc;
}

.vmb-resource.indigo {
    background: linear-gradient(135deg,#eef2ff,#f5f3ff);
    border: 1px solid #c7d2fe;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .vmb-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmb-resource-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 800px) {

    .vmb-blog-page .vmb-container {
        padding: 0 18px;
    }

    .vmb-blog-hero h1 {
        font-size: 38px;
    }

    .vmb-featured-guide {
        padding: 28px;
    }

    .vmb-featured-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vmb-featured-left h2 {
        font-size: 31px;
    }

    .vmb-featured-image {
        order: -1;
    }

    .vmb-blog-search-row {
        align-items: stretch;
        flex-direction: column;
    }

    .vmb-blog-search {
        width: 100%;
    }

    .vmb-resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .vmb-blog-page {
        padding-top: 22px;
    }

    .vmb-blog-hero h1 {
        font-size: 32px;
    }

    .vmb-blog-hero > p {
        font-size: 12px;
    }

    .vmb-blog-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .vmb-blog-meta span {
        text-align: center;
    }

    .vmb-featured-guide {
        padding: 22px;
        border-radius: 22px;
    }

    .vmb-featured-left h2 {
        font-size: 27px;
    }

    .vmb-featured-left > p {
        font-size: 11px;
    }

    .vmb-blog-grid {
        grid-template-columns: 1fr;
    }

    .vmb-blog-resources {
        padding: 22px;
        border-radius: 22px;
    }

    .vmb-resource-heading {
        flex-direction: column;
    }

    .vmb-resource-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 420px) {

    .vmb-blog-page .vmb-container {
        padding: 0 13px;
    }

    .vmb-blog-hero h1 {
        font-size: 28px;
    }

    .vmb-featured-left h2 {
        font-size: 24px;
    }

    .vmb-featured-author span {
        font-size: 8px;
    }

}


/* ========================================
   VMB GUIDE TOP NAVIGATION
======================================== */

.vmb-guide-nav {
    width: 100%;
    background: var(--vmb-white);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 30;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.vmb-guide-nav-inner {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* LEFT SIDE */

.vmb-guide-nav-left {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* BACK BUTTON */

.vmb-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;

    padding: 0.375rem 0.75rem;

    border: 0;
    border-radius: 0.75rem;

    background: var(--vmb-slate-100);
    color: var(--vmb-slate-800);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 700;

    cursor: pointer;
    transition: var(--vmb-transition);

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);

    flex-shrink: 0;
}

.vmb-back-btn:hover {
    background: var(--vmb-slate-200);
}

.vmb-back-btn svg {
    width: 1rem;
    height: 1rem;
    color: var(--vmb-slate-700);
    flex-shrink: 0;
}

/* BREADCRUMB */

.vmb-breadcrumb {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 0.375rem;

    color: var(--vmb-slate-400);

    font-family: var(--vmb-font);
    font-size: 0.75rem;

    white-space: nowrap;
    overflow: hidden;
}

.vmb-breadcrumb button {
    padding: 0;
    border: 0;
    background: transparent;

    color: inherit;

    font-family: inherit;
    font-size: inherit;

    cursor: pointer;
    transition: var(--vmb-transition);

    white-space: nowrap;
}

.vmb-breadcrumb button:hover {
    color: var(--vmb-slate-700);
}

.vmb-breadcrumb svg {
    width: 0.875rem;
    height: 0.875rem;

    color: var(--vmb-slate-300);

    flex-shrink: 0;
}

.vmb-breadcrumb .vmb-breadcrumb-current {
    color: var(--vmb-slate-600);
    font-weight: 500;

    overflow: hidden;
    text-overflow: ellipsis;
}

/* RIGHT ACTIONS */

.vmb-guide-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    flex-shrink: 0;
}

/* SHARE BUTTON */

.vmb-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;

    padding: 0.375rem 0.75rem;

    border: 0;
    border-radius: 0.75rem;

    background: var(--vmb-slate-100);
    color: var(--vmb-slate-700);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 600;

    cursor: pointer;

    transition: var(--vmb-transition);
}

.vmb-share-btn:hover {
    background: var(--vmb-slate-200);
}

.vmb-share-btn svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--vmb-slate-600);
}

/* WHATSAPP */

.vmb-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;

    padding: 0.375rem 0.75rem;

    border-radius: 0.75rem;

    background: #10b981;
    color: var(--vmb-white);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 700;

    text-decoration: none;

    transition: var(--vmb-transition);

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.vmb-whatsapp-btn:hover {
    background: #059669;
}

.vmb-whatsapp-btn svg {
    width: 0.875rem;
    height: 0.875rem;

    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (min-width: 640px) {

    .vmb-guide-nav-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .vmb-breadcrumb {
        display: flex;
    }

    .vmb-whatsapp-text {
        display: inline;
    }

    .vmb-share-text {
        display: inline;
    }
}

@media (max-width: 639px) {

    .vmb-breadcrumb {
        display: none;
    }

    .vmb-guide-nav-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .vmb-whatsapp-text {
        display: none;
    }

    .vmb-share-text {
        display: none;
    }

    .vmb-share-btn,
    .vmb-whatsapp-btn {
        width: 2rem;
        height: 2rem;
        padding: 0;
    }
}

@media (max-width: 380px) {

    .vmb-guide-nav-inner {
        gap: 0.5rem;
    }

    .vmb-guide-nav-left {
        gap: 0.5rem;
    }

    .vmb-back-btn {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
}

/* =========================================
   VMB BLOG DETAIL PAGE
========================================= */

.vmb-blog-detail-section {
    width: 100%;
    padding: 2rem 1rem 3rem;
}

.vmb-blog-article {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* =========================================
   HEADER
========================================= */

article.vmb-blog-article .vmb-blog-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
}
 
.vmb-blog-meta-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.vmb-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;

    padding: 0.25rem 0.75rem;

    border-radius: 999px;

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 700;

    white-space: nowrap;
}

.vmb-tag svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.vmb-tag-pink {
    color: var(--vmb-pink-700);
    background: var(--vmb-pink-100);
    border: 1px solid var(--vmb-pink-200);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 900;
}

.vmb-tag-blue {
    color: #1e40af;
    background: var(--vmb-blue-50);
    border: 1px solid var(--vmb-blue-200);
}

.vmb-tag-slate {
    color: var(--vmb-slate-500);
    background: var(--vmb-white);
    border: 1px solid var(--vmb-slate-200);
}

.vmb-tag-green {
    color: #047857;
    background: var(--vmb-emerald-50);
    border: 1px solid var(--vmb-emerald-200);
}

/* TITLE */

.vmb-blog-title {
    margin: 0;

    font-family: var(--vmb-font);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    font-weight: 900;

    color: var(--vmb-slate-900);
    letter-spacing: -0.025em;
}

/* SUMMARY */

.vmb-blog-summary {
    margin: 0;

    padding: 1.25rem;

    background: rgba(238, 242, 255, 0.5);

    border-left: 4px solid var(--vmb-indigo-500);
    border-radius: 1rem;

    color: var(--vmb-slate-600);

    font-family: var(--vmb-font);
    font-size: 1.125rem;
    line-height: 1.625;
    font-weight: 500;
}

/* =========================================
   AUTHOR CARD
========================================= */

.vmb-author-card {
    padding: 1.25rem;

    background: var(--vmb-white);

    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1rem;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vmb-author-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    padding-bottom: 0.75rem;

    border-bottom: 1px solid var(--vmb-slate-100);
}

.vmb-author-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 0;
}

.vmb-author-image {
    width: 3rem;
    height: 3rem;

    border-radius: 50%;

    object-fit: cover;

    box-shadow:
        0 0 0 2px rgba(244, 114, 182, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.05);

    flex-shrink: 0;
}

.vmb-author-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vmb-author-name {
    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    font-weight: 900;
}

.vmb-specialist-badge {
    padding: 0.125rem 0.5rem;

    border-radius: 0.375rem;

    background: var(--vmb-blue-50);
    border: 1px solid var(--vmb-blue-200);

    color: #1d4ed8;

    font-family: var(--vmb-font);
    font-size: 0.625rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-author-role {
    margin: 0.125rem 0 0;

    color: var(--vmb-slate-500);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
}

.vmb-author-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.vmb-cite-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;

    padding: 0.375rem 0.75rem;

    background: var(--vmb-slate-50);
    border: 1px solid var(--vmb-slate-200);
    border-radius: 0.75rem;

    color: var(--vmb-slate-700);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 600;

    cursor: pointer;
}

.vmb-cite-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.vmb-bookmark-btn {
    width: 2rem;
    height: 2rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--vmb-slate-200);
    border-radius: 0.75rem;

    background: var(--vmb-slate-50);

    color: var(--vmb-slate-500);

    cursor: pointer;
}

.vmb-bookmark-btn svg {
    width: 1rem;
    height: 1rem;
}

.vmb-blog-extra-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;

    color: var(--vmb-slate-500);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
}

.vmb-blog-extra-meta span {
    padding: 0.25rem 0.625rem;

    background: var(--vmb-slate-100);

    border-radius: 0.5rem;

    color: var(--vmb-slate-700);
}

.vmb-blog-extra-meta strong {
    font-weight: 700;
}

.vmb-blog-extra-meta .vmb-intent {
    color: #4338ca;
    background: var(--vmb-indigo-50, #eef2ff);
    border: 1px solid #e0e7ff;
}

/* =========================================
   FEATURED IMAGE
========================================= */

.vmb-featured-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vmb-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;

    display: block;

    object-fit: cover;

    border-radius: 1.5rem;

    background: var(--vmb-slate-100);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    border: 1px solid rgba(226, 232, 240, 0.8);
}

.vmb-featured-image-wrap p {
    margin: 0;

    text-align: center;

    color: var(--vmb-slate-400);

    font-family: var(--vmb-font);
    font-size: 0.6875rem;
    font-style: italic;
}

/* =========================================
   HIGHLIGHTS
========================================= */

.vmb-highlights {
    padding: 1.5rem;

    background: linear-gradient(
        135deg,
        #fffbeb,
        rgba(255, 247, 237, 0.5)
    );

    border: 1px solid var(--vmb-amber-200);
    border-radius: 1.5rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vmb-highlights-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vmb-highlights-title h3 {
    margin: 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 1.125rem;
    font-weight: 900;
}

.vmb-highlights-icon {
    width: 2rem;
    height: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--vmb-amber-500);
    color: var(--vmb-white);

    border-radius: 0.75rem;

    font-weight: 900;
}

.vmb-highlight-grid {
    margin: 0;
    padding: 0;

    list-style: none;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.vmb-highlight-grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;

    padding: 0.875rem;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(253, 230, 138, 0.6);
    border-radius: 1rem;

    color: var(--vmb-slate-800);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
}

.vmb-check {
    color: var(--vmb-emerald-600);

    font-size: 1rem;
    font-weight: 900;

    flex-shrink: 0;
}

/* =========================================
   TABLE OF CONTENTS
========================================= */

.vmb-toc {
    padding: 1.5rem;

    background: rgba(241, 245, 249, 0.8);

    border: 1px solid var(--vmb-slate-200);

    border-radius: 1.5rem;
}

.vmb-toc-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    color: var(--vmb-slate-800);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
}

.vmb-toc-title span {
    color: var(--vmb-pink-500);
    font-size: 1rem;
}

.vmb-toc-grid {
    margin-top: 0.75rem;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.vmb-toc-item {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.5rem 0.875rem;

    text-align: left;

    background: transparent;

    border: 0;
    border-radius: 0.75rem;

    color: var(--vmb-slate-600);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 600;

    cursor: pointer;
    transition: var(--vmb-transition);
}

.vmb-toc-item:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--vmb-slate-900);
}

.vmb-toc-item.active {
    background: var(--vmb-white);
    color: #2563eb;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);

    border: 1px solid var(--vmb-slate-200);
}

.vmb-toc-item > span {
    width: 1.25rem;
    height: 1.25rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--vmb-slate-200);

    color: var(--vmb-slate-700);

    border-radius: 50%;

    font-size: 0.625rem;

    flex-shrink: 0;
}

.vmb-toc-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================
   ARTICLE CONTENT
========================================= */

.vmb-content-card {
    padding: 2rem;

    background: var(--vmb-white);

    border: 1px solid rgba(226, 232, 240, 0.9);

    border-radius: 1.5rem;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);

    color: var(--vmb-slate-800);

    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vmb-content-section {
    padding-bottom: 2rem;

    border-bottom: 1px solid var(--vmb-slate-100);

    scroll-margin-top: 6rem;
}

.vmb-content-section:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.vmb-content-section h2 {
    margin: 0 0 1rem;

    display: flex;
    align-items: center;
    gap: 0.625rem;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 900;
}

.vmb-content-section h2 > span {
    width: 2rem;
    height: 2rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--vmb-pink-100);

    color: var(--vmb-pink-700);

    border-radius: 0.75rem;

    font-size: 0.75rem;

    flex-shrink: 0;
}

.vmb-content-section p {
    margin: 0 0 1rem;

    color: var(--vmb-slate-700);

    font-family: var(--vmb-font);
    font-size: 1rem;
    line-height: 1.625;
}

.vmb-bullet-list {
    margin: 1rem 0;
    padding: 1.25rem;

    list-style: none;

    background: var(--vmb-slate-50);

    border: 1px solid rgba(226, 232, 240, 0.7);

    border-radius: 1rem;
}

.vmb-bullet-list li {
    position: relative;

    padding-left: 1.25rem;

    color: var(--vmb-slate-700);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    line-height: 1.625;
    font-weight: 500;
}

.vmb-bullet-list li + li {
    margin-top: 0.5rem;
}

.vmb-bullet-list li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0.6rem;

    width: 0.5rem;
    height: 0.5rem;

    background: var(--vmb-pink-500);

    border-radius: 50%;
}

.vmb-practical-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;

    padding: 1rem;

    background: rgba(239, 246, 255, 0.7);

    border: 1px solid var(--vmb-blue-200);

    border-radius: 1rem;

    color: #172554;

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    line-height: 1.5;
}

.vmb-tip-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.vmb-practical-tip strong {
    display: block;

    margin-bottom: 0.125rem;

    color: #1e3a8a;
}

/* TAGS */

.vmb-related-tags {
    padding-top: 1.5rem;

    border-top: 1px solid var(--vmb-slate-100);

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.vmb-related-tags > span {
    padding: 0.25rem 0.75rem;

    background: var(--vmb-slate-100);

    color: var(--vmb-slate-700);

    border-radius: 0.5rem;

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 500;
}

.vmb-related-tags .vmb-related-title {
    padding-left: 0;
    background: transparent;

    color: var(--vmb-slate-400);

    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* =========================================
   EXPLORE CARD
========================================= */

.vmb-explore-card,
.vmb-faq-card {
    padding: 1.5rem;

    background: var(--vmb-white);

    border: 1px solid rgba(226, 232, 240, 0.9);

    border-radius: 1.5rem;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vmb-explore-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    padding-bottom: 1rem;

    border-bottom: 1px solid var(--vmb-slate-100);
}

.vmb-explore-header h3,
.vmb-faq-heading h3 {
    margin: 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 1.25rem;
    font-weight: 900;
}

.vmb-explore-header p,
.vmb-faq-heading p {
    margin: 0.125rem 0 0;

    color: var(--vmb-slate-500);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
}

.vmb-explore-header > span {
    padding: 0.25rem 0.75rem;

    background: var(--vmb-pink-50);

    border: 1px solid var(--vmb-pink-200);

    border-radius: 999px;

    color: var(--vmb-pink-600);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 700;

    white-space: nowrap;
}

.vmb-explore-grid {
    margin-top: 1rem;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.vmb-explore-item {
    min-height: 9rem;

    padding: 1rem;

    border-radius: 1rem;

    display: flex;
    justify-content: space-between;

    cursor: pointer;

    transition: 0.2s ease;
}

.vmb-explore-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vmb-explore-item h4 {
    margin: 0.75rem 0 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    font-weight: 900;
}

.vmb-explore-item p {
    margin: 0.25rem 0 0;

    color: var(--vmb-slate-500);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    line-height: 1.5;
}

.vmb-explore-item > span {
    color: inherit;
}

.vmb-explore-icon {
    width: 2rem;
    height: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0.5rem;

    color: white;

    font-size: 0.9rem;
    font-weight: 900;
}

.vmb-explore-pink {
    background: rgba(253, 242, 248, 0.7);
    border: 1px solid var(--vmb-pink-200);
}

.vmb-explore-pink .vmb-explore-icon {
    background: var(--vmb-pink-500);
}

.vmb-explore-blue {
    background: rgba(239, 246, 255, 0.7);
    border: 1px solid var(--vmb-blue-200);
}

.vmb-explore-blue .vmb-explore-icon {
    background: var(--vmb-blue-600, #2563eb);
}

.vmb-explore-amber {
    background: rgba(255, 251, 235, 0.7);
    border: 1px solid var(--vmb-amber-200);
}

.vmb-explore-amber .vmb-explore-icon {
    background: var(--vmb-amber-500);
}

.vmb-explore-purple {
    background: rgba(250, 245, 255, 0.7);
    border: 1px solid #e9d5ff;
}

.vmb-explore-purple .vmb-explore-icon {
    background: #9333ea;
}

.vmb-explore-green {
    background: rgba(236, 253, 245, 0.7);
    border: 1px solid var(--vmb-emerald-200);
}

.vmb-explore-green .vmb-explore-icon {
    background: var(--vmb-emerald-600);
}

.vmb-explore-slate {
    background: var(--vmb-slate-50);
    border: 1px solid var(--vmb-slate-200);
}

.vmb-explore-slate .vmb-explore-icon {
    background: var(--vmb-slate-800);
}

/* =========================================
   FAQ
========================================= */

.vmb-faq-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vmb-faq-heading {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.vmb-faq-icon {
    width: 2.25rem;
    height: 2.25rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3e8ff;

    color: #7e22ce;

    border-radius: 0.75rem;

    font-size: 1.125rem;
    font-weight: 900;

    flex-shrink: 0;
}

.vmb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vmb-faq-item {
    overflow: hidden;

    border: 1px solid var(--vmb-slate-200);

    border-radius: 1rem;
}

.vmb-faq-question {
    width: 100%;

    padding: 1.25rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    background: rgba(248, 250, 252, 0.7);

    border: 0;

    color: var(--vmb-slate-900);

    text-align: left;

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    font-weight: 700;

    cursor: pointer;
}

.vmb-faq-arrow {
    width: 1.5rem;
    height: 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--vmb-white);

    border: 1px solid var(--vmb-slate-200);

    border-radius: 50%;

    color: var(--vmb-slate-600);

    font-size: 0.625rem;

    flex-shrink: 0;

    transition: transform 0.2s ease;
}

.vmb-faq-item.active .vmb-faq-arrow {
    transform: rotate(180deg);
}

.vmb-faq-answer {
    display: none;

    padding: 0 1.25rem 1.25rem;

    color: var(--vmb-slate-600);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    line-height: 1.6;
}

.vmb-faq-item.active .vmb-faq-answer {
    display: block;
}

/* =========================================
   EDITORIAL AUTHOR
========================================= */

.vmb-editorial-author {
    padding: 1.5rem;

    background: linear-gradient(
        135deg,
        var(--vmb-slate-900),
        var(--vmb-indigo-950)
    );

    border: 1px solid rgba(99, 102, 241, 0.2);

    border-radius: 1.5rem;

    color: var(--vmb-white);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vmb-editorial-author-main {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.vmb-editorial-author-main img {
    width: 5rem;
    height: 5rem;

    object-fit: cover;

    border-radius: 1rem;

    box-shadow:
        0 0 0 4px rgba(236, 72, 153, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.25);

    flex-shrink: 0;
}

.vmb-editorial-label {
    display: inline-flex;

    padding: 0.25rem 0.75rem;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 999px;

    color: #fcd34d;

    font-family: var(--vmb-font);
    font-size: 0.625rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.vmb-editorial-author h3 {
    margin: 0.5rem 0 0;

    color: var(--vmb-white);

    font-family: var(--vmb-font);
    font-size: 1.5rem;
    font-weight: 900;
}

.vmb-editorial-role {
    margin: 0.25rem 0 0;

    color: #f9a8d4;

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 600;
}

.vmb-editorial-description {
    max-width: 42rem;

    margin: 0.5rem 0 0;

    color: var(--vmb-slate-300);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    line-height: 1.6;
}

.vmb-editorial-footer {
    margin-top: 1rem;
    padding-top: 1rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    color: var(--vmb-slate-400);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
}

.vmb-editorial-footer button {
    padding: 0.5rem 1rem;

    background: var(--vmb-white);

    border: 0;
    border-radius: 0.75rem;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 700;

    cursor: pointer;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .vmb-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .vmb-blog-detail-section {
        padding: 1.5rem 1rem 2.5rem;
    }

    .vmb-blog-article {
        gap: 2rem;
    }

    .vmb-blog-title {
        font-size: 2rem;
    }

    .vmb-blog-summary {
        font-size: 1rem;
    }

    .vmb-author-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .vmb-author-actions {
        width: 100%;
    }

    .vmb-highlight-grid {
        grid-template-columns: 1fr;
    }

    .vmb-toc-grid {
        grid-template-columns: 1fr;
    }

    .vmb-content-card {
        padding: 1.5rem;
    }

    .vmb-content-section h2 {
        font-size: 1.25rem;
    }

    .vmb-explore-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .vmb-explore-grid {
        grid-template-columns: 1fr;
    }

    .vmb-editorial-author-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vmb-editorial-description {
        margin-left: auto;
        margin-right: auto;
    }

    .vmb-editorial-footer {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 480px) {

    .vmb-blog-detail-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .vmb-blog-title {
        font-size: 1.75rem;
    }

    .vmb-author-card,
    .vmb-highlights,
    .vmb-toc,
    .vmb-content-card,
    .vmb-explore-card,
    .vmb-faq-card,
    .vmb-editorial-author {
        border-radius: 1.25rem;
    }

    .vmb-content-card {
        padding: 1.25rem;
    }

    .vmb-cite-btn span {
        display: none;
    }

    .vmb-cite-btn {
        width: 2rem;
        height: 2rem;
        justify-content: center;
        padding: 0;
    }

}


/* =========================================
   RECOMMENDED NEXT READS
========================================= */

.vmb-recommended-reads {
    width: 100%;
    padding-top: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


/* =========================================
   HEADER
========================================= */

.vmb-recommended-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;
}

.vmb-recommended-heading h3 {
    margin: 0;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 900;
}

.vmb-recommended-heading p {
    margin: 0.25rem 0 0;

    color: var(--vmb-slate-500);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    line-height: 1.4;
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.vmb-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.25rem;

    padding: 0;

    background: transparent;
    border: 0;

    color: var(--vmb-pink-600);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 700;

    cursor: pointer;

    transition: color 0.2s ease;
}

.vmb-view-all-btn:hover {
    color: var(--vmb-pink-700);
}

.vmb-view-all-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}


/* =========================================
   GRID
========================================= */

.vmb-recommended-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 1.5rem;
}


/* =========================================
   CARD
========================================= */

.vmb-read-card {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    background: var(--vmb-white);

    border: 1px solid rgba(226, 232, 240, 0.9);

    border-radius: 1rem;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.vmb-read-card:hover {
    border-color: var(--vmb-pink-300);

    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);

    transform: translateY(-2px);
}


/* =========================================
   IMAGE
========================================= */

.vmb-read-image-wrap {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: var(--vmb-slate-100);
}

.vmb-read-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.vmb-read-card:hover .vmb-read-image-wrap img {
    transform: scale(1.05);
}


/* CATEGORY */

.vmb-read-category {
    position: absolute;

    top: 0.625rem;
    left: 0.625rem;

    padding: 0.125rem 0.625rem;

    background: rgba(255, 255, 255, 0.95);

    border-radius: 999px;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 0.625rem;
    line-height: 1.5;
    font-weight: 700;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(4px);
}


/* =========================================
   CARD BODY
========================================= */

.vmb-read-body {
    padding: 1rem;

    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


/* META */

.vmb-read-meta {
    display: flex;
    align-items: center;

    gap: 0.5rem;

    color: var(--vmb-slate-400);

    font-family: var(--vmb-font);
    font-size: 0.625rem;
}

.vmb-read-meta svg {
    width: 0.75rem;
    height: 0.75rem;

    color: var(--vmb-pink-500);
}


/* TITLE */

.vmb-read-body h4 {
    margin: 0;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;

    color: var(--vmb-slate-900);

    font-family: var(--vmb-font);
    font-size: 0.875rem;
    line-height: 1.35;
    font-weight: 900;

    transition: color 0.2s ease;
}

.vmb-read-card:hover .vmb-read-body h4 {
    color: var(--vmb-blue-600);
}


/* DESCRIPTION */

.vmb-read-body p {
    margin: 0;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;

    color: var(--vmb-slate-500);

    font-family: var(--vmb-font);
    font-size: 0.6875rem;
    line-height: 1.6;
}


/* =========================================
   CARD FOOTER
========================================= */

.vmb-read-footer {
    padding: 0 1rem 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--vmb-pink-600);

    font-family: var(--vmb-font);
    font-size: 0.6875rem;
    font-weight: 700;
}

.vmb-read-footer svg {
    width: 0.875rem;
    height: 0.875rem;

    transition: transform 0.2s ease;
}

.vmb-read-card:hover .vmb-read-footer svg {
    transform: translateX(0.25rem);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .vmb-recommended-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .vmb-recommended-header {
        align-items: flex-start;
    }

    .vmb-recommended-heading h3 {
        font-size: 1.125rem;
    }

    .vmb-recommended-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vmb-recommended-header {
        flex-direction: column;
    }

    .vmb-view-all-btn {
        align-self: flex-start;
    }

}


/* =========================================
   DARK CTA SECTION
========================================= */

.vmb-dark-cta {
    position: relative;
    overflow: hidden;

    padding: 3.5rem;

    color: var(--vmb-white);

    background: linear-gradient(
        135deg,
        var(--vmb-slate-900),
        var(--vmb-indigo-950),
        var(--vmb-slate-900)
    );

    border: 1px solid rgba(99, 102, 241, 0.3);

    border-radius: 1.5rem;

    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


/* =========================================
   BACKGROUND GLOWS
========================================= */

.vmb-dark-cta-glow {
    position: absolute;

    width: 20rem;
    height: 20rem;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(64px);
}

.vmb-dark-cta-glow-right {
    top: -4rem;
    right: -4rem;

    background: rgba(236, 72, 153, 0.15);
}

.vmb-dark-cta-glow-left {
    bottom: -4rem;
    left: -4rem;

    background: rgba(59, 130, 246, 0.15);
}


/* =========================================
   CONTENT
========================================= */

.vmb-dark-cta-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 1.5rem;
}


/* =========================================
   BADGES
========================================= */

.vmb-dark-cta-badges {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 0.5rem;
}

.vmb-dark-badge {
    display: inline-flex;
    align-items: center;

    gap: 0.375rem;

    padding: 0.25rem 0.75rem;

    border-radius: 999px;

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
}

.vmb-dark-badge svg {
    width: 0.875rem;
    height: 0.875rem;

    flex-shrink: 0;
}

.vmb-dark-badge-pink {
    color: #f9a8d4;

    background: rgba(236, 72, 153, 0.2);

    border: 1px solid rgba(244, 114, 182, 0.3);

    text-transform: uppercase;

    letter-spacing: 0.05em;
}

.vmb-dark-badge-pink svg {
    color: #fcd34d;

    animation: vmb-dark-pulse 2s ease-in-out infinite;
}

.vmb-dark-badge-green {
    color: #6ee7b7;

    background: rgba(16, 185, 129, 0.2);

    border: 1px solid rgba(52, 211, 153, 0.3);
}

.vmb-dark-badge-amber {
    color: #fcd34d;

    background: rgba(245, 158, 11, 0.2);

    border: 1px solid rgba(251, 191, 36, 0.3);
}


/* =========================================
   HEADING
========================================= */

.vmb-dark-cta-heading {
    max-width: 48rem;

    display: flex;
    flex-direction: column;

    gap: 0.75rem;
}

.vmb-dark-cta-heading h2 {
    margin: 0;

    color: var(--vmb-white);

    font-family: var(--vmb-font);
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;

    letter-spacing: -0.025em;
}

.vmb-dark-cta-heading p {
    margin: 0;

    color: var(--vmb-slate-300);

    font-family: var(--vmb-font);
    font-size: 1rem;
    line-height: 1.625;
}


/* =========================================
   FEATURE GRID
========================================= */

.vmb-dark-features {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 1rem;

    padding-top: 0.5rem;
}

.vmb-dark-feature {
    padding: 1rem;

    display: flex;
    flex-direction: column;

    gap: 0.375rem;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 1rem;

    backdrop-filter: blur(4px);
}

.vmb-dark-feature-title {
    display: flex;
    align-items: center;

    gap: 0.5rem;

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 700;
}

.vmb-dark-feature-title svg {
    width: 1rem;
    height: 1rem;

    flex-shrink: 0;
}

.vmb-feature-pink {
    color: #f472b6;
}

.vmb-feature-blue {
    color: #60a5fa;
}

.vmb-feature-amber {
    color: #fbbf24;
}

.vmb-feature-green {
    color: #34d399;
}

.vmb-dark-feature p {
    margin: 0;

    color: var(--vmb-slate-300);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    line-height: 1.625;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.vmb-dark-actions {
    padding-top: 1rem;

    display: flex;
    align-items: center;

    gap: 0.75rem;
}

.vmb-dark-actions button {
    min-height: 3.5rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    border-radius: 1rem;

    font-family: var(--vmb-font);

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.vmb-dark-actions button svg {
    flex-shrink: 0;
}


/* PRIMARY */

.vmb-dark-primary-btn {
    padding: 1rem 2rem;

    color: var(--vmb-white);

    background: var(--vmb-pink-600);

    border: 0;

    font-size: 0.875rem;
    font-weight: 900;

    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.vmb-dark-primary-btn svg:first-child {
    width: 1.25rem;
    height: 1.25rem;
}

.vmb-dark-primary-btn svg:last-child {
    width: 1rem;
    height: 1rem;
}

.vmb-dark-primary-btn:hover {
    background: linear-gradient(
        to right,
        var(--vmb-pink-600),
        var(--vmb-rose-600)
    );

    transform: translateY(-1px);
}

.vmb-dark-primary-btn:active {
    transform: scale(0.95);
}


/* SECONDARY */

.vmb-dark-secondary-btn {
    padding: 1rem 1.5rem;

    color: var(--vmb-white);

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.2);

    font-size: 0.875rem;
    font-weight: 700;
}

.vmb-dark-secondary-btn svg {
    width: 1rem;
    height: 1rem;

    color: var(--vmb-amber-400);
}

.vmb-dark-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* TEXT LINK */

.vmb-dark-link-btn {
    padding: 1rem 1.25rem;

    color: var(--vmb-slate-300);

    background: transparent;

    border: 0;

    font-size: 0.75rem;
    font-weight: 600;
}

.vmb-dark-link-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.vmb-dark-link-btn:hover {
    color: var(--vmb-white);
}


/* =========================================
   BOTTOM INFORMATION
========================================= */

.vmb-dark-bottom {
    padding-top: 0.5rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 0.75rem;

    color: var(--vmb-slate-400);

    font-family: var(--vmb-font);
    font-size: 0.6875rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vmb-dark-trust {
    display: flex;
    align-items: center;

    gap: 1rem;
}

.vmb-dark-trust > span {
    display: inline-flex;
    align-items: center;

    gap: 0.25rem;
}

.vmb-dark-trust svg {
    width: 0.875rem;
    height: 0.875rem;

    color: #34d399;
}

.vmb-dark-divider {
    color: var(--vmb-slate-500);
}

.vmb-dark-support strong {
    color: #34d399;

    font-family: var(--vmb-font);
    font-weight: 700;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes vmb-dark-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .vmb-dark-cta {
        padding: 3rem;
    }

    .vmb-dark-cta-heading h2 {
        font-size: 2.5rem;
    }

    .vmb-dark-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .vmb-dark-cta {
        padding: 2rem 1.25rem;

        border-radius: 1.25rem;
    }

    .vmb-dark-cta-heading h2 {
        font-size: 2rem;
    }

    .vmb-dark-cta-heading p {
        font-size: 0.875rem;
    }

    .vmb-dark-features {
        grid-template-columns: 1fr;
    }

    .vmb-dark-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .vmb-dark-actions button {
        width: 100%;
    }

    .vmb-dark-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .vmb-dark-trust {
        flex-wrap: wrap;
    }

    .vmb-dark-divider,
    .vmb-dark-no-sales {
        display: none !important;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vmb-dark-cta {
        padding: 1.5rem 1rem;
    }

    .vmb-dark-cta-heading h2 {
        font-size: 1.75rem;
    }

    .vmb-dark-cta-badges {
        align-items: flex-start;
        flex-direction: column;
    }

    .vmb-dark-badge {
        max-width: 100%;
    }

    .vmb-dark-badge span {
        overflow-wrap: anywhere;
    }

}


/* =========================================
   CONTEST ENTRY TOP BAR
========================================= */

.vmb-entry-bar {
    background: var(--vmb-white);

    border-bottom: 1px solid rgba(226, 232, 240, 0.8);

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.vmb-entry-bar-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 0.75rem;
}


/* =========================================
   LEFT SIDE
========================================= */

.vmb-entry-bar-left {
    display: flex;
    align-items: center;

    gap: 0.75rem;

    min-width: 0;
}


/* =========================================
   BACK BUTTON
========================================= */

.vmb-back-btn {
    display: inline-flex;
    align-items: center;

    gap: 0.375rem;

    padding: 0.375rem 0.75rem;

    color: var(--vmb-slate-700);

    background: var(--vmb-slate-100);

    border: 0;
    border-radius: 0.75rem;

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.vmb-back-btn svg {
    width: 1rem;
    height: 1rem;

    flex-shrink: 0;
}

.vmb-back-btn:hover {
    background: var(--vmb-slate-200);

    color: var(--vmb-slate-800);
}


/* =========================================
   BREADCRUMB
========================================= */

.vmb-entry-breadcrumb {
    display: flex;
    align-items: center;

    gap: 0.5rem;

    min-width: 0;

    color: var(--vmb-slate-400);

    font-family: var(--vmb-font);
    font-size: 0.75rem;
    font-weight: 500;
}

.vmb-entry-breadcrumb button {
    padding: 0;

    color: var(--vmb-slate-400);

    background: transparent;

    border: 0;

    font: inherit;

    cursor: pointer;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.vmb-entry-breadcrumb button:hover {
    color: var(--vmb-blue-500);
}

.vmb-entry-current {
    max-width: 160px;

    overflow: hidden;

    color: var(--vmb-slate-800);

    font-weight: 700;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================
   STATUS
========================================= */

.vmb-entry-status {
    flex-shrink: 0;
}

.vmb-entry-status span {
    display: inline-flex;
    align-items: center;

    padding: 0.25rem 0.625rem;

    color: #1d4ed8;

    background: var(--vmb-blue-50);

    border: 1px solid var(--vmb-blue-200);

    border-radius: 0.5rem;

    font-family: var(--vmb-font);
    font-size: 0.6875rem;
    line-height: 1.5;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 767px) {

    .vmb-entry-bar-inner {
        align-items: flex-start;

        flex-direction: column;
    }

    .vmb-entry-bar-left {
        width: 100%;
    }

    .vmb-entry-status {
        align-self: flex-start;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vmb-entry-bar-inner {
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }

    .vmb-entry-bar-left {
        width: 100%;
    }

    .vmb-entry-breadcrumb {
        display: none;
    }

}


/* ==========================================
   VMB CONTESTANT PAGE
========================================== */

.vmb-contestant-section {
    width: 100%;
    padding: 0 0 96px;
}

.vmb-contestant-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


/* ==========================================
   LEFT COLUMN
========================================== */

.vmb-left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vmb-profile-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.vmb-profile-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 16px;
    background: #0f172a;
}

.vmb-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vmb-profile-image-wrap:hover .vmb-profile-image {
    transform: scale(1.02);
}

.vmb-profile-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(2, 6, 23, 0.8),
            transparent 60%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2),
            transparent 30%
        );
}


/* Badges */

.vmb-profile-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vmb-place-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 14px;

    background: linear-gradient(
        to right,
        #fbbf24,
        #f59e0b
    );

    color: #451a03;

    border: 1px solid #fcd34d;
    border-radius: 999px;

    font-size: 12px;
    line-height: 1;
    font-weight: 900;

    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.vmb-place-badge svg {
    width: 14px;
    height: 14px;
}

.vmb-age-badge {
    padding: 7px 12px;

    background: rgba(255, 255, 255, 0.95);

    color: #0f172a;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    box-shadow: 0 5px 12px rgba(15, 23, 42, 0.12);
}


/* Name */

.vmb-profile-name {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
}

.vmb-profile-name h1 {
    margin: 0;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;

    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}


/* Profile Bottom */

.vmb-profile-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 12px 4px 0;

    color: #64748b;

    font-size: 12px;
}

.vmb-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vmb-verified svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.vmb-copy-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 0;

    border: 0;
    background: transparent;

    color: #2563eb;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.vmb-copy-profile-link:hover {
    color: #1d4ed8;
}

.vmb-copy-profile-link svg {
    width: 14px;
    height: 14px;
}


/* ==========================================
   RALLY CARD
========================================== */

.vmb-rally-card {
    padding: 20px;

    background: linear-gradient(
        135deg,
        #ecfdf5,
        #f0fdfa,
        #d1fae5
    );

    border: 1px solid rgba(167, 243, 208, 0.8);

    border-radius: 24px;
}

.vmb-rally-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vmb-rally-header h4 {
    margin: 0;

    color: #064e3b;

    font-size: 14px;
    font-weight: 900;
}

.vmb-rally-header p {
    margin: 4px 0 0;

    color: #047857;

    font-size: 12px;
}

.vmb-megaphone {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(167, 243, 208, 0.6);

    border-radius: 12px;

    color: #047857;
}

.vmb-megaphone svg {
    width: 16px;
    height: 16px;
}


/* Share buttons */

.vmb-share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    margin-top: 12px;
}

.vmb-share-btn {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 10px 12px;

    border-radius: 16px;
    border: 0;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.2s ease;
}

.vmb-share-btn:hover {
    transform: translateY(-1px);
}

.vmb-share-btn svg {
    width: 16px;
    height: 16px;
}

.vmb-whatsapp {
    background: #059669;
}

.vmb-whatsapp:hover {
    background: #047857;
}

.vmb-facebook {
    background: #2563eb;
}

.vmb-facebook:hover {
    background: #1d4ed8;
}

.vmb-pinterest {
    background: #e11d48;
}

.vmb-pinterest:hover {
    background: #be123c;
}

.vmb-share-btn.vmb-copy {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}


/* ==========================================
   RIGHT COLUMN
========================================== */

.vmb-right-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}


/* ==========================================
   LIVE STANDING
========================================== */

.vmb-standing-card {
    padding: 32px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            rgba(253, 242, 248, 0.3),
            #ffffff
        );

    border: 2px solid #fbcfe8;

    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.vmb-standing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.vmb-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 5px 12px;

    background: rgba(252, 231, 243, 0.8);

    color: #be185d;

    border: 1px solid #fbcfe8;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-live-badge svg {
    width: 14px;
    height: 14px;
    color: #db2777;
    fill: #db2777;
}

.vmb-vote-count {
    display: flex;
    align-items: baseline;
    gap: 8px;

    margin-top: 8px;
}

.vmb-vote-count span {
    color: #0f172a;

    font-size: 52px;
    line-height: 1;
    font-weight: 900;
}

.vmb-vote-count small {
    color: #64748b;

    font-size: 14px;
    font-weight: 700;
}

.vmb-rank-box {
    text-align: right;
}

.vmb-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 14px;

    background: #eff6ff;

    color: #1e40af;

    border: 1px solid #bfdbfe;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

.vmb-rank-badge svg {
    width: 14px;
    height: 14px;
    color: #2563eb;
}

.vmb-rank-box p {
    margin: 5px 0 0;

    color: #94a3b8;

    font-size: 11px;
}


/* Vote button */

.vmb-vote-area {
    padding-top: 24px;
}


.vmb-vote-button:hover {
    background: linear-gradient(
        to right,
        #db2777,
        #e11d48
    );

    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
}

.vmb-vote-button svg {
    width: 24px;
    height: 24px;
}

.vmb-vote-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    padding-top: 8px;

    color: #64748b;

    font-size: 12px;
}

.vmb-vote-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vmb-vote-info svg {
    width: 14px;
    height: 14px;
}

.vmb-vote-info span:nth-child(1) svg {
    color: #10b981;
}

.vmb-vote-info span:nth-child(3) svg {
    color: #3b82f6;
}

.vmb-vote-info span:nth-child(5) svg {
    color: #8b5cf6;
}

.vmb-vote-info i {
    font-style: normal;
}


/* ==========================================
   CERTIFICATE
========================================== */

.vmb-certificate-card {
    padding: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(245, 158, 11, 0.1),
            rgba(250, 204, 21, 0.05),
            rgba(245, 158, 11, 0.15)
        );

    border: 1px solid #fcd34d;

    border-radius: 24px;

    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.vmb-certificate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding-bottom: 16px;
}

.vmb-certificate-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmb-star-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fef3c7;

    color: #b45309;

    border-radius: 16px;

    font-size: 18px;
}

.vmb-certificate-title h3 {
    margin: 0;

    color: #0f172a;

    font-size: 18px;
    font-weight: 900;
}

.vmb-certificate-title p {
    margin: 4px 0 0;

    color: #64748b;

    font-size: 12px;
}

.vmb-vote-progress-label {
    padding: 6px 12px;

    background: #f1f5f9;

    color: #475569;

    border-radius: 999px;

    font-family: monospace;

    font-size: 12px;
    font-weight: 700;
}

.vmb-progress-wrapper {
    padding-top: 4px;
}

.vmb-progress-bar {
    width: 100%;
    height: 12px;

    padding: 2px;

    overflow: hidden;

    background: #f1f5f9;

    border: 1px solid #e2e8f0;

    border-radius: 999px;
}

.vmb-progress-fill {
    width: 100%;
    height: 100%;

    border-radius: 999px;

    background: linear-gradient(
        to right,
        #fbbf24,
        #facc15,
        #f59e0b
    );
}

.vmb-certificate-status {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 10px;
}

.vmb-qualified {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #047857;

    font-size: 12px;
    font-weight: 700;
}

.vmb-qualified svg {
    width: 16px;
    height: 16px;

    color: #059669;

    flex-shrink: 0;
}

.vmb-certificate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 10px 16px;

    background: linear-gradient(
        to right,
        #f59e0b,
        #d97706
    );

    color: #ffffff;

    border: 0;
    border-radius: 12px;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
}

.vmb-certificate-button svg {
    width: 16px;
    height: 16px;
}


/* ==========================================
   PARENT INFO
========================================== */

.vmb-info-card {
    padding: 32px;

    background: #ffffff;

    border: 1px solid rgba(226, 232, 240, 0.9);

    border-radius: 24px;

    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.vmb-parent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 14px;

    border-bottom: 1px solid #f1f5f9;
}

.vmb-parent-label {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #64748b;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-parent-label svg {
    width: 16px;
    height: 16px;
    color: #94a3b8;
}

.vmb-parent-row strong {
    color: #0f172a;

    font-size: 14px;
    font-weight: 700;
}

.vmb-story {
    padding-top: 18px;
}

.vmb-story h4 {
    display: flex;
    align-items: center;
    gap: 6px;

    margin: 0 0 10px;

    color: #94a3b8;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vmb-story h4 svg {
    width: 14px;
    height: 14px;
    color: #f59e0b;
}

.vmb-story-text {
    padding: 20px;

    background: rgba(255, 251, 235, 0.5);

    border: 1px solid rgba(253, 230, 138, 0.6);

    border-radius: 16px;

    color: #334155;

    font-size: 15px;
    line-height: 1.7;

    font-style: italic;
}

.vmb-age-info {
    margin-top: 12px;

    padding: 12px;

    background: #f8fafc;

    border: 1px solid #f1f5f9;

    border-radius: 12px;
}

.vmb-age-info span {
    display: block;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.vmb-age-info strong {
    display: block;

    margin-top: 3px;

    color: #0f172a;

    font-size: 14px;
}


/* ==========================================
   CHEER WALL
========================================== */

.vmb-cheer-card {
    padding: 32px;

    background: #ffffff;

    border: 1px solid rgba(226, 232, 240, 0.9);

    border-radius: 24px;

    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.vmb-cheer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 14px;

    border-bottom: 1px solid #f1f5f9;
}

.vmb-cheer-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vmb-cheer-title > svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
}

.vmb-cheer-title h3 {
    margin: 0;

    color: #0f172a;

    font-size: 18px;
    font-weight: 900;
}

.vmb-cheer-title p {
    margin: 3px 0 0;

    color: #64748b;

    font-size: 12px;
}

.vmb-cheer-heart {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(252, 231, 243, 0.7);

    color: #db2777;

    border-radius: 999px;
}

.vmb-cheer-heart svg {
    width: 16px;
    height: 16px;

    fill: #ec4899;
}


/* Form */

.vmb-cheer-form {
    margin-top: 16px;
}

.vmb-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.vmb-cheer-form input,
.vmb-cheer-form select {
    width: 100%;

    box-sizing: border-box;

    padding: 11px 14px;

    background: rgba(248, 250, 252, 0.5);

    border: 1px solid #e2e8f0;

    border-radius: 12px;

    outline: none;

    color: #334155;

    font-size: 12px;
}

.vmb-cheer-form input:focus,
.vmb-cheer-form select:focus {
    border-color: transparent;

    box-shadow: 0 0 0 2px #3b82f6;
}

.vmb-message-row {
    display: flex;
    gap: 8px;

    margin-top: 10px;
}

.vmb-message-row input {
    flex: 1;
}

.vmb-message-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    flex-shrink: 0;

    padding: 10px 20px;

    background: #2563eb;

    color: #ffffff;

    border: 0;

    border-radius: 12px;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.vmb-message-row button:hover {
    background: #1d4ed8;
}

.vmb-message-row button svg {
    width: 14px;
    height: 14px;
}


/* Messages */

.vmb-cheer-messages {
    max-height: 288px;

    overflow-y: auto;

    margin-top: 16px;

    padding-right: 4px;
}

.vmb-message {
    padding: 14px;

    background: rgba(248, 250, 252, 0.8);

    border: 1px solid #f1f5f9;

    border-radius: 16px;

    margin-bottom: 10px;
}

.vmb-message-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.vmb-message-top span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vmb-message-top strong {
    color: #1e293b;

    font-size: 12px;
}

.vmb-message-top small {
    padding: 3px 8px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 999px;

    color: #94a3b8;

    font-size: 10px;
}

.vmb-message-top time {
    color: #94a3b8;

    font-size: 11px;
}

.vmb-message p {
    margin: 7px 0 0;

    color: #334155;

    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================
   DISCOVER MORE
========================================== */

.vmb-discover-section {
    width: 100%;

    margin-top: 64px;

    padding-top: 24px;

    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.vmb-discover-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 20px;
}

.vmb-discover-header h3 {
    margin: 0;

    color: #0f172a;

    font-size: 20px;
    font-weight: 900;
}

.vmb-discover-header p {
    margin: 4px 0 0;

    color: #64748b;

    font-size: 12px;
}

.vmb-discover-header button {
    padding: 0;

    background: transparent;

    border: 0;

    color: #2563eb;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.vmb-contestant-cards {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
}

.vmb-contestant-card {
    padding: 12px;

    background: #ffffff;

    border: 1px solid rgba(226, 232, 240, 0.9);

    border-radius: 16px;

    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);

    transition: all 0.25s ease;

    cursor: pointer;
}

.vmb-contestant-card:hover {
    transform: translateY(-2px);

    border-color: #f9a8d4;

    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.1);
}

.vmb-small-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1;

    overflow: hidden;

    background: #f1f5f9;

    border-radius: 12px;
}

.vmb-small-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.vmb-contestant-card:hover .vmb-small-image img {
    transform: scale(1.05);
}

.vmb-small-image span {
    position: absolute;

    left: 6px;
    bottom: 6px;

    padding: 3px 8px;

    background: rgba(0, 0, 0, 0.6);

    color: #ffffff;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 700;
}

.vmb-contestant-card h5 {
    margin: 9px 0 0;

    overflow: hidden;

    color: #0f172a;

    font-size: 12px;
    font-weight: 700;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.vmb-contestant-card p {
    display: flex;
    align-items: center;
    gap: 4px;

    margin: 3px 0 0;

    color: #db2777;

    font-size: 11px;
    font-weight: 700;
}

.vmb-contestant-card p svg {
    width: 12px;
    height: 12px;

    fill: #ec4899;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .vmb-contestant-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vmb-left-column {
        position: static;
    }

    .vmb-right-column {
        gap: 24px;
    }

}


@media (max-width: 767px) {

    .vmb-contestant-section {
        padding-bottom: 64px;
    }

    .vmb-standing-card,
    .vmb-certificate-card,
    .vmb-info-card,
    .vmb-cheer-card {
        padding: 20px;
        border-radius: 20px;
    }

    .vmb-standing-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .vmb-rank-box {
        text-align: left;
    }

    .vmb-vote-count span {
        font-size: 42px;
    }

    .vmb-certificate-header,
    .vmb-certificate-status {
        flex-direction: column;
        align-items: flex-start;
    }

    .vmb-certificate-button {
        width: 100%;
    }

    .vmb-parent-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .vmb-form-row {
        grid-template-columns: 1fr;
    }

    .vmb-message-row {
        flex-direction: column;
    }

    .vmb-message-row button {
        width: 100%;
    }

    .vmb-contestant-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmb-discover-header {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .vmb-profile-card {
        padding: 12px;
    }

    .vmb-profile-name h1 {
        font-size: 26px;
    }

    .vmb-profile-bottom {
        font-size: 11px;
    }

    .vmb-share-grid {
        gap: 8px;
    }

    .vmb-share-btn {
        padding: 9px 7px;
        font-size: 11px;
    }

    .vmb-vote-button {
        font-size: 15px;
        padding: 14px 12px;
    }

    .vmb-vote-info {
        gap: 7px;
        font-size: 10px;
    }

}

/* =========================================
   RESPONSIVE
========================================= */






/* =====================================================
   RESPONSIVE
===================================================== */

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   All media queries consolidated at the end of the file
========================================================= */

@media (max-width: 1023px) {

    .vmb-prizes-grid {
        gap: 1rem;
    }

    .vmb-prize-card {
        padding: 1rem;
    }

}

@media (max-width: 767px) {

    .vmb-prizes-heading h2 {
        font-size: 1.875rem;
    }

    .vmb-prizes-heading p {
        font-size: 0.875rem;
    }

    .vmb-prizes-grid {
        grid-template-columns: 1fr;

        gap: 1rem;

        margin-top: 1rem;
    }

    .vmb-prize-card {
        padding: 1.25rem;
    }

}

@media (max-width: 479px) {


    .vmb-prizes-heading h2 {
        font-size: 1.625rem;
    }

    .vmb-prizes-label {
        font-size: 0.6875rem;
    }

    .vmb-prize-top {
        align-items: flex-start;
    }

    .vmb-prize-badge {
        max-width: 70%;

        overflow: hidden;

        text-overflow: ellipsis;
    }

    .vmb-courier {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .vmb-courier strong {
        text-align: left;
    }

}

@media (max-width: 1023px) {

    .vmb-top-contenders {
        gap: 1rem;
    }

    .vmb-contender-card {
        padding: 1rem;
    }

    .vmb-first-place {
        padding: 1.25rem;
    }

    .vmb-challenger-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .vmb-leaderboard-heading h2 {
        font-size: 1.875rem;
    }

    .vmb-leaderboard-heading p {
        font-size: 0.875rem;
    }

    .vmb-top-contenders {
        grid-template-columns: 1fr;

        align-items: stretch;

        gap: 1rem;

        margin-top: 1.5rem;
    }

    .vmb-first-place {
        order: 1;

        transform: none;
    }

    .vmb-second-place {
        order: 2;
    }

    .vmb-third-place {
        order: 3;
    }

    .vmb-contender-card {
        width: 100%;
    }

    .vmb-challengers {
        padding: 1rem;
    }

}

@media (max-width: 639px) {

    .vmb-challengers-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 0.5rem;
    }

    .vmb-challenger-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 479px) {

    .vmb-leaderboard-heading h2 {
        font-size: 1.625rem;
    }

    .vmb-leaderboard-label {
        font-size: 0.6875rem;
    }

    .vmb-contender-card,
    .vmb-first-place {
        padding: 1rem;
    }

    .vmb-first-place .vmb-contender-image-inner img {
        width: 7.5rem;
        height: 7.5rem;
    }

    .vmb-card-top {
        align-items: flex-start;
    }

    .vmb-rank-badge {
        max-width: 70%;

        overflow: hidden;

        text-overflow: ellipsis;
    }

}

@media (max-width: 1023px) {

    .vmb-how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 1rem;
    }

}

@media (max-width: 767px) {

    .vmb-how-heading h2 {
        font-size: 1.875rem;
    }

    .vmb-how-heading p {
        font-size: 0.875rem;
    }

    .vmb-how-grid {
        grid-template-columns: 1fr;

        gap: 1rem;

        margin-top: 1rem;
    }

}

@media (max-width: 479px) {

    .vmb-how-heading h2 {
        font-size: 1.625rem;
    }

    .vmb-how-label {
        font-size: 0.6875rem;
    }

}

@media (min-width: 640px) {

    .vmb-blog-header {
        flex-direction: row;
    }

    .vmb-blog-heading {
        align-items: flex-start;
        text-align: left;
    }

    .vmb-blog-heading h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .vmb-blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .vmb-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .vmb-blog-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vmb-blog-heading {
        align-items: center;
    }

    .vmb-blog-label {
        align-self: center;
    }

    .vmb-blog-heading h2 {
        font-size: 1.5rem;
    }

    .vmb-blog-all-link {
        width: 100%;
        justify-content: center;
        margin: 10px 0px 20px;
    }
}

@media (min-width: 640px) {

    .vmb-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmb-resource-card {
        padding: 1.25rem;
    }

}

@media (min-width: 1024px) {

    .vmb-resource-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 639px) {

    .vmb-resource-header {
        align-items: flex-start;
    }

    .vmb-resource-tag {
        display: none;
    }

    .vmb-resource-heading h2 {
        font-size: 1.25rem;
    }

    .vmb-resource-heading p {
        font-size: 0.75rem;
    }

}

@media (max-width: 768px) {

    .vmb-final-cta-inner {
        padding: 2.5rem 1.5rem;
    }

    .vmb-final-cta-content h2 {
        font-size: 1.875rem;
    }

}

@media (max-width: 640px) {

    .vmb-final-cta-inner {
        padding: 2rem 1rem;
    }

    .vmb-final-cta-content h2 {
        font-size: 1.5rem;
    }

    .vmb-final-cta-content p {
        font-size: 0.75rem;
    }

    .vmb-final-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .vmb-final-cta-actions button {
        width: 100%;
    }

}

@media (max-width: 1279px) {

    .vmb-desktop-nav {

        display: none;

    }

    .vmb-mobile-toggle {

        display: flex;

    }

}

@media (max-width: 1100px) {

    .vmb-footer-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .vmb-footer-brand {
        grid-column: span 3;
    }

}

@media (max-width: 1024px) {

    .vmb-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vmb-hero-image-column {
        max-width: 760px;
        margin: 0 auto;
    }

    .vmb-hero-copy h1 {
        font-size: 48px;
    }

    .vmb-active-stars-section {
        padding: 52px 0px;
    }

    .vmb-stars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 991px) {

    .vmb-certificate-box {
        padding: 28px;
    }

    .vmb-certificate-content {
        grid-template-columns: 1fr;
    }

    .vmb-certificate-title {
        font-size: 27px;
    }

}

@media (max-width: 900px) {

    .vmb-activity-track {
        animation-duration: 38s;
    }

}

@media (max-width: 767px) {

    .vmb-container {

        padding-left: 16px;
        padding-right: 16px;

    }


    .vmb-navigation-inner {

        min-height: 64px;

    }


    .vmb-logo-link img {

        height: 54px;

    }


    .vmb-header-actions {

        gap: 8px;

    }

    .vmb-hero-section {
        padding: 28px 0 48px;
    }

    .vmb-hero-content {
        align-items: center;
        text-align: center;
    }

    .vmb-hero-badges {
        justify-content: center;
    }

    .vmb-hero-copy {
        align-items: center;
    }

    .vmb-hero-copy h1 {
        font-size: 36px;
    }

    .vmb-hero-copy p {
        font-size: 14px;
    }

    .vmb-hero-actions {
        justify-content: center;
        width: 100%;
    }

    .vmb-hero-primary-link,
    .vmb-hero-secondary-link {
        width: 100%;
    }

    .vmb-hero-image {
        border-radius: 36px;
    }

    .vmb-hero-image-glow {
        border-radius: 36px;
    }

    .vmb-footer {
        padding: 48px 0 40px;
    }

    .vmb-footer-support {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 20px;
    }

    .vmb-footer-support-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .vmb-footer-support-content p {
        max-width: 100%;
    }

    .vmb-footer-support-actions {
        width: 100%;
        flex-direction: column;
    }

    .vmb-footer-whatsapp-link,
    .vmb-footer-enter-link {
        width: 100%;
    }

    .vmb-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }

    .vmb-footer-brand {
        grid-column: span 2;
    }

    .vmb-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .vmb-footer-copyright {
        align-items: center;
    }

}

@media (max-width: 640px) {

    .vmb-activity-container {

        gap: 8px;

        padding:
            6px 8px;

    }


    .vmb-activity-badge {

        padding:
            4px 8px;

    }


    .vmb-activity-label {

        font-size: 9px;

    }


    .vmb-activity-track {

        gap: 18px;

        animation-duration: 32s;

    }


    .vmb-activity-item {

        font-size: 10px;

    }


    .vmb-activity-icon {

        width: 13px;
        height: 13px;

    }


    .vmb-activity-cta {

        display: none;

    }

    .vmb-active-stars-section {
        padding: 42px 0px;
    }

    .vmb-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 22px;
    }

    .vmb-section-heading h2 {
        font-size: 23px;
    }

    .vmb-section-heading p {
        font-size: 13px;
    }

    .vmb-stars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vmb-star-card {
        border-radius: 18px;
    }

    .vmb-certificate-box {
        padding: 20px;
        border-radius: 14px;
    }

    .vmb-certificate-title {
        font-size: 24px;
    }

    .vmb-certificate-features {
        grid-template-columns: 1fr;
    }

    .vmb-certificate-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vmb-certificate-actions a {
        justify-content: center;
    }

    .vmb-voting-calculator {
        padding: 18px;
    }

    .vmb-range-header {
        align-items: flex-start;
    }

}

@media (max-width: 480px) {

    .vmb-logo-link img {
        height: 45px;
    }

    .vmb-enter-button svg {

        width: 15px;
        height: 15px;

    }

    .vmb-hero-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .vmb-hero-copy h1 {
        font-size: 31px;
    }

    .vmb-footer-grid {
        grid-template-columns: 1fr;
    }

    .vmb-footer-brand {
        grid-column: span 1;
    }


    .vmb-footer-global {
        text-align: left;
    }

    .vmb-footer-column {
        gap: 12px;
    }

    .vmb-share-modal {
        padding: 12px;
    }

    .vmb-share-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 20px;
        border-radius: 20px;
    }

    .vmb-share-options {
        gap: 6px;
    }

}

@media (max-width: 420px) {

    .vmb-section-heading h2 {
        font-size: 21px;
    }

    .vmb-star-info {
        padding: 13px 14px 10px;
    }

    .vmb-card-actions {
        padding: 0 14px 14px;
    }

}

@media (max-width: 400px) {

    .vmb-activity-label {

        font-size: 8px;

    }

    .vmb-activity-badge {

        padding:
            4px 7px;

    }

}
/* =========================================================
   PAGE-SCOPED FINAL FIXES
   These overrides intentionally use section-level classes so
   homepage/page-specific rules cannot leak into other sections.
========================================================= */

/* Homepage: Live Leaderboard heading + CTA */
.vmb-home-leaderboard-section .vmb-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.vmb-home-leaderboard-section .vmb-section-heading {
    min-width: 0;
    flex: 1 1 auto;
    text-align: left;
    margin: 0;
}

.vmb-home-leaderboard-section .vmb-view-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    white-space: nowrap;
}

.vmb-home-leaderboard-section .vmb-view-all-link svg {
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
}

/* Homepage: vote number/icon must remain compact and isolated. */
.vmb-home-leaderboard-section .vmb-vote-count {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.vmb-home-leaderboard-section .vmb-vote-count svg {
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
    flex: 0 0 15px;
}

/* Homepage: certificate content is a normal grid; no inherited flex rules. */
.vmb-home-certificate-section .vmb-certificate-content {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    align-items: center;
    gap: 32px;
}

.vmb-home-certificate-section .vmb-certificate-info {
    display: block;
    min-width: 0;
}

.vmb-home-certificate-section .vmb-certificate-label {
    display: inline-flex;
}

.vmb-home-certificate-section .vmb-certificate-title,
.vmb-home-certificate-section .vmb-certificate-description {
    display: block;
}

.vmb-home-certificate-section .vmb-certificate-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vmb-home-certificate-section .vmb-certificate-feature {
    display: block;
    min-width: 0;
}

.vmb-home-certificate-section .vmb-feature-title {
    display: flex;
    align-items: center;
}

.vmb-home-certificate-section .vmb-feature-title svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex: 0 0 16px;
}

/* Homepage: FAQ chevrons cannot inherit the full-page FAQ icon size. */
.vmb-home-faq-section .vmb-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vmb-home-faq-section .vmb-faq-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex: 0 0 16px;
    display: block;
}

.vmb-home-faq-section .vmb-faq-icon svg {
    width: 100%;
    height: 100%;
}

/* Homepage: activity icons remain icons only; no inherited icon-box background. */
.vmb-home-activity-bar .vmb-activity-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    flex: 0 0 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

/* Resource/quick-link heading: text stays together on the left, pill/CTA on right. */
.vmb-home-resource-section .vmb-resource-header,
.vmb-prize-resources-section .vmb-resource-header,
.vmb-howit-resources-section .vmb-resource-header,
.vmb-about-resource-section .vmb-resource-header,
.vmb-blogs-resource-section .vmb-resource-heading,
.vmb-participate-quick-links .vmb-quick-links-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.vmb-home-resource-section .vmb-resource-heading,
.vmb-prize-resources-section .vmb-resource-heading,
.vmb-howit-resources-section .vmb-resource-heading,
.vmb-about-resource-section .vmb-resource-heading,
.vmb-blogs-resource-section .vmb-resource-heading,
.vmb-participate-quick-links .vmb-quick-links-heading > div {
    display: block;
    min-width: 0;
    flex: 1 1 auto;
}

.vmb-home-resource-section .vmb-resource-heading h2,
.vmb-prize-resources-section .vmb-resource-heading h2,
.vmb-howit-resources-section .vmb-resource-heading h2,
.vmb-about-resource-section .vmb-resource-heading h2,
.vmb-blogs-resource-section .vmb-resource-heading h2,
.vmb-participate-quick-links .vmb-quick-links-heading h2 {
    display: block;
}

.vmb-home-resource-section .vmb-resource-heading p,
.vmb-prize-resources-section .vmb-resource-heading p,
.vmb-howit-resources-section .vmb-resource-heading p,
.vmb-about-resource-section .vmb-resource-heading p,
.vmb-blogs-resource-section .vmb-resource-heading p,
.vmb-participate-quick-links .vmb-quick-links-heading p {
    display: block;
    max-width: 760px;
}

.vmb-home-resource-section .vmb-resource-tag,
.vmb-prize-resources-section .vmb-resource-tag,
.vmb-howit-resources-section .vmb-resource-tag,
.vmb-about-resource-section .vmb-resource-tag,
.vmb-blogs-resource-section .vmb-resource-heading > small,
.vmb-participate-quick-links .vmb-quick-label {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Participate quick-link heading uses the same left-text/right-CTA pattern. */
.vmb-participate-quick-links .vmb-quick-links-heading > div {
    display: block;
}

/* Photo Removal Portal is now a link but keeps the existing inline appearance. */
.vmb-inline-link {
    color: var(--vmb-pink-600, #db2777);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    cursor: pointer;
}

/* Responsive: requested behavior is one row through 767px, then wrap/stack below. */
@media (max-width: 767px) {
    .vmb-home-leaderboard-section .vmb-section-header {
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 12px 20px;
    }

    .vmb-home-leaderboard-section .vmb-section-heading {
        flex: 1 1 0;
    }

    .vmb-home-leaderboard-section .vmb-view-all-link {
        flex: 0 0 auto;
    }

    .vmb-home-certificate-section .vmb-certificate-content {
        grid-template-columns: 1fr;
    }

    .vmb-home-certificate-section .vmb-certificate-features {
        grid-template-columns: 1fr;
    }

    .vmb-home-resource-section .vmb-resource-header,
    .vmb-prize-resources-section .vmb-resource-header,
    .vmb-howit-resources-section .vmb-resource-header,
    .vmb-about-resource-section .vmb-resource-header,
    .vmb-blogs-resource-section .vmb-resource-heading,
    .vmb-participate-quick-links .vmb-quick-links-heading {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .vmb-home-leaderboard-section .vmb-section-header {
        align-items: flex-start;
    }

    .vmb-home-leaderboard-section .vmb-view-all-link {
        width: 100%;
        justify-content: flex-start;
    }

    .vmb-home-resource-section .vmb-resource-header,
    .vmb-prize-resources-section .vmb-resource-header,
    .vmb-howit-resources-section .vmb-resource-header,
    .vmb-about-resource-section .vmb-resource-header,
    .vmb-blogs-resource-section .vmb-resource-heading,
    .vmb-participate-quick-links .vmb-quick-links-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .vmb-home-resource-section .vmb-resource-tag,
    .vmb-prize-resources-section .vmb-resource-tag,
    .vmb-howit-resources-section .vmb-resource-tag,
    .vmb-about-resource-section .vmb-resource-tag,
    .vmb-blogs-resource-section .vmb-resource-heading > small,
    .vmb-participate-quick-links .vmb-quick-label {
        align-self: flex-start;
    }
}


/* =========================================================
   WORDPRESS COMPATIBILITY / ISOLATION
   Keeps WordPress content from changing the supplied VMB design.
   Section styling remains controlled by the original VMB selectors.
========================================================= */
.vmb-site,
.vmb-site * { box-sizing: border-box; }

.vmb-site img { max-width: 100%; }
.vmb-site button,
.vmb-site input,
.vmb-site textarea,
.vmb-site select { font-family: var(--vmb-font); }

.vmb-site a { text-decoration: none; }

/* Never let generic WP/theme SVG rules resize VMB icons. */
.vmb-site svg { max-width: none; }

/* WordPress admin bar: keep sticky VMB navigation below the admin bar. */
body.admin-bar .vmb-header { top: 32px; }
@media (max-width: 782px) {
    body.admin-bar .vmb-header { top: 46px; }
}

/* =========================================================
   DYNAMIC WORDPRESS CONTENT / SAFE SCOPING
   ========================================================= */
.vmb-wp-page .vmb-container { width: min(100% - 40px, 1280px); margin-inline: auto; }
.vmb-home-leaderboard-section .vmb-section-header { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; }
.vmb-home-leaderboard-section .vmb-section-heading { min-width:0; flex:1 1 auto; }
.vmb-home-leaderboard-section .vmb-view-all-link { flex:0 0 auto; }
.vmb-home-leaderboard-section .vmb-star-image-wrap { display:block; text-decoration:none; }
.vmb-home-leaderboard-section .vmb-star-image-wrap > img { display:block; width:100%; height:100%; object-fit:cover;     object-position: top; }
.vmb-home-leaderboard-section .vmb-star-title-row .vmb-vote-count { font-size:14px; }
.vmb-home-leaderboard-section .vmb-star-title-row .vmb-vote-count > span { font-size:14px; line-height:1; }
.vmb-home-leaderboard-section .vmb-card-actions .vmb-free-vote-button { text-decoration:none; }
.vmb-leaderboard-section .vmb-leaderboard-heading { text-align:center; }
.vmb-leaderboard-section .vmb-top-contenders { align-items:end; }
.vmb-leaderboard-section .vmb-top-contenders .vmb-contender-card a { text-decoration:none; }
.vmb-leaderboard-section .vmb-top-contenders .vmb-contender-name h3 a { color:inherit; }
.vmb-blog-section .vmb-blog-heading { margin-bottom:24px; }
.vmb-blog-section .vmb-blog-heading h2 { margin:7px 0 5px; }
.vmb-blog-section .vmb-blog-heading p { margin:0; }
.vmb-blog-card-image { display:block; text-decoration:none; }
.vmb-blog-placeholder-image { display:flex !important; position:static !important; width:100%; height:100%; align-items:center; justify-content:center; border-radius:0 !important; background:#f1f5f9 !important; color:#db2777 !important; font-size:28px !important; }
.vmb-filter-row a { display:inline-flex; align-items:center; justify-content:center; min-height:34px; padding:7px 12px; border:1px solid #e2e8f0; border-radius:999px; background:#fff; color:#475569; text-decoration:none; font-size:11px; font-weight:800; white-space:nowrap; transition:.2s ease; }
.vmb-filter-row a:hover { border-color:#f9a8d4; color:#db2777; }
.vmb-filter-row a.dark-active { border-color:#0f172a; background:#0f172a; color:#fff; }
.vmb-blog-search-row { align-items:center; }
.vmb-blog-search-row .vmb-blog-search { display:flex; align-items:center; gap:8px; }
.vmb-blog-search-row .vmb-blog-search input { flex:1 1 auto; min-width:0; }
.vmb-blog-search-row .vmb-blog-search button { border:0; border-radius:10px; padding:9px 13px; background:#db2777; color:#fff; font-weight:800; cursor:pointer; }
.vmb-resource-heading { align-items:flex-start; }
.vmb-resource-heading > div { min-width:0; flex:1 1 auto; }
.vmb-resource-heading > small { flex:0 0 auto; }
.vmb-entry-form { width:100%; }
.vmb-entry-form input[type=file] { max-width:100%; }
.vmb-form-success,.vmb-form-error { margin:0 0 20px; padding:12px 16px; border-radius:12px; font-size:13px; font-weight:700; }
.vmb-form-success { background:#ecfdf5; color:#047857; border:1px solid #a7f3d0; }
.vmb-form-error { background:#fff1f2; color:#be123c; border:1px solid #fecdd3; }
.vmb-form-notice { padding:18px; border-radius:12px; background:#f8fafc; color:#475569; }
.vmb-admin-entry-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 20px; }
.vmb-entry-profile-page { padding:60px 0; background:#f8fafc; }
.vmb-entry-profile-header { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:20px; }
.vmb-back-link,.vmb-entry-round { display:inline-flex; align-items:center; gap:7px; padding:9px 13px; border-radius:10px; background:#fff; border:1px solid #e2e8f0; color:#334155; text-decoration:none; font-size:12px; font-weight:800; }
.vmb-entry-profile-card { display:grid; grid-template-columns:minmax(280px,460px) minmax(0,1fr); gap:40px; align-items:center; padding:30px; border:1px solid #e2e8f0; border-radius:28px; background:#fff; box-shadow:0 14px 40px rgba(15,23,42,.08); }
.vmb-entry-profile-image { overflow:hidden; aspect-ratio:1/1; border-radius:22px; background:#f1f5f9; }
.vmb-entry-profile-image img { display:block; width:100%; height:100%; object-fit:cover; }
.vmb-profile-badge { display:inline-flex; padding:6px 10px; border-radius:999px; background:#fdf2f8; color:#db2777; font-size:10px; font-weight:900; text-transform:uppercase; }
.vmb-entry-profile-content h1 { margin:10px 0 0; color:#0f172a; font-size:42px; line-height:1.1; }
.vmb-profile-votes { display:flex; align-items:baseline; gap:8px; margin:18px 0 12px; }
.vmb-profile-votes strong { color:#db2777; font-size:30px; font-weight:900; }
.vmb-profile-votes span { color:#64748b; font-size:12px; font-weight:700; }
.vmb-profile-certificate { display:inline-flex; padding:8px 12px; border-radius:10px; background:#fffbeb; color:#b45309; font-size:12px; font-weight:900; }
.vmb-profile-story { margin-top:18px; color:#475569; font-size:15px; line-height:1.75; }
.vmb-profile-actions { display:flex; gap:10px; margin-top:22px; }
.vmb-profile-actions .vmb-vote-button,.vmb-profile-actions .vmb-share-button { min-height:42px; padding:10px 16px; border-radius:11px; border:1px solid #e2e8f0; font-weight:800; cursor:pointer; text-decoration:none; }
.vmb-profile-removal-note { margin:18px auto 0; max-width:800px; text-align:center; color:#64748b; font-size:12px; line-height:1.6; }
.vmb-blog-detail-section .vmb-article-content { color:#334155; font-size:16px; line-height:1.8; }
.vmb-blog-detail-section .vmb-article-content img { max-width:100%; height:auto; }
.vmb-recommended-reads .vmb-view-all-btn { text-decoration:none; }

@media (max-width: 1024px) {
    .vmb-stars-grid,.vmb-blog-grid,.vmb-recommended-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .vmb-top-three { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .vmb-first-place { transform:none; }
    .vmb-entry-profile-card { grid-template-columns:minmax(240px,380px) minmax(0,1fr); gap:26px; }
}

@media (max-width: 767px) {
    .vmb-wp-page .vmb-container { width:min(100% - 32px, 1280px); }
    .vmb-home-leaderboard-section .vmb-section-header { align-items:flex-start; flex-wrap:wrap; }
    .vmb-home-leaderboard-section .vmb-view-all-link { margin-left:auto; }
    .vmb-stars-grid,.vmb-blog-grid,.vmb-recommended-grid,.vmb-top-three { grid-template-columns:1fr; }
    .vmb-top-three { gap:16px; }
    .vmb-first-place { transform:none; }
    .vmb-resource-heading { flex-direction:column; }
    .vmb-resource-heading > div { width:100%; }
    .vmb-resource-heading > small { width:100%; }
    .vmb-blog-search-row { flex-direction:column; align-items:stretch; }
    .vmb-blog-search-row .vmb-blog-search { width:100%; }
    .vmb-admin-entry-grid { grid-template-columns:1fr; }
    .vmb-entry-profile-header { align-items:stretch; flex-direction:column; }
    .vmb-entry-profile-card { grid-template-columns:1fr; padding:18px; }
    .vmb-entry-profile-content h1 { font-size:32px; }
    .vmb-profile-actions { flex-wrap:wrap; }
}

.vmb-home-leaderboard-section .vmb-home-stars-header { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:28px; }
.vmb-home-leaderboard-section .vmb-home-stars-heading { min-width:0; flex:1 1 auto; }
.vmb-home-leaderboard-section .vmb-home-stars-heading h2 { margin:0; color:var(--vmb-slate-900,#0f172a); font-size:28px; line-height:1.2; font-weight:900; letter-spacing:-.025em; }
.vmb-home-leaderboard-section .vmb-home-stars-heading p { margin:8px 0 0; color:var(--vmb-slate-500,#64748b); font-size:14px; line-height:1.5; font-weight:500; }
@media (max-width:767px){ .vmb-home-leaderboard-section .vmb-home-stars-header{align-items:flex-start;flex-wrap:wrap;} .vmb-home-leaderboard-section .vmb-view-all-link{margin-left:auto;} }

/* Forminator is the source for the Contact page form. Keep its controls scoped to the contact card. */
.vmb-contact-form-card .forminator-ui { width:100%; font-family:var(--vmb-font,"Outfit",sans-serif); }
.vmb-contact-form-card .forminator-ui .forminator-label { color:#334155; font-size:12px; font-weight:800; }
.vmb-contact-form-card .forminator-ui input:not([type=checkbox]):not([type=radio]),
.vmb-contact-form-card .forminator-ui select,
.vmb-contact-form-card .forminator-ui textarea { width:100%; border:1px solid #e2e8f0; border-radius:10px; background:#fff; color:#0f172a; font:inherit; font-size:13px; padding:11px 13px; box-sizing:border-box; }
.vmb-contact-form-card .forminator-ui textarea { min-height:130px; resize:vertical; }
.vmb-contact-form-card .forminator-ui .forminator-button-submit { border:0; border-radius:11px; background:#db2777; color:#fff; padding:12px 18px; font-size:13px; font-weight:900; cursor:pointer; }
.vmb-contact-form-card .forminator-ui .forminator-button-submit:hover { background:#be185d; }


/* =========================================================
   LATEST DYNAMIC ENTRY / LOGIN FIXES
   ======================================================= */
.vmb-form-success,.vmb-form-error{margin:16px 0 0!important;}
.vmb-form-success{display:block!important;}
.vmb-preview-heading>span{display:flex;align-items:center;gap:7px;}
.vmb-preview-heading>span svg{flex:0 0 15px;width:15px!important;height:15px!important;}
.vmb-preview-heading p{display:block!important;margin:6px 0 0!important;}
.vmb-preview-target svg{width:18px!important;height:18px!important;flex:0 0 18px;}
.vmb-entry-profile-page .vmb-entry-profile-card svg,.vmb-entry-profile-page button svg{max-width:20px;max-height:20px;}
.vmb-login-modal[hidden]{display:none!important;}
.vmb-login-modal{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:20px;}
.vmb-login-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.6);backdrop-filter:blur(4px);}
.vmb-login-modal-content{position:relative;z-index:1;width:min(100%,420px);padding:30px;border-radius:24px;background:#fff;box-shadow:0 24px 70px rgba(15,23,42,.25);text-align:center;}
.vmb-login-modal-close{position:absolute;top:10px;right:12px;border:0;background:transparent;color:#64748b;font-size:28px;line-height:1;cursor:pointer;}
.vmb-login-modal-icon{width:58px;height:58px;margin:0 auto 12px;border-radius:50%;display:grid;place-items:center;background:#fdf2f8;color:#db2777;}
.vmb-login-modal-icon svg{width:32px;height:32px;fill:currentColor;}
.vmb-login-modal-content h3{margin:0 0 8px;color:#0f172a;font-size:22px;font-weight:900;}
.vmb-login-modal-content p{margin:0 auto 18px;color:#64748b;font-size:13px;line-height:1.6;}
.vmb-google-login-button{display:inline-flex;align-items:center;justify-content:center;gap:10px;width:100%;min-height:46px;border:1px solid #e2e8f0;border-radius:12px;background:#fff;color:#0f172a;text-decoration:none;font-weight:800;font-size:13px;box-shadow:0 2px 6px rgba(15,23,42,.08);}
.vmb-google-logo{display:grid;place-items:center;width:22px;height:22px;border-radius:50%;font-weight:900;color:#4285f4;font-size:18px;}
.vmb-login-config-note{padding:10px 12px;border-radius:10px;background:#fffbeb;color:#92400e!important;}
.vmb-login-modal-footer{margin-top:16px!important;margin-bottom:0!important;font-size:11px!important;color:#94a3b8!important;}
html.vmb-modal-open,html.vmb-modal-open body{overflow:hidden;}
@media (max-width:767px){
  .vmb-login-modal-content{padding:26px 20px;border-radius:20px;}
}
.vmb-entry-profile-page .vmb-entry-success{margin:0 0 18px!important;text-align:center;}

/* =========================================================
   ENTRY RALLY SHARING — scoped to contest entry detail
   ========================================================= */
.vmb-entry-rally-card {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.vmb-entry-rally-card .vmb-rally-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.vmb-entry-rally-card .vmb-rally-header h2 {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.25;
}
.vmb-entry-rally-card .vmb-rally-header p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}
.vmb-entry-rally-card .vmb-rally-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff1f2;
    color: #e11d48;
    font-size: 20px;
    flex: 0 0 auto;
}
.vmb-entry-rally-card .vmb-rally-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.vmb-entry-rally-card .vmb-rally-share {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: .2s ease;
}
.vmb-entry-rally-card .vmb-rally-share:hover {
    transform: translateY(-1px);
    border-color: #cbd5e1;
    background: #f1f5f9;
}
.vmb-entry-rally-card .vmb-rally-whatsapp:hover { background: #ecfdf5; border-color: #86efac; color: #15803d; }
.vmb-entry-rally-card .vmb-rally-facebook:hover { background: #eff6ff; border-color: #93c5fd; color: #1d4ed8; }
.vmb-entry-rally-card .vmb-rally-pinterest:hover { background: #fff1f2; border-color: #fda4af; color: #be123c; }

@media (max-width: 767px) {
    .vmb-entry-rally-card { padding: 18px; border-radius: 16px; }
    .vmb-entry-rally-card .vmb-rally-header { align-items: flex-start; }
    .vmb-entry-rally-card .vmb-rally-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
    .vmb-entry-rally-card .vmb-rally-actions { grid-template-columns: 1fr; }
}

/* =========================================================
   VMB FINAL FUNCTIONALITY OVERRIDES
   Scoped only to the existing VoteMyBaby components.
========================================================= */
.vmb-specs-button,
.vmb-final-cta-primary,
.vmb-final-cta-secondary {
    text-decoration: none;
}

.vmb-vote-button:disabled,
.vmb-vote-button.is-loading,
.vmb-vote-button.is-cooldown {
    opacity: .72;
    cursor: not-allowed;
    pointer-events: none;
}

.vmb-vote-button.is-loading {
    position: relative;
}

.vmb-vote-button.is-loading::after {
    content: "";
    width: 14px;
    height: 14px;
    margin-left: 4px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: vmb-vote-spin .7s linear infinite;
}

@keyframes vmb-vote-spin {
    to { transform: rotate(360deg); }
}

.vmb-footer-ad-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 767px) {
    .vmb-footer-ad-wrap { margin-top: 24px; padding: 0 16px; }
}


/* VMB contest-detail functional/layout fixes */
.vmb-contestant-section { width: 100%; padding: 50px 0; }
.vmb-contestant-grid { max-width: 1200px; width: 100%; margin-left: auto; margin-right: auto; }
.vmb-vote-button { display:flex; align-items:center; justify-content:center; gap:10px; }
.vmb-vote-button svg { width:18px !important; height:18px !important; min-width:18px; max-width:18px; flex:0 0 18px; display:block; }
.vmb-vote-button .vmb-vote-spark { width:16px !important; height:16px !important; flex-basis:16px; min-width:16px; max-width:16px; }
.vmb-vote-countdown { margin-top:8px; text-align:center; color:#64748b; font-size:12px; line-height:1.4; }
.vmb-vote-countdown strong { color:#db2777; font-weight:800; }
.vmb-share-btn.vmb-copy { cursor:pointer; }
.vmb-share-btn.vmb-copy svg, .vmb-rally-copy svg { width:18px !important; height:18px !important; flex:0 0 18px; }
.vmb-discover-section { max-width:1200px; margin-left:auto; margin-right:auto; width:100%; }
.vmb-contestant-cards { max-width:1200px; margin-left:auto; margin-right:auto; }
.vmb-about-actions a, .vmb-final-cta-actions a { text-decoration:none; }
@media (max-width:767px) {
  .vmb-contestant-section { padding:50px 16px; }
  .vmb-contestant-grid, .vmb-discover-section { width:100%; }
  .vmb-contestant-cards { grid-template-columns:1fr; }
}
