/* =====================================================
 * REDESIGN OVERRIDES
 * ===================================================== */

/* ---------- HOMEPAGE ---------- */

/* Main banner — desktop: original fixed height with cover; mobile: full video visible */

/* Desktop: video covers the fixed-height container, original layout unchanged */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&display=swap");

@font-face {
    font-family: "Neulis Neue";
    src: url("../fonts/neulis-neue/NeulisNeue-Medium.woff2") format("woff2"),
        url("../fonts/neulis-neue/NeulisNeue-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neulis Neue";
    src: url("../fonts/neulis-neue/NeulisNeue-Bold.woff2") format("woff2"),
        url("../fonts/neulis-neue/NeulisNeue-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Figma tokens (observed) */
    --cc-primary-500: #be185d;
    --cc-primary-200: #F9A8D4;
    --cc-primary-300: #EC4899;
    --cc-primary-600: #9f1239;
    --cc-primary-700: #881337;

    --cg-func-primary-succ: #059669;

    --cg-blue: #0a4a6c;
    --cg-neutral-50: #f8fafc;
    --cg-neutral-100: #e5e7eb;
    --cg-neutral-200: #4B5563;
    --cg-white: #ffffff;
    --cg-charcoal-ink: #1f2937;
    --cc-card-bg-01: #fce7f3;
    --cc-shadow-01: 0 8px 16px rgba(89, 2, 41, .24);
    --cc-radius-16: 16px;
    --cc-radius-8: 8px;
}

body {
    font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--cg-charcoal-ink);
}
.site-header .header-bottom nav>ul>li.dropdown div {
    top:0px;
}

.site-header .header-bottom nav>ul>li.dropdown div ul
{
    border-radius: 12px 12px 12px 12px;
}

.main-banner .image {
    position: relative !important;
    overflow: hidden !important;
}

.main-banner .image .banner-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
    z-index: 0 !important;
}

.main-banner .image .overlay {
    display: none !important;
}

/* home_page_element.png on top of the video */
.main-banner .image::after {
    display: none !important;
}

/* Mobile: show full video without cropping */
@media (max-width: 640px) {
    .main-banner .image {
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        width: 100% !important;
    }

    .main-banner .image .banner-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        height: 100% !important;
        min-width: unset !important;
        min-height: unset !important;
        object-fit: contain !important;
        background: #000 !important;
    }
}

/* Hide sponsors section */
.home-container section.our-sponsors {
    display: none !important;
}

.main-banner .text>div a {
    margin-left: 1px;
}

.cc2-entry-instructions__title-soft {
    font-weight: 400;
    font-size: 28px;
    font-family: 'Work Sans', sans-serif;
}

/* Hide all charities except The Counselling Hub (first) */
.cc2-charities__track .cc2-charity:nth-child(2),
.cc2-charities__track .cc2-charity:nth-child(3) {
    display: none !important;
}

/* ---------- WINNERS PAGE ---------- */

/* Page h1 */
.winners.content .entries-listing .inner>h1 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    line-height: 1.15 !important;
}

/* Logo: use pink text on pages with a white header (everything except homepage) */
body:not(.page-home) .site-header .header-bottom .site-logo .desktop-logo path {
    fill: #BE185D !important;
}

/* Remove drop shadow from the pink logo (shadow was designed for dark backgrounds) */
body:not(.page-home) .site-header .header-bottom .site-logo .desktop-logo g {
    filter: none !important;
}

/* Winner card — hof-card border & shadow */
.winners-list li.winner {
    border-radius: 16px !important;
    box-shadow: 0 8px 16px rgba(89, 2, 41, 0.24) !important;
    overflow: hidden !important;
}

/* Winner card name label */
.winners-list li.winner h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #BE185D !important;
    background-color: rgba(255, 255, 255, 0.88) !important;
    letter-spacing: 0.02em !important;
}

/* Year heading divider */
.winners-list li.heading span {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
    background-color: #f1f1f1 !important;
    letter-spacing: 0.02em !important;
}

.winners-list li.heading:before {
    background-color: #F3E8EE !important;
}

/* ---------- HELP PAGE ---------- */

/* Remove box-shadow on gray-bg */
main.help.gray-bg {
    box-shadow: none !important;
}

/* Remove element_4.png from help intro */
.help.content .intro .inner {
    background-image: none !important;
}


/* FAQ filter bar */
body .faq-filters {
    margin-bottom: 30px !important;
}

body .faq-filters span {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1F2937 !important;
}

body .faq-filters a {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background-color: #BE185D !important;
    border-radius: 16px !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 6px 14px !important;
    height: auto !important;
    line-height: normal !important;
}

body .faq-filters a:hover,
body .faq-filters a.active {
    background-color: #0A4A6C !important;
}

/* Accordion items */
body .accord ul li {
    background-color: #fff !important;
    border: 1px solid #F3E8EE !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
}

body .accord ul li .accord-head {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0A4A6C !important;
    padding: 14px 44px 14px 20px !important;
}

body .accord ul li.open .accord-head {
    background-color: #FDF2F8 !important;
    border-radius: 12px 12px 0 0 !important;
    color: #BE185D !important;
}

body .accord ul li .accord-head:after {
    color: #BE185D !important;
    font-size: 22px !important;
    margin-top: -11px !important;
}

body .accord ul li.open .accord-head:after {
    color: #BE185D !important;
}

body .accord ul li .accord-body>div {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    line-height: 1.6 !important;
    padding: 16px 20px 20px !important;
}

body .accord ul li .accord-body>div p {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    line-height: 1.6 !important;
}

body .accord ul li .accord-body>div a {
    color: #BE185D !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
}

/* ---------- PRIZES PAGE ---------- */

/* Top banner — Cute Couple-Prizes-1 */
.header-banner.prizes-ban--1 {
    background-image: url('../images/element_3.png'), url('../images/Cute Couple-Prizes-1.webp') !important;
    background-position: left top, center !important;
    background-size: 200px, cover !important;
}

@media (max-width: 700px) {
    .header-banner.prizes-ban--1 {
        background-size: 100px, cover !important;
        background-position: left bottom 20px, center !important;
    }
}

/* Intro section */
.prizes-intro {
    text-align: center;
    padding: 60px 20px 40px;
}

.prizes-intro .inner {
    max-width: 820px;
    margin: 0 auto;
}

.prizes-intro h1 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    line-height: 1.15 !important;
    margin: 0 0 16px !important;
}

.prizes-intro p {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Block backgrounds */
.big-3-blocks-mobile-slide>div ul li:nth-child(1) {
    background-image: url('../images/CCSA-Element-Footer-Left.png') !important;
    background-position: bottom right !important;
}

.big-3-blocks-mobile-slide>div ul li:nth-child(2) {
    background-image: url('../images/CCSA-Element-Footer-Middle.png') !important;
    background-position: bottom right !important;
}

.big-3-blocks-mobile-slide>div ul li:nth-child(3) {
    background-image: url('../images/CCSA-Element-Footer-Right.png') !important;
    background-position: bottom left !important;
}

/* Block icon */
.prizes-block__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: var(--cg-blue, #0A4A6C) !important;
    margin: 0 auto 20px !important;
    flex: 0 0 auto !important;
}

.prizes-block__icon img {
    width: 40px !important;
    height: 40px !important;
}

/* First block — white text on dark background */
.big-3-blocks-mobile-slide>div ul li:nth-child(1) div h2,
.big-3-blocks-mobile-slide>div ul li:nth-child(1) div h3 {
    color: #fff !important;
}

/* Block headings and text — override old #af2d2a colours */
.big-3-blocks-mobile-slide>div ul li div h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #BE185D !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
}

.big-3-blocks-mobile-slide>div ul li div h3 {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
}

/* Remove legacy min-height from p inside prize blocks */
.how-it-works.prize .big-3-blocks-mobile-slide>div ul li div p {
    min-height: 0 !important;
}

/* Remove legacy min-height from p inside How It Works slider blocks */
.how-it-works .big-3-blocks-mobile-slide>div ul li div p {
    min-height: 0 !important;
}

.site-footer .footer-bottom {
    background-color: #be185d !important;
}

@media (min-width: 1025px) {
    .how-it-works.prize .big-3-blocks-mobile-slide>div ul li div {
        min-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.how-it-works.prize .big-3-blocks-mobile-slide>div ul li:first-child .prizes-block__tc a,
.how-it-works.prize .big-3-blocks-mobile-slide>div ul li:first-child .prizes-block__tc a:visited,
.how-it-works.prize .big-3-blocks-mobile-slide>div ul li:first-child .prizes-block__tc a:hover {
    color: #fff !important;
}

/* Cash prize bullet list inside block 2 — uses div>p to avoid ul li CSS conflicts */
div.prizes-block__list {
    padding: 0 !important;
    margin: 0 0 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    text-align: left !important;
}

div.prizes-block__list p {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1F2937 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

div.prizes-block__list p img {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 auto !important;
}

/* T&C footnote — reset all the legacy button styles */
.prizes-block__tc {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #6B7280 !important;
    margin-top: auto !important;
    text-align: center !important;
}

.prizes-block__tc a {
    display: inline !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #BE185D !important;
    text-decoration: underline !important;
}

/* CTA spacing */
.cta-box.prizes-cta {
    margin-top: 40px !important;
}

/* Bottom banner image */
.prizes-banner-bottom {
    height: 400px;
    background-image: url('../images/Cute Couple-Prizes-2.webp');
    background-size: cover;
    background-position: center;
    margin-top: 40px;
}

@media (max-width: 820px) {
    .prizes-banner-bottom {
        height: 240px;
    }
}

/* ---------- CONTACT US PAGE ---------- */

/* Remove box-shadow from gray-bg */
main.contact-us.gray-bg {
    box-shadow: none !important;
}

/* Page container */
.contact-us-text-form {
    border-bottom-color: #F3E8EE !important;
}

/* h1 */
.contact-us-text-form h1 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    line-height: 1.15 !important;
    margin-bottom: 40px !important;
}

/* h2 — both columns */
.contact-us-text-form>div h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #BE185D !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
}

/* Body text */
.contact-us-text-form>div.text p {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    line-height: 1.6 !important;
}

/* Links in text */
.contact-us-text-form>div.text p a {
    color: #BE185D !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
}

/* Form labels */
.contact-us-text-form>div.form ul li label {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    text-transform: none !important;
    line-height: normal !important;
    margin-bottom: 10px !important;
}

/* Required asterisk */
.contact-us-text-form>div.form ul li label span {
    color: #BE185D !important;
}

/* Inputs */
.contact-us-text-form>div.form ul li input {
    display: flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: 51px !important;
    padding: 16px !important;
    border-radius: 8px !important;
    border: 1px solid #E5E7EB !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', Montserrat, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: normal !important;
}

/* Textarea */
.contact-us-text-form>div.form ul li textarea {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px !important;
    border-radius: 8px !important;
    border: 1px solid #E5E7EB !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', Montserrat, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

/* Placeholders */
.contact-us-text-form>div.form ul li input::placeholder,
.contact-us-text-form>div.form ul li textarea::placeholder {
    color: #9CA3AF !important;
}

/* Focus state */
.contact-us-text-form>div.form ul li input:focus,
.contact-us-text-form>div.form ul li textarea:focus {
    outline: none !important;
    border-color: #BE185D !important;
}

/* Submit button */
.contact-us-text-form>div.form ul li a.submit-form {
    width: 100% !important;
    max-width: 360px !important;
    height: 50px !important;
    line-height: 50px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
    background: #BE185D !important;
    color: #fff !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24) !important;
    transition: .3s !important;
    cursor: pointer !important;
}

.contact-us-text-form>div.form ul li a.submit-form:hover {
    background: #881337 !important;
    color: #fff !important;
    transition: .3s !important;
}

/* "I'm not a robot" checkbox */
.contact-us-text-form>div.form ul li.mens-kyk span {
    border-color: #BE185D !important;
    border-radius: 4px !important;
}

.contact-us-text-form>div.form ul li.mens-kyk span.jip:after {
    background-color: #BE185D !important;
}

.contact-us-text-form>div.form ul li.mens-kyk.error-mens span {
    border-color: #BE185D !important;
}

/* ---------- RULES PAGE ---------- */

main.content .intro.display-into .inner p {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* Remove box-shadow and add bottom padding on rules page */
main.rules.gray-bg {
    box-shadow: none !important;
    padding-bottom: 40px !important;
}

/* No gap between last element and footer */
main.rules .cta-box {
    margin-bottom: 0 !important;
}

/* Switch to flexbox so columns sit cleanly regardless of surrounding <p> siblings */
.list-and-add {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: 40px;
}

.list-and-add>p {
    width: 100%;
    flex: 0 0 100%;
}

.list-and-add ol {
    float: none !important;
    flex: 0 0 calc(50% - 24px);
    width: auto !important;
    padding: 0 0 0 22px !important;
    margin: 0 !important;
}

/* Left column — gap on right */
.list-and-add ol:nth-of-type(1) {
    margin-right: 24px !important;
    padding-right: 16px !important;
    border-right: 1px solid #F3E8EE;
}

/* Right column — gap on left */
.list-and-add ol:nth-of-type(2) {
    margin-left: 24px !important;
}

/* Item spacing & line height */
.list-and-add ol li {
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
}

/* Link colors */
.list-and-add ol li a,
.list-and-add>p a {
    color: #BE185D !important;
    text-decoration: underline;
}

@media (max-width: 820px) {
    .list-and-add ol {
        flex: 0 0 100% !important;
        margin: 0 !important;
        border-right: none !important;
    }

    .list-and-add ol:nth-of-type(1) {
        margin-right: 0 !important;
        padding-right: 0 !important;
        border-right: none !important;
    }

    .list-and-add ol:nth-of-type(2) {
        margin-left: 0 !important;
    }
}

/* ---------- HOW IT WORKS PAGE ---------- */

/* Page h1 — exact selector match to beat legacy main.content .intro .inner h1 { color: #af2d2a } */
main.content .intro .inner h1 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 34px !important;
    color: #0A4A6C !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15 !important;
    margin-bottom: 20px;
    text-align: center;
}

/* Intro: single centered column, no two-column split */
main.content .intro .inner .hiw-intro-text {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    float: none !important;
}

main.content .intro .inner .hiw-tc {
    margin-top: 16px;
    font-size: 14px !important;
    color: #6B7280 !important;
}

main.content .intro .inner .hiw-tc a {
    color: #BE185D !important;
    font-weight: 600 !important;
    text-decoration: underline;
}

/* Intro body text */
main.content .intro p {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    line-height: 1.6 !important;
}

main.content .intro a {
    color: #BE185D !important;
    font-weight: 600 !important;
}

/* Steps section heading — matches homepage .home-intro .inner h2 pattern */
main.content .steps h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2 !important;
    padding-top: 40px;
    margin-bottom: 8px;
}

/* Step item titles (h5) */
main.content .steps ul li h5 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #BE185D !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

/* Step item body text */
main.content .steps ul li p {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    line-height: 1.65 !important;
}

main.content .steps ul li p a {
    color: #BE185D;
    font-weight: 600;
    text-decoration: underline;
}

/* Step numbered circle */
main.content .steps ul li:after {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    background-color: #fff !important;
    border-color: #BE185D !important;
    color: #BE185D !important;
    font-weight: 700 !important;
}

/* Step vertical line */
main.content .steps ul li:before {
    background-color: #BE185D !important;
}

/* CTA boxes — styled to match .cc2-become-supporter */
.cta-box {
    position: relative !important;
    background: #BE185D !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    max-width: 1360px !important;
    width: calc(100% - 80px) !important;
    margin: 0 auto 40px !important;
    box-sizing: border-box !important;
    padding: 40px 40px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
    /* remove float-based layout */
    float: none !important;
}

/* Pattern overlay — matches cc2-become-supporter__bg::after */
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/banners/become-supporter-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    pointer-events: none;
    z-index: 0;
}

.cta-box .container {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.cta-box p {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #fff !important;
    text-shadow: 0 8px 16px rgba(89, 2, 41, 0.24) !important;
    margin: 0 0 24px !important;
}

.cta-box a.cta,
.cta-box a.enter-close-btn {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #BE185D !important;
    border-radius: 16px !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 270px !important;
    max-width: 100% !important;
    height: 50px !important;
    padding: 0 16px !important;
    box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24) !important;
    text-decoration: none !important;
}

.prizes-cta a.cta {
    width: 270px !important;
}

.cta-box a.enter-close-btn {
    background: rgba(252, 231, 243, 0.75) !important;
    color: #9F1239 !important;
}

.cta-box a.cta:hover {
    color: #054068 !important;
    transition: .3s !important;
}

@media (max-width: 820px) {
    .cta-box {
        width: calc(100% - 40px) !important;
        border-radius: 12px !important;
    }

    .cta-box p {
        font-size: 24px !important;
    }
}

/* First CTA banner on how-it-works page */
.cta-box.hiw-banner-top {
    margin-top: 40px !important;
}

/* Bottom CTA banner on how-it-works page */
.cta-box.hiw-banner-bottom {
    margin-top: 40px !important;
}

/* Feature cards — same background as hiw-tagline (page default) */
.hiw-feature-cards {
    background: transparent;
}

.hiw-feature-cards .inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px 50px;
}

.hiw-feature-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 0 70px;
}

/* Card shell — reuses cc2-supporter-card__bg for the pink pattern background */
.hiw-feature-card {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(89, 2, 41, 0.24);
    overflow: hidden;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

/* Content sits above the bg layer */
.hiw-feature-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Icon circle — matches cc2-entry-pill__icon */
.hiw-feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cg-blue, #0A4A6C);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex: 0 0 auto;
}

.hiw-feature-card__icon .cc2-entry-pill__iconImg {
    width: 40px;
    height: 40px;
}

/* Puzzle icon sizing inside the circle */
.hiw-feature-card__icon .cc2-figma-icon {
    width: 40px;
    height: 40px;
}

.hiw-feature-card__icon .cc2-figma-icon--puzzle .cc2-figma-icon__part--a {
    left: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
}

/* Card title */
.hiw-feature-card__title {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cc-primary-500, #BE185D);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 16px;
}

/* List */
.hiw-feature-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.hiw-feature-card__list li {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--cg-charcoal-ink, #1F2937);
    text-align: left;
}

.hiw-feature-card__list li img {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 1100px) {
    .hiw-feature-cards__grid {
        padding: 0;
    }
}

@media (max-width: 900px) {
    .hiw-feature-cards .inner {
        padding: 30px 20px 40px;
    }

    .hiw-feature-cards__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Tagline row */
.hiw-tagline {
    text-align: center;
    padding: 32px 20px;
    margin: 0;
}

.hiw-tagline h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2 !important;
    margin: 0;
    text-align: center;
}

/* ---------- HOW TO VOTE — CENTERED MODAL ---------- */

/* Tab button (fixed on side) — keep original colours */

/* Dark overlay */
.how-to-vote-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
}

.how-to-vote-overlay.open {
    display: block;
}

/* Modal card — centered */
.how-to-vote {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    right: auto;
    bottom: auto;
    width: 400px;
    max-width: 94vw;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 24px 20px;
    box-sizing: border-box;
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.how-to-vote.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    right: auto;
}

/* Header row: title + close button */
.htv-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
}

.how-to-vote .htv-header h3 {
    font-family: 'Work Sans', 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #BE185D;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.04em;
    cursor: default;
}

.htv-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    align-self: flex-start;
    flex-shrink: 0;
    margin-left: 10px;
}

.htv-close:hover {
    background: #fce7f3;
}

/* Neulis Neue — map weight 600 to Bold (closest available file) */
@font-face {
    font-family: 'Neulis Neue';
    src: url('../fonts/neulis-neue/NeulisNeue-Bold.woff2') format('woff2'),
        url('../fonts/neulis-neue/NeulisNeue-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Info box */
.htv-info {
    background: rgba(10, 74, 108, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.htv-info h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 8px;
    color: #0A4A6C;
    text-transform: uppercase;
}

.htv-info p {
    font-family: 'Work Sans', 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    color: #0A4A6C;
    margin: 0;
}

.htv-info p a {
    color: #BE185D;
    font-weight: 700;
}

/* Option rows */
.htv-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.htv-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f3e8ee;
}

.htv-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.htv-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.htv-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.htv-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.htv-text h4 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    color: #DB2777;
    margin: 0;
    text-transform: uppercase;
}

.htv-text p {
    font-family: 'Work Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    color: #4B5563;
    margin: 0;
}

/* Hide the old close arrow in h3 - no longer needed */
.how-to-vote h3 svg,
.how-to-vote h3 span.divider {
    display: none;
}

/* Mobile */
@media (max-width: 640px) {
    .how-to-vote {
        width: 94vw;
        top: 50%;
        bottom: auto;
        border-radius: 16px;
        padding: 20px 18px 16px;
    }

    .how-to-vote.open {
        bottom: auto;
    }

    .htv-text h4 {
        font-size: 20px;
    }

    .htv-text p {
        font-size: 14px;
    }
}

/* ---------- USER ZONE HEADER (scoped to body.userzone only) ---------- */

body.userzone {
    padding-left: 0;
}

body.userzone header.site-header {
    background: #0A4A6C !important;
}

body.userzone header.site-header .header-top {
    background: #054068 !important;
    height: 40px !important;
}

body.userzone header.site-header .header-top nav>a,
body.userzone header.site-header .header-top nav>label,
body.userzone header.site-header .header-top nav>span a {
    color: #F3E8EE !important;
}

body.userzone header.site-header .header-top nav>a:hover {
    color: #BE185D !important;
}

body.userzone header.site-header .header-top nav>span a {
    background-color: #BE185D !important;
}

body.userzone header.site-header .header-top nav>span a:hover {
    background-color: #881337 !important;
}

/* Header bottom — white bg, pink nav strip */
body.userzone header.site-header .header-bottom {
    background-color: #fff !important;
    box-shadow: none !important;
}

body.userzone header.site-header .site-logo svg.desktop-logo {
    width: 296px;
    height: 66px;
}

/* Nav bar — pink gradient */
body.userzone header.site-header .header-bottom nav {
    background: #BE185D !important;
    background: linear-gradient(to right, #BE185D 0%, #9D174D 100%) !important;
    filter: none !important;
}

body.userzone header.site-header .header-bottom nav:before {
    border-right-color: #BE185D !important;
}

body.userzone header.site-header .header-bottom nav>ul>li>a {
    color: #fff !important;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
}

/* Dropdown */
body.userzone header.site-header .header-bottom nav>ul>li.dropdown div ul li a {
    color: #BE185D !important;
}

body.userzone header.site-header .header-bottom nav>ul>li.dropdown div ul li a:hover {
    color: #0A4A6C !important;
}

/* ---------- USERZONE LAYOUT ---------- */

.userzone {
    background-color: transparent !important;
}

/* ---------- USERZONE NAV (sidebar) ---------- */

.userzone-nav {
    background-color: #0A4A6C !important;
}

.userzone-nav .header h3 {
    color: #fff !important;
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
}

.userzone-nav .header h3 span {
    color: #F3E8EE !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    text-transform: none !important;
}

.userzone-nav ul li a {
    color: #F3E8EE !important;
    font-family: 'Work Sans', sans-serif !important;
}

.userzone-nav ul li a span {
    background-color: rgba(255, 255, 255, 0.10) !important;
}

.userzone-nav ul li a span svg path,
.userzone-nav ul li a span svg g path {
    fill: #F3E8EE !important;
    transition: 0.3s !important;
}

.userzone-nav ul li a:hover,
.userzone-nav ul li a.active {
    background: #BE185D !important;
    background: linear-gradient(to right, #BE185D 0%, #9D174D 100%) !important;
    filter: none !important;
    transition: 0.3s !important;
}

.userzone-nav ul li a:hover span,
.userzone-nav ul li a.active span {
    background-color: transparent !important;
}

.userzone-nav ul li a:hover span svg path,
.userzone-nav ul li a.active span svg path,
.userzone-nav ul li a:hover span svg g path,
.userzone-nav ul li a.active span svg g path {
    fill: #fff !important;
}

.userzone-nav ul li a.active:after {
    display: none !important;
}

/* Mobile nav */
.userzone-mobile-nav {
    background: #0A4A6C !important;
}

.userzone-mobile-nav p {
    color: #fff !important;
    font-family: 'Work Sans', sans-serif !important;
}

.userzone-mobile-nav a span {
    background-color: #fff !important;
}

/* ---------- DASHBOARD UPDATE SECTION (verify mobile / change password) ---------- */

.welcome-dashboard-update {
    background: #F8FAFC !important;
    border-bottom: 1px solid #F3E8EE !important;
    padding: 24px 36px !important;
}

.dashboard-displays .dashboard-update-mobile,
.dashboard-displays .dashboard-update-password {
    background: #fff !important;
    border: 1px solid #F3E8EE !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(89, 2, 41, 0.08) !important;
    padding-bottom: 25px;
}

.dashboard-displays .dashboard-update-mobile>div,
.dashboard-displays .dashboard-update-password>div {
    padding: 20px 24px !important;
}

.dashboard-displays .dashboard-update-mobile>div p,
.dashboard-displays .dashboard-update-password>div p {
    color: #1F2937 !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 14px !important;
}

/* Phone input row */
.dashboard-form-verify-phone-number {
    gap: 8px !important;
}

.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number div input,
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number span input,
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number div select,
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number span select {
    height: 44px !important;
    border-radius: 8px !important;
    border: 1px solid #E5E7EB !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 14px !important;
    color: #1F2937 !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
}

/* Flag/country dropdown — keep original compact dimensions, just clean up border */
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number div .select-dropdown-holder,
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number span .select-dropdown-holder {
    border: 1px solid #E5E7EB !important;
    background: #F8FAFC !important;
}

/* Telephone input — wider */
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number input#mobile_telephone,
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number input.mobile_telephone {
    width: 160px !important;
    min-width: 160px !important;
}

/* Send / OTP submit button */
input.update.mobile-send {
    background: #BE185D !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    height: 44px !important;
    padding: 0 20px !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background .3s !important;
}

input.update.mobile-send:hover {
    background: #881337 !important;
}

/* Change password button */
.dashboard-update-password a.update {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #BE185D !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    height: 44px !important;
    padding: 0 24px !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: background .3s !important;
    line-height: 1 !important;
    box-shadow: 0 4px 10px rgba(89, 2, 41, 0.20) !important;
}

.dashboard-update-password a.update:hover {
    background: #881337 !important;
}

/* Icons in update section */
.dashboard-update-icon {
    filter: hue-rotate(330deg) saturate(2) brightness(0.7) !important;
}

/* ---------- USERZONE MOBILE NAV (duplicate block removed, consolidated above) ---------- */

/* ---------- USERZONE MOBILE NAV ---------- */

.userzone-mobile-nav {
    background: #0A4A6C !important;
}

.userzone-mobile-nav p {
    color: #fff !important;
    font-family: 'Work Sans', sans-serif !important;
}

.userzone-mobile-nav a span {
    background-color: #fff !important;
}

/* ---------- DASHBOARD: DISPLAY CARDS — info link sizing ---------- */

.welcome-dashboard-displays>.inner>.displays>div>.info a {
    height: 45px !important;
    line-height: 45px !important;
    max-width: 150px !important;
}

/* ---------- COMPETITION STATS ---------- */

.competition-stats .inner .countdown {
    background-color: #BE185D !important;
}

/* ---------- DASHBOARD: ENTRIES ---------- */

.entries-competition>.inner>.competition-entries-holder>h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
}

.entries-competition>.inner>.competition-entries-holder>ul>li {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 16px rgba(89, 2, 41, 0.12) !important;
}

.entries-competition>.inner>.competition-entries-holder>ul>li .image h3 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.entries-competition .competition-entries-holder > ul > li .image .status-pay-now {
    display: block;
    clear: both;
    width: fit-content;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 12px;
    border-radius: 8px;
    background: #BE185D;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
}

.entries-competition .competition-entries-holder > ul > li .image .status-pay-now:hover {
    background: #EC4899;
}

/* Entry photos: 1080×1350 (4:5) — matches Uploadcare crop + dashboard CDN URLs */
.entries-competition .inner .competition-entries-holder ul li .image img,
.entries-competition .inner .competition-entries-holder.upcoming ul li .image img {
    width: 200px !important;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: 1080 / 1350 !important;
    object-fit: cover;
    border-radius: 12px !important;
}

@media (max-width: 1660px) {
    .entries-competition .inner .competition-entries-holder ul li .image img,
    .entries-competition .inner .competition-entries-holder.upcoming ul li .image img {
        width: 160px !important;
    }
}

@media (max-width: 1390px) {
    .entries-competition .inner .competition-entries-holder ul li .image img,
    .entries-competition .inner .competition-entries-holder.upcoming ul li .image img {
        width: 150px !important;
    }
}

@media (max-width: 1150px) {
    .entries-competition .inner .competition-entries-holder ul li .image img,
    .entries-competition .inner .competition-entries-holder.upcoming ul li .image img {
        width: 200px !important;
    }
}

@media (max-width: 890px) {
    .entries-competition .inner .competition-entries-holder ul li .image img,
    .entries-competition .inner .competition-entries-holder.upcoming ul li .image img {
        width: min(166px, 50vw) !important;
    }
}

@media (max-width: 640px) {
    .entries-competition .inner .competition-entries-holder ul li .image img,
    .entries-competition .inner .competition-entries-holder.upcoming ul li .image img {
        width: min(200px, 70vw) !important;
    }
}

/* Status badges */
.entries-competition .status-3,
.entries-competition .status-6 {
    /* background: #BE185D !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 6px; */
}

/* Three-dot menu icon */
.entries-competition .actions svg path[fill="#b62d2a"],
.previous-competitions .actions svg path[fill="#b62d2a"] {
    fill: #BE185D !important;
}

/* Actions dropdown links */
.entries-competition .actions>div a,
.previous-competitions .actions>div a {
    color: #0A4A6C !important;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 500 !important;
}

.entries-competition .actions>div a:hover,
.previous-competitions .actions>div a:hover {
    color: #BE185D !important;
}

/* ---------- DASHBOARD: UPDATE BANNERS ---------- */

.welcome-dashboard-update {
    background: #FDF2F8 !important;
    border-bottom: 1px solid #F3E8EE !important;
}

.dashboard-displays .dashboard-update-mobile>div p,
.dashboard-displays .dashboard-update-password>div p {
    color: #1F2937 !important;
    font-family: 'Work Sans', sans-serif !important;
}

/* Verify phone input */
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number div input,
.dashboard-displays .dashboard-update-mobile .dashboard-form-verify-phone-number span input {
    height: 44px !important;
    border-radius: 8px !important;
    border: 1px solid #E5E7EB !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 14px !important;
    color: #1F2937 !important;
}

/* ---------- DASHBOARD: UPDATE / CTA BUTTONS ---------- */

.dashboard-update-mobile .update,
.dashboard-update-password .update,
.welcome-dashboard .update,
.welcome-dashboard-displays .update {
    background: #BE185D !important;
    color: #fff !important;
    border-radius: 16px !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    border: none !important;
    height: 50px !important;
    box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24) !important;
    transition: background .3s !important;
}

.dashboard-update-mobile .update:hover,
.dashboard-update-password .update:hover,
.welcome-dashboard .update:hover,
.welcome-dashboard-displays .update:hover {
    background: #881337 !important;
    color: #fff !important;
}

.dashboard-update-mobile .update.close {
    line-height: 30px !important;
    height: auto !important;
}

/* ---------- DASHBOARD: DISPLAY CARDS ---------- */

.welcome-dashboard-displays>.inner>.displays>div {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 16px rgba(89, 2, 41, 0.12) !important;
}

.welcome-dashboard-displays>.inner>.displays>div>.text>div h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.welcome-dashboard-displays>.inner>.displays>div>.text>div p,
.welcome-dashboard-displays>.inner>.displays>div>.text>div p a {
    color: #1F2937 !important;
    font-family: 'Work Sans', sans-serif !important;
}

/* ---------- DASHBOARD: PREVIOUS COMPETITIONS ---------- */

.previous-competitions>.inner>h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
}

.previous-competitions .listing ul li {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 16px rgba(89, 2, 41, 0.12) !important;
}

.previous-competitions .listing ul li h3 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
}

.previous-competitions .listing ul li .results h4 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #1F2937 !important;
}

.previous-competitions .listing ul li .stats h4 {
    color: #6B7280 !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.previous-competitions .listing ul li .stats span {
    color: #BE185D !important;
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* ---------- DASHBOARD: POPUPS ---------- */

.remove-popup>div,
.update-popup>div,
.message-modal>div,
.logout-popup>div {
    border-radius: 16px !important;
    box-shadow: 0 16px 40px rgba(89, 2, 41, 0.20) !important;
    box-sizing: border-box;
    padding: 0 20px 30px;
}

.front-competition-entry .inner .competition-entry-form .step-3>div {
    overflow: visible;
}

.front-competition-entry .inner .competition-entry-form .step-2 .image-uploads ul li .delete-image {
    position: absolute;
    width: 19px;
    height: 19px;
    line-height: 16px;
    display: block;
    color: #fff;
    background-color: #be185d;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    box-sizing: border-box;
    padding-left: 1px;
    top: 5px;
    right: 5px;
    text-align: center;
    cursor: pointer;
}

.front-competition-entry .inner .competition-entry-form .step-2 .image-uploads ul li.new {
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 13px;
    color: #be185d;
    cursor: pointer;
}

.front-competition-entry .inner .competition-entry-form .step-2 .image-uploads ul li.new span {
    width: 19px;
    height: 19px;
    line-height: 18px;
    display: block;
    color: #fff;
    background-color: #be185d;
    border-radius: 50%;
    margin: 14px auto 5px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
    padding-left: 1px;
}

/* .front-competition-entry .inner .header h1 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
    margin: 20px 0 15px;
    line-height: 33px;
    padding: 8px 20px;
    background-color: transparent;
} */

.front-competition-entry .inner .competition-entry-form .step-2 .text p span {
    background-color: #be185d;
    color: #fff;
    border-radius: 50%;
    padding: 0 4px;
}

.front-competition-entry .inner .competition-entry-form .step-2 .text h2,
.front-competition-entry .inner .competition-entry-form .step-3 ul li label a {
    color: #be185d;
}

.front-competition-entry .inner .competition-entry-form .step-3 ul li span.checked::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 3px;
    background-color: #be185d;
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 1;
}

.confirm-buttons {
    display: flex;
    gap: 10px;
    padding: 0;
}

.remove-popup h2,
.update-popup h2,
.message-modal h2,
.logout-popup h2,
.logout-popup>div h2,
.update-popup>div h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #0A4A6C !important;
    margin: 20px 0 15px !important;
    line-height: 33px !important;
    padding: 8px 0 !important;
    background-color: transparent !important;
    text-align: left !important;
}

.remove-popup p,
.update-popup p,
.message-modal p,
.logout-popup p {
    font-family: 'Work Sans', sans-serif !important;
    color: #1F2937 !important;
}

.remove-popup a.remove,
.logout-popup a.logout-confirm,
.competition-entry-form .step-3>div .next,
.update-popup a.close {
    border-radius: 16px !important;
    background: #BE185D !important;
    box-shadow: rgba(89, 2, 41, 0.24) 0px 8px 16px 0px !important;
    width: 100% !important;
    height: 50px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 50px !important;
    transition: 0.15s !important;
    text-transform: uppercase !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.remove-popup a.remove:hover,
.logout-popup a.logout-confirm:hover,
.competition-entry-form .step-3>div .next:hover,
.update-popup a.close:hover {
    color: #fff !important;
    background: #881337 !important;
    transition: 0.15s !important;
    text-decoration: none !important;
}

.remove-popup a.cancel,
.message-modal a.close,
.logout-popup a.cancel {
    width: 100% !important;
    height: 50px !important;
    color: #BE185D !important;
    text-align: center !important;
    font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 50px;
}


/* ========================================================
   PROFILE PAGE
   ======================================================== */

/* Page heading */
.profile-container .edit-profile h1 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    color: #0A4A6C !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
}

/* Labels */
.edit-profile ul li label {
    font-family: 'Work Sans', sans-serif !important;
    color: #374151 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 8px !important;
}

.edit-profile ul li label a {
    color: #BE185D !important;
}

/* Text / email / tel / password inputs */
.edit-profile ul li>input {
    height: 44px !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 8px !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    padding: 0 14px !important;
    transition: border-color .2s, box-shadow .2s !important;
}

.edit-profile ul li>input:focus {
    border-color: #BE185D !important;
    box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.12) !important;
    background: #fff !important;
    outline: none !important;
}

.edit-profile ul li>input:disabled {
    background: #F1F5F9 !important;
    color: #9CA3AF !important;
    border-color: #E5E7EB !important;
    cursor: not-allowed !important;
}

.edit-profile ul li>input::placeholder {
    color: #CBD5E1 !important;
}

/* Selects */
.edit-profile ul li>select {
    height: 44px !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 8px !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    padding: 0 14px !important;
    appearance: auto !important;
    transition: border-color .2s !important;
}

.edit-profile ul li>select:focus {
    border-color: #BE185D !important;
    box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.12) !important;
    outline: none !important;
}

/* Help icon */

.edit-profile ul li .info,
.front-competition-entry .inner .competition-entry-form .step-1 ul li .info {
    bottom: 10px !important;
}

.edit-profile ul li .info svg #Path_299,
.front-competition-entry .inner .competition-entry-form .step-1 ul li .info svg #Path_299 {
    fill: #9CA3AF !important;
}

.edit-profile ul li .info:hover svg #Path_299,
.front-competition-entry .inner .competition-entry-form .step-1 ul li .info:hover svg #Path_299 {
    fill: #BE185D !important;
}

.edit-profile ul li .info div,
.front-competition-entry .inner .competition-entry-form .step-1 ul li .info div {
    background-color: #0A4A6C !important;
}

/* Checkbox */
.edit-profile ul li span.checkbox,
.front-competition-entry .inner .competition-entry-form .step-1 ul li span.checkbox {
    background-color: #E5E7EB !important;
    border-radius: 4px !important;
}

.edit-profile ul li span.checked:before,
.front-competition-entry .inner .competition-entry-form .step-1 ul li span.checked:before {
    background-color: #BE185D !important;
    border-radius: 3px !important;
}

/* Error messages */
.edit-profile ul li .error,
.front-competition-entry .inner .competition-entry-form .step-1 ul li .error {
    color: #DC2626 !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 11px !important;
}

/* Update (save) button */
.edit-profile .update {
    border-radius: 16px;
    background: var(--cc-primary-500, #BE185D);
    box-shadow: rgba(89, 2, 41, 0.24) 0px 8px 16px 0px;
    height: 50px;
    color: var(--cg-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
    transition: 0.15s;
    text-transform: uppercase;
    padding-left: 25px;
    padding-right: 25px;
    text-decoration: none;
    box-sizing: border-box;
}

.edit-profile .update:hover {
    color: var(--cg-white);
    background: var(--cc-primary-700, #881337);
    transition: 0.15s;
    text-decoration: none;
}

/* Cancel button */
.edit-profile .cancel {
    width: auto;
    height: 50px;
    color: var(--cc-primary-500, #BE185D);
    text-align: center;
    font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    background-color: transparent;
}

.edit-profile .cancel:hover {
    color: var(--cc-primary-700, #881337);
    background-color: transparent;
}

/* ---- Profile-page popups (Update Mobile / Submit OTP) ---- */

.popup.edit-mobile>.inner,
.popup.submit-mobile-update-otp>.inner {
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.popup.edit-mobile>.inner>div,
.popup.submit-mobile-update-otp>.inner>div {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 36px 40px !important;
    width: 100% !important;
    max-width: 420px !important;
    box-shadow: 0 20px 50px rgba(10, 74, 108, 0.18) !important;
    position: relative !important;
}

.popup.edit-mobile>.inner>div h2,
.popup.submit-mobile-update-otp>.inner>div h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    color: #0A4A6C !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 8px !important;
}

.popup.edit-mobile>.inner>div p,
.popup.submit-mobile-update-otp>.inner>div p {
    font-family: 'Work Sans', sans-serif !important;
    color: #6B7280 !important;
    font-size: 14px !important;
    margin: 0 0 20px !important;
}

.popup.edit-mobile>.inner>div input,
.popup.submit-mobile-update-otp>.inner>div input {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: 44px !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 8px !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    color: #1F2937 !important;
    padding: 0 14px !important;
    margin-bottom: 16px !important;
}

.popup.edit-mobile>.inner>div input:focus,
.popup.submit-mobile-update-otp>.inner>div input:focus {
    border-color: #BE185D !important;
    box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.12) !important;
    outline: none !important;
}

.popup.edit-mobile>.inner>div a.update-number,
.popup.submit-mobile-update-otp>.inner>div a.submit-otp {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    line-height: 48px !important;
    text-align: center !important;
    background: linear-gradient(to right, #BE185D 0%, #9D174D 100%) !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background .25s !important;
}

.popup.edit-mobile>.inner>div a.update-number:hover,
.popup.submit-mobile-update-otp>.inner>div a.submit-otp:hover {
    background: linear-gradient(to right, #9D174D 0%, #881337 100%) !important;
}

.popup.edit-mobile>.inner>div a.close {
    position: absolute !important;
    top: 16px !important;
    right: 20px !important;
    width: 28px !important;
    height: 28px !important;
    line-height: 28px !important;
    text-align: center !important;
    color: #9CA3AF !important;
    font-size: 16px !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    background: #F3F4F6 !important;
}

.popup.edit-mobile>.inner>div a.close:hover {
    background: #E5E7EB !important;
    color: #374151 !important;
}

.popup.edit-mobile>.inner>div .error,
.popup.submit-mobile-update-otp>.inner>div .error {
    color: #DC2626 !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 12px !important;
    display: block !important;
    margin-top: 8px !important;
}

/* ---- Message modal (profile success) ---- */

.profile-container~.message-modal>div h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
}

.message-modal>div a.close {
    background: linear-gradient(to right, #BE185D 0%, #9D174D 100%) !important;
    color: #fff !important;
    border-radius: 10px !important;
    filter: none !important;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 700 !important;
}

/* ========================================================
   COMPETITION LOGIN PAGE
   ======================================================== */

/* Fill space between global header and footer; center the card (mobile + desktop) */
body.page-login {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex !important;
    flex-direction: column !important;
}

body.page-login > noscript {
    flex: 0 0 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Inline scripts sit between header and .login-page-fill — remove from flex layout */


body.page-login > header.site-header {
    flex: 0 0 auto;
}

body.page-login > .login-page-fill {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Floor height so centering works even if flex distribution fails (tall header, extra siblings) */
    min-height: max(52vh, calc(100vh - 300px), calc(100dvh - 300px), calc(100svh - 300px));
    box-sizing: border-box;
    padding: 16px 10px 28px;
}

body.page-login > .login-page-fill > main.login-container {
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto !important;
    margin-bottom: auto !important;
}

/* Figma override uses position:absolute without height — breaks vertical centering */
body.page-login > .login-page-fill > main.login-container.popup-activated {
    position: static !important;
    left: auto !important;
    right: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.page-login > footer.site-footer,
body.page-login > footer.mobile-footer {
    flex: 0 0 auto;
}

/*
 * Fixed UI sits between header and .login-page-fill but still participates in body flex in some browsers.
 * Collapse flex cross-size only; keep position:fixed + overflow visible so UI still paints.
 * Do not target .popup.show / overlays .open — that would clip modals.
 */
body.page-login > a.how-to-vote-btn {
    flex: 0 0 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    align-self: stretch;
}

body.page-login > .how-to-vote:not(.open) {
    flex: 0 0 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    align-self: stretch;
}

body.page-login > .popup:not(.show) {
    flex: 0 0 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    align-self: stretch;
}

@media (min-width: 900px) {
    body.page-login > .login-page-fill {
        min-height: max(50vh, calc(100vh - 260px), calc(100dvh - 260px), calc(100svh - 260px));
    }
}

/* Page background */
.login-container {
    background: #F8FAFC !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0px 10px !important;
    box-sizing: border-box !important;
}

.login-container .login {
    width: 100% !important;
    margin-top:50px !important;
}

/* Card */
.login-container .login>.inner {
    max-width: 460px !important;
    margin: 0 auto !important;
    background: #fff !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* Form wrapper */
.login-container .login>.inner>.register-login-form {
    width: 100% !important;
    padding: 0 !important;
    float: none !important;
}

/* Icon at top */
.login-container .login-icon {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

/* Heading */
.login-container .login .register-login-form h2 {
    margin: 0 0 32px !important;
}

/* Field list */
.login-container .login .register-login-form ul {
    text-align: left !important;
}

.login-container .login .register-login-form ul li {
    padding: 0 !important;
    margin-bottom: 25px !important;
}

/* Labels */
.login-container .login .register-login-form ul li label {
    display: block !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 8px !important;
}

.login-container .login .register-login-form ul li label .req {
    color: #BE185D !important;
}

/* Inputs */
.login-container .login .register-login-form ul li input {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: 51px !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 8px !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    padding: 0 16px !important;
    transition: border-color .2s, box-shadow .2s !important;
}

.login-container .login .register-login-form ul li input:focus {
    border-color: #BE185D !important;
    box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.12) !important;
    background: #fff !important;
    outline: none !important;
}

.login-container .login .register-login-form ul li input::placeholder {
    color: #CBD5E1 !important;
    font-weight: 400 !important;
}

/* Error */
.login-container .login .register-login-form ul li .error {
    color: #DC2626 !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 11px !important;
    margin-top: 4px !important;
}

/* Actions row: forgot password left, login button right */
.login-container .login .register-login-form .login-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-top: 28px !important;
    padding-top: 0 !important;
    overflow: visible !important;
}

/* Forgot password link */
.login-container .login .register-login-form .forgot-password {
    display: inline-flex !important;
    align-items: center !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #BE185D !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    margin: 0 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.login-container .login .register-login-form .forgot-password:hover {
    color: #9D174D !important;
}


/* Back error */
.login-container .login .register-login-form .back-error p {
    color: #DC2626 !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 13px !important;
    text-align: center !important;
}

.entry-register-login[rel="login"]>div .register-login-form h2 {
    text-align: center;
    margin-top: 10px;
}

.entry-register-login>div .register-login-form h2.new-steps__title {
    color: var(--cc-primary-500, #BE185D);
    font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 30px;
    text-transform: none;
}

.login-container .login>div .register-login-form h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
}

.login-container .login .register-login-form h2 {
    margin: 0 0 32px !important;

}

.entry-register-login>div .register-login-form h2 {
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 10px;
}

@media (max-width: 800px) {
    .login-container .login .register-login-form .new-steps__title {
        display: block;
    }
}

@media (max-width: 1150px) {
    .page-dashboard .welcome-dashboard-displays {
        padding: 30px 36px 0 30px;
    }
}

.login-container .login>div .back-error {
    padding: 0 !important;
    margin-bottom: 15px !important;
    margin-top: 10px !important;
}

/* ---- Forgot password popup ---- */

.popup.forgot-password>div .register-login-form ul li {
    margin: 0 0 30px !important;
}

.popup.forgot-password>.inner {
    max-width: 460px !important;
    border-radius: 16px !important;
    padding: 40px 20px 30px !important;
}

.popup.forgot-password a.close {

    width: 36px !important;
    height: 36px !important;
    background-image: url(../images/2026-close.svg) !important;
    top: 10px !important;
    right: 10px !important;
    cursor: pointer !important;
    background-size: 16px;
    background-position: center center !important;
    background-repeat: no-repeat;
    border-radius: 50%;
    transition: .15s;
}

.popup.forgot-password a.close:hover {
    box-shadow: 0 6px 6px 0 rgba(89, 2, 41, 0.24) !important;
}

.popup.forgot-password .register-login-form h2 {
    font-family: 'Neulis Neue', 'Work Sans', sans-serif !important;
    color: #BE185D !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    margin-bottom: 24px !important;
}

.popup.forgot-password .register-login-form ul li label {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 8px !important;
}

.popup.forgot-password .register-login-form ul li input {
    height: 48px !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 10px !important;
    background: #F8FAFC !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    color: #1F2937 !important;
    padding: 0 16px !important;
}

.popup.forgot-password .register-login-form ul li input:focus {
    border-color: #BE185D !important;
    box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.12) !important;
    outline: none !important;
}

.popup.forgot-password .register-login-form div .submit {
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    line-height: 50px !important;
    background: var(--cc-primary-500, #BE185D) !important;
    box-shadow: rgba(89, 2, 41, 0.24) 0px 8px 16px 0px !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    filter: none !important;
    text-align: center !important;
}

.popup.forgot-password .register-login-form div .submit:hover {
    background: var(--cc-primary-700, #881337) !important;
    box-shadow: rgba(89, 2, 41, 0.24) 0px 8px 16px 0px !important;
}

/* Cookie policy buttons hover state */
.cookie-strip .cs-buttons a:hover {
    background-color: #fff !important;
    color: #073f5e !important;
}

/* ---------- USER VOTES PAGE: BUTTONS / COLORS ---------- */
.votes-container .votes h1,
.votes-container .votes .votes-entry-details h1 {
    color: #BE185D !important;
}

.votes-container .votes .filters .filter>span,
.votes-container .votes .votes-listing ul li>span>span {
    color: #BE185D !important;
}

.votes-container .votes .filters .filter>ul li .export,
.votes-container .votes .votes-listing .show-more {
    background: #BE185D !important;
    color: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24) !important;
    border: 1px solid #BE185D !important;
}

.votes-container .votes .filters .filter>ul li .export:hover,
.votes-container .votes .votes-listing .show-more:hover {
    background: #EC4899 !important;
    color: #fff !important;
    border-color: #EC4899 !important;
}

main.content a.cta {
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .cc2-entry-pill__headline {
        font-size: 14px !important;
    }

    .cc2-entry-pill__sub {
        font-size: 12px !important;
    }
}

/* User zone: mobile footer + “More” sheet match home (figma-overrides) — user view_header does not load figma-overrides.css */
@media (max-width: 600px) {
    body.userzone .mobile-footer {
        display: block;
        position: fixed;
        background-color: #fff;
        height: 70px;
        z-index: 20;
        bottom: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
    }

    body.userzone .mobile-footer ul li:nth-child(2) {
        border-right: 0 none;
        border-left: 0 none;
    }

    body.userzone .mobile-footer ul li a {
        height: 70px;
        padding: 0;
        text-align: center;
        font-size: 12px;
        color: var(--cc-primary-500, #be185d);
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 500;
        line-height: normal;
        display: flex;
        box-sizing: border-box;
        justify-content: center;
        flex-direction: column;
    }

    body.userzone .mobile-footer ul li a svg {
        margin-bottom: 6px;
    }

    body.userzone .mobile-footer ul li a.active {
        background-color: var(--cc-primary-500, #be185d) !important;
        transition: 0.3s;
        color: var(--cg-white, #ffffff) !important;
    }

    body.userzone .mobile-footer ul li a.active svg path {
        fill: var(--cg-white, #ffffff) !important;
    }

    body.userzone .footer-more-menu {
        padding: 10px 30px 20px;
        border-radius: 16px 16px 0 0;
        background-color: var(--cc-primary-500, #be185d) !important;
    }

    body.userzone .footer-more-menu.open {
        bottom: 70px;
    }

    body.userzone .footer-more-menu .dropdown {
        padding-top: 17px;
        border-bottom: 0 none;
    }

    body.userzone .footer-more-menu .dropdown.open > a {
        color: var(--cg-white, #ffffff) !important;
        transition: 0.3s;
    }
}

/* User zone: “One entry per competition” popup matches home (figma-overrides) */
body.userzone .already-entered-popup {
    box-sizing: border-box;
}

body.userzone .already-entered-popup > div {
    max-width: 460px !important;
    width: 100%;
    box-sizing: border-box !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16) !important;
    background-color: #fff !important;
    position: relative;
    padding: 34px 20px 30px !important;
    text-align: center;
}

body.userzone .already-entered-popup > div h2 {
    width: auto !important;
    display: block !important;
    text-transform: none !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 auto 15px !important;
    background-color: transparent !important;
    background-image: none !important;
    color: var(--cg-blue, #0a4a6c) !important;
    font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
}

body.userzone .already-entered-popup > div p {
    color: var(--cg-charcoal-ink, #1f2937) !important;
    font-size: 18px !important;
    margin: 15px 0 25px 0 !important;
}

body.userzone .already-entered-popup > div a.close-already-entered-popup {
    border-radius: 16px !important;
    background: var(--cc-primary-500, #be185d) !important;
    box-shadow: rgba(89, 2, 41, 0.24) 0 8px 16px 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 50px !important;
    color: var(--cg-white, #ffffff) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 50px !important;
    transition: 0.15s !important;
    text-transform: uppercase !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    filter: none !important;
    background-image: none !important;
    display: block !important;
    cursor: pointer !important;
}

body.userzone .already-entered-popup > div a.close-already-entered-popup:hover {
    color: var(--cg-white, #ffffff) !important;
    background: var(--cc-primary-700, #881337) !important;
    text-decoration: none !important;
}

@media (max-width: 700px) {
    body.userzone .already-entered-popup > div {
        width: calc(100% - 40px) !important;
        max-width: 460px !important;
    }
    body.userzone header.site-header .site-logo svg.desktop-logo {
        width: 123px !important;
        height: 27px !important;
    }
}

/* User dashboard / profile — same CMS notices as homepage, in-flow layout */
body.userzone .userzone-notices-wrap {
    max-width: 1100px;
    margin: 16px auto 8px;
    padding: 0 20px;
    box-sizing: border-box;
}

body.userzone .userzone-notices-wrap .notices.notices--userzone {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(89, 2, 41, 0.08);
    border: 1px solid rgba(190, 24, 93, 0.12);
}

body.userzone .userzone-notices-wrap .notices.notices--userzone .notice {
    max-width: none;
}

@media (max-width: 640px) {
    body.userzone .userzone-notices-wrap {
        padding: 0 16px;
    }
}

/* Competition entry AJAX overlay — disabled sitewide */
.cute-loader,
.cute-loader.show {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}