/* Figma UI overrides (loaded after legacy mini/style.css)
   Goal: introduce a tokenized “new UI” look without requiring markup changes.
*/
@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-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;
}

/* Base */
html,
body {
  background: var(--cg-neutral-50);
}

body {
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--cg-charcoal-ink);
}

/* Figma node 1:213 — Payment details card (competition entry) */
.entry-register-login[rel="payment"] .payment-details {
  margin-top: 16px;
}

.entry-register-login>div .register-login-form div.cc2-payment-details {
  position: relative;
  border-radius: 16px;
  box-shadow: var(--cc-shadow-01);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  margin-top: 0;
}

.cc2-payment-details__bg {
  position: absolute;
  inset: 0;
  background: var(--cc-card-bg-01);
  border-radius: 16px;
}

.cc2-payment-details__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background-image: url("../images/payment-details/payment-details-bg.png");
  background-size: cover;
  background-position: center;
  opacity: .70;
  pointer-events: none;
}

.cc2-payment-details__head,
.cc2-payment-details__list,
.cc2-payment-details__foot {
  position: relative;
  z-index: 1;
}

.entry-register-login>div .register-login-form .cc2-payment-details__title {
  margin: 0;
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--cc-primary-500);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-payment-details__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cc2-payment-details__item {
  background: var(--cg-white);
  border-radius: 300px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.cc2-payment-details__check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.entry-register-login[rel="payment"]>div .register-login-form .cc2-payment-details__text {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: #d0005d;
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.entry-register-login[rel="payment"]>div .register-login-form .cc2-payment-details__foot {
  margin: 0;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
  color: var(--cg-neutral-200);
}

.entry-register-login[rel="payment"]>div .register-login-form .cc2-payment-details__foot a {
  color: var(--cc-primary-300);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.hide {
  display: none;
}

/* .show {
  display: block !important;
} */

/* Figma node 1:121 — Competition entry "new steps" bar */
.competition-entry-container .steps {
  /* hide the legacy stepper on this page */
  display: none;
}

.competition-entry-container .new-steps {
  background: var(--cc-card-bg-01);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  margin: 16px 0 0;
}

.competition-entry-container .new-steps__msg {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  color: #333;
  flex: 0 0 auto;
}

.competition-entry-container .new-steps__items {
  display: flex;
  align-items: center;
  gap: 21px;
}

.competition-entry-container .new-step {
  background: var(--cg-white);
  border-radius: 333px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 216px;
  min-height: 52px;
  box-sizing: border-box;
}

.competition-entry-container .new-step:first-child {
  width: 217px;
}

.competition-entry-container .new-step__num {
  width: 24px;
  height: 24px;
  border-radius: 249.75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--cc-primary-200);
}

.competition-entry-container .new-step--active .new-step__num {
  background: var(--cc-primary-300);
}

.competition-entry-container .new-step--done .new-step__num {
  background: var(--cg-func-primary-succ);
}

.competition-entry-container .new-step__num span {
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  color: var(--cg-white);
}

.competition-entry-container .new-step__text {
  font-size: 10px;
  line-height: 1.2;
  color: #333;
}

/* Figma secondary banner (Home) */
.secondary-banner {
  padding: 0;
}

.secondary-banner .inner {
  margin: 0 auto;
  padding: 0;
}

.cc2-secondary-banner {
  position: relative;
  width: 100%;
  height: 160px;
  /* mobile size from Figma */
  overflow: hidden;
  background: #000;
}

.cc2-secondary-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.cc2-secondary-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(236, 72, 153, 0.3);
  /* node 1:433 */
}

.cc2-secondary-banner__overlay--multiply {
  background: #ec4899;
  /* node 1:551 / 1:182 */
  mix-blend-mode: multiply;
}

.cc2-secondary-banner__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  /* matches Figma text inset */
  text-align: center;
}

.cc2-secondary-banner__content h2 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  /* mobile Figma */
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 8px 16px rgba(89, 2, 41, 0.24);
}

/* Figma node 1:545 — "You Could Be Our ... Lovebirds?" CTA banner */
.couple-prepare .inner {
  padding: 0 20px 30px 20px;
  max-width: 1260px;
  margin: auto;
}

.cc2-couple-prepare {
  background: var(--cc-primary-500);
  border-radius: var(--cc-radius-16);
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cc2-couple-prepare h2 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Make the existing `$enter_button` look like the Figma light button inside this banner */
.cc2-couple-prepare__cta>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  max-width: 100%;
  padding: 16px;
  border-radius: var(--cc-radius-16);
  box-shadow: var(--cc-shadow-01);
  background: var(--cc-card-bg-01);
  color: var(--cc-primary-500);
  font-weight: 700;
  text-decoration: none;
}

.cc2-couple-prepare__cta>a.enter-close-btn {
  background: rgba(252, 231, 243, 0.75);
  color: var(--cc-primary-600);
}

/* Figma node 1:554 — couple feedbacks header row */
.couple-feedbacks .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 40px 25px;
}

.cc2-couple-feedbacks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cc2-couple-feedbacks__left {
  max-width: 691px;
}

.cc2-couple-feedbacks__left h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--cg-blue);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-couple-feedbacks__byline {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--cc-primary-500);
}

.cc2-couple-feedbacks__right {
  display: flex;
  align-items: center;
  gap: 19px;
}

.cc2-couple-feedbacks__badge {
  width: 155px;
  height: auto;
}

.cc2-couple-feedbacks__stat {
  margin: 0;
  width: 228px;
  font-size: 14px;
  color: var(--cc-primary-500);
}

/* Figma node 1:562 — feedback slider cards */
.couple-feedbacks-slider .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 20px;
}

.cc2-feedback-slider {
  position: relative;
}

.cc2-feedback-slider__viewport {
  overflow: visible;
  position: relative;
}

.cc2-feedback-slider__viewport::before {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #f8fafc;
  content: "";
  z-index: 1;
  right: calc(100% + 10px);
}

.cc2-feedback-slider__track {
  display: flex;
  gap: 20px;
  padding: 7px 0 25px 0;
  transform: translateX(0);
  transition: transform 250ms ease;
  will-change: transform;
}

.cc2-feedback-card {
  background: var(--cg-white);
  border-radius: var(--cc-radius-8);
  box-shadow: var(--cc-shadow-01);
  padding: 16px 20px;
  flex: 0 0 278px;
  pointer-events: none;
  user-select: none;
  /* mobile card width in Figma */
}

.cc2-feedback-card__quote {
  margin: 0 0 8px;
  color: var(--cg-blue);
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
}

.cc2-feedback-card__byline {
  margin: 0;
  color: var(--cc-primary-500);
  font-size: 14px;
  line-height: 1.2;
}

.cc2-feedback-card__byline strong {
  font-weight: 400;
  /* matches Figma regular name */
}

.cc2-feedback-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--cc-shadow-01);
  color: var(--cc-primary-500);
  font-size: 28px;
  line-height: 44px;
  cursor: pointer;
  display: none;
}

.cc2-feedback-slider__nav--prev {
  left: -10px;
}

.cc2-feedback-slider__nav--next {
  right: -10px;
}

/* consolidated into the earlier @media (max-width: 900px) */

/* Figma node 1:578 — Become a supporter banner */
.become-supporter .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 40px 20px;
}

.cc2-become-supporter {
  position: relative;
  border-radius: var(--cc-radius-16);
  overflow: hidden;
  padding: 40px 10px 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cc2-become-supporter__bg {
  position: absolute;
  inset: 0;
  background: var(--cc-primary-500);
}

.cc2-become-supporter__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/banners/become-supporter-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.20;
  /* Figma overlay opacity */
}

.cc2-become-supporter__content,
.cc2-become-supporter__cta {
  position: relative;
  z-index: 1;
}

.cc2-become-supporter__content {
  text-align: center;
}

.cc2-become-supporter__content h2 {
  margin: 0;
  color: #fff;
  font-size: 54px;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 8px 16px rgba(89, 2, 41, 0.24);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-become-supporter__subtitle {
  margin: 6px 0 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* CTA uses existing `$enter_button`, re-skin like Figma cc-button-16 secondary */
.cc2-become-supporter__cta>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  max-width: 100%;
  padding: 16px;
  border-radius: var(--cc-radius-16);
  box-shadow: var(--cc-shadow-01);
  background: var(--cc-card-bg-01);
  color: var(--cc-primary-500);
  font-weight: 700;
  text-decoration: none;
}

.cc2-become-supporter__cta>a.enter-close-btn {
  background: rgba(252, 231, 243, 0.75);
  color: var(--cc-primary-600);
}

/* consolidated into the earlier @media (max-width: 900px) */

/* Figma node 1:584 — supporter levels */
.supporter-levels .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px 30px;
}

.cc2-supporter-levels__intro {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: var(--cg-charcoal-ink);
}

.cc2-supporter-levels__title {
  margin: 0 0 30px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--cg-blue);
}

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

.cc2-supporter-card {
  position: relative;
  border-radius: var(--cc-radius-16);
  box-shadow: var(--cc-shadow-01);
  overflow: hidden;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 326px;
  line-height: normal;
}

.cc2-supporter-card__bg {
  position: absolute;
  inset: 0;
  background: var(--cc-card-bg-01);
}

.cc2-supporter-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/banners/supporter-card-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.70;
  /* Figma */
}

.cc2-supporter-card__content,
.cc2-supporter-card__footnote {
  position: relative;
  z-index: 1;
}

.cc2-supporter-card__head {
  text-align: center;
}

.cc2-supporter-card__badge {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--cc-primary-500);
}

.cc2-supporter-card__plan {
  margin: 0;
  font-size: 24px;
  color: var(--cc-primary-500);
  font-weight: 700;
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-supporter-card__tagline {
  margin: 0;
  font-size: 16px;
  color: var(--cg-blue);
}

.cc2-supporter-card__price {
  margin: 5px 0 0 0;
  font-size: 34px;
  color: var(--cc-primary-500);
  font-weight: 700;
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-supporter-card__divider {
  display: block;
  width: 100%;
  height: 2px;
  margin: 10px 0;
}

.cc2-supporter-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cc2-supporter-card__list li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--cg-charcoal-ink);
}

.cc2-supporter-card__list-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.cc2-supporter-card__footnote {
  margin: 10px 0 0;
  font-size: 12px;
  text-align: center;
  color: var(--cg-blue);
}

.cc2-supporter-card__footnote a {
  color: var(--cg-blue);
  text-decoration: underline;
}

/* Figma heading font */
.main-banner .text h1,
.main-banner .text h2,
.entries-listing h1,
.entries-listing h2,
.entries-listing h3,
.home-intro h2,
.last-winner h2 {
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Utility-ish */
.cc2-shadow {
  box-shadow: var(--cc-shadow-01);
}

.cc2-radius-16 {
  border-radius: var(--cc-radius-16);
}

.cc2-radius-8 {
  border-radius: var(--cc-radius-8);
}

.site-header {
  z-index: 21;
}

.site-header .header-top nav>a {
  color: var(--cc-primary-500);
  font-weight: 600;
  margin-right: 15px;
}

.site-header .header-top nav>a:hover {
  color: var(--cc-primary-300);
}

.open_login_popup_menu:after {
  content: "";
  display: block;
  position: absolute;
  border: 0 none;
  top: 14px;
  z-index: 5;
  background: url("../images/icon-pink-arrow.svg") no-repeat center center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  right: -2px;
  transition: .15s;
  transform: rotate(360deg);
  transform-origin: center center;
}

.open_login_popup_menu:hover:after {
  content: "";
  border: 0 none;
  background: url("../images/icon-pink-arrow.svg") no-repeat center center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  right: -2px;
  transition: .15s;
  transform: rotate(180deg);
  transform-origin: center center;
}

.site-header .header-bottom nav>ul>li.dropdown>a {
  padding-right: 22px;
}

.site-header .header-bottom nav>ul>li.dropdown>a:after {
  content: "";
  display: block;
  position: absolute;
  border: 0 none;
  z-index: 5;
  background: url("../images/icon-white-arrow.svg") no-repeat center center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  top: 7px;
  right: -2px;
  transition: .15s;
  transform: rotate(360deg);
  transform-origin: center center;
}

.site-header .header-bottom nav>ul>li.dropdown:hover>a:after {
  background: url("../images/icon-white-arrow.svg") no-repeat center center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  top: 7px;
  right: -2px;
  transition: .15s;
  transform: rotate(180deg);
  transform-origin: center center;
}

.site-header .header-top {
  background-color: var(--cg-neutral-50);
  padding-right: 30px;
  box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24);
}

.site-header .header-bottom nav>ul>li:first-child {
  margin-right: 45px;
}

.site-header .header-bottom nav>ul>li>a {
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
}

.site-header .header-bottom nav>ul>li.dropdown div ul li a {
  color: var(--cc-primary-500);
}

.site-header .header-top nav>span a {
  background-color: transparent;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 0;
  margin: 10px 0 0 20px;
  padding: 0;
}

.site-header .header-top nav>span a:hover {
  background-color: transparent;
}

.site-header .header-bottom .site-logo {
  margin-left: 25px;
}

.site-header .header-bottom .site-logo .mobile-logo {
  display: none;
}

.site-header .header-bottom nav {
  padding-right: 32px;
  background: var(--cc-primary-500);
}

.site-header .header-bottom nav::before {
  border-right: 22px solid var(--cc-primary-500);
}

.main-banner .image {
  background-size: 667px, cover;
  background-position: left bottom, left top;
}

.main-banner .text {
  background: var(--cc-primary-500);
  padding-right: 120px;
}

.main-banner .text:before {
  border-right: 230px solid var(--cc-primary-500);
  left: -230px;
}

.main-banner .text h1 {
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 97px;
  color: var(--cg-white);
  text-transform: uppercase;
  text-align: right;
}

.main-banner .text>div {
  /* width: 450px; */
  width: auto;
}

.main-banner .text>div a {
  border-radius: 16px;
  background: var(--cg-white, #FFF);
  box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24);
  width: 100%;
  margin: 0 auto 21px;
  color: var(--cc-primary-500, #BE185D);
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
}

.main-banner .text>div p {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 20px 0 20px;
}

.main-banner .text>div p>strong {
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cg-white, #FFF);
  line-height: 32px;
}

.main-banner .text>div h2 {
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 5px 0 10px 0;
  font-size: 16px;
}

.countdown {
  border-radius: 16px;
  background: var(--cc-primary-600, #9F1239);
  width: 100%;
  border-radius: 16px;
  padding: 20px 0;
  justify-content: center;
  box-sizing: border-box;
}

.countdown ul {
  display: flex;
  justify-content: space-between;
}

.countdown ul li.dots {
  font-size: 40px;
  line-height: 30px;
}

.countdown ul li .desc {
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cg-white, #FFF);
}



.how-to-vote-btn {
  background-color: var(--cc-primary-300);
  color: var(--cg-white);
  box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24);
  border-radius: 12px;
  height: 50px;
  line-height: 50px;
  right: -50px;
  font-size: 16px;
  font-weight: 700;
}

.home-intro {
  padding: 35px 23px 20px;
}

.home-intro .inner h2 {
  color: var(--cg-blue);
  text-align: center;
  font-family: "Neulis Neue";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.home-intro .inner h2 span {
  color: var(--cc-primary-500);
}

.home-intro .inner p {
  margin: 0 0 20px;
}

.home-intro .inner a {
  border-radius: 16px;
  border: 0 none;
  background: var(--cc-primary-500, #BE185D);
  box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24);
  border: none;
  width: 360px;
  padding: 16px;
  color: var(--cg-white);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  transition: .15s;
  border: solid 1px transparent;
}

.home-intro .inner a:hover {
  color: var(--cc-primary-500);
  background: var(--cg-white);
  border: solid 1px var(--cc-primary-500);
  transition: .15s;
}

.entries-listing {
  background-color: var(--cg-neutral-50);
  padding-top: 30px;
  padding-bottom: 0;
  box-shadow: none;
  margin-bottom: 95px;
}

.entries-listing .inner .filters .filter {
  width: 100%;
  display: flex;
}

.entries-listing .inner .filters {
  position: relative;
  z-index: 1;
}

.entries-listing .inner .filters:after {
  content: "";
  position: absolute;
  background: var(--cg-neutral-100);
  left: -100%;
  right: -100%;
  top: -30px;
  bottom: -30px;
  z-index: -1;
}

.entries-listing .inner .entries-list {
  margin: 30px -15px;
}

.entries-listing .inner .entries-list li {
  margin: 0 10px 20px;
  overflow: hidden;
  border-radius: 12px;
  width: calc(16.6% - 20px);
  min-height: 330px;
  border-radius: 16px;
  box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24);
  background-color: var(--cg-white);
}

.entries-listing .inner li.log-block-display {
  min-height: auto;
}

.entries-listing .inner .entries-list li .image {
  margin: 10px;
  border-radius: 8px;
}

.entries-listing .inner .entries-list li .image em,
.entries-listing .inner .entries-list li .image span,
.entries-listing .inner .entries-list li a.view {
  display: none;
}

.entries-listing .inner .entries-list li>a.vote {
  border-radius: 8px 8px 8px 8px;
  background: var(--cc-primary-500, #BE185D);
  height: 32px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  width: auto;
  line-height: 32px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  transition: .15s;
  border: solid 1px transparent;
}

.entries-listing .inner .entries-list li>a.vote:hover {
  background: var(--cg-white);
  border: solid 1px var(--cc-primary-500);
  color: var(--cc-primary-500);
  transition: .15s;
}

.entries-listing .inner .entries-list li .text {
  padding: 0px 10px;
  bottom: 48px;
  width: 100%;
}

.entries-listing .inner .entries-list li .text h2 {
  text-align: center;
  width: 100%;
  color: var(--cg-charcoal-ink, #1F2937);
  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: normal;
}

.entries-listing .inner .load-more {
  border-radius: 16px 16px 16px 16px;
  background: var(--cg-white, #FFF);
  box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24);
  color: var(--cc-primary-500, #BE185D);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  height: 50px;
  bottom: -50px;
  line-height: 50px;
}

.entries-listing .inner .load-more::before {
  display: none;
}

/* Figma node 1:647 — Hall of Fame grid */
.hall-of-fame .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 40px 60px;
}

.cc2-hall-of-fame__title h2 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--cg-blue);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-hall-of-fame__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.cc2-hof-card {
  background: var(--cg-white);
  border-radius: var(--cc-radius-16);
  box-shadow: var(--cc-shadow-01);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  will-change: transform;
}

.cc2-hof-card__imgWrap {
  border-radius: var(--cc-radius-8);
  overflow: hidden;
}

.cc2-hof-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc2-hof-card__meta {
  text-align: center;
  line-height: normal;
  margin-top: 2px;
}

.cc2-hof-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--cg-charcoal-ink);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-hof-card__season {
  font-size: 12px;
  color: var(--cc-primary-500);
  line-height: normal;
}

.cc2-hof-card:hover {
  transform: translateY(-2px);
  transition: transform 150ms ease;
}

/* Figma node 1:698 — Our sponsors */

.our-sponsors {
  background: var(--cg-white);
}

.our-sponsors .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 40px;
}

.cc2-sponsors__title {
  margin: 0 0 22px;
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  color: var(--cg-blue);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-sponsors__title-strong {
  font-weight: 700;
}

.cc2-sponsors__title-soft {
  font-weight: 400;
}

.cc2-sponsors__marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  /* edge fade to mimic Figma mask */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.cc2-sponsors__track {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: nowrap;
}

.cc2-sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cc2-sponsor img {
  display: block;
  max-height: 101px;
  width: auto;
}

/* Figma node 1:765 — Charities */

.charities {
  background: var(--cg-white);
  border-top: dashed 1px var(--cg-neutral-200, #4B5563);
}

.charities .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 40px;
}

.cc2-charities__title {
  margin: 0 0 22px;
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  color: var(--cg-blue);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-charities__title-strong {
  font-weight: 700;
}

.cc2-charities__title-soft {
  font-weight: 400;
}

.cc2-charities__marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.cc2-charities__track {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 101px;
  flex-wrap: nowrap;
}

.cc2-charity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cc2-charity img {
  display: block;
  max-height: 135px;
  width: auto;
}

/* Figma node 1:4537 — Entry instructions */
.entry-instructions {
  background: var(--cg-white);
}

.entry-instructions .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 40px 50px;
}

.cc2-entry-instructions__title {
  margin: 0 0 30px;
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  color: var(--cg-blue);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-entry-instructions__title-strong {
  font-weight: 700;
}

.cc2-entry-instructions__title-soft {
  font-weight: 400;
}

.cc2-entry-instructions__cols {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(0, 490px);
  gap: 70px;
  align-items: center;
  justify-content: center;
}

.cc2-entry-instructions__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cc2-entry-instructions__left-deco {
  position: relative;
  min-height: 72px;
  margin-bottom: 4px;
}

.cc2-entry-instructions__left-decoTitle {
  margin: 0;
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
  color: var(--cg-neutral-200, #4B5563);
  text-align: center;
  max-width: 560px;
  transform: rotate(-6deg);
  transform-origin: 50% 60%;
  padding-left: 75px;
  margin-bottom: 15px;
}

.front-entry-instructions .cc2-entry-instructions--popup {
  background-repeat: no-repeat;
  background-position: right -50px top -350px;
  background-image: url(../images/entry-collage-bg.svg);
  background-size: 45%;
}

.front-entry-instructions .cc2-entry-instructions__title {
  color: var(--cc-primary-500, #BE185D);
  font-family: "Neulis Neue";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  line-height: normal;
}

.front-entry-instructions {
  z-index: 200;
}

.front-entry-instructions .cc2-entry-instructions__cols {
  padding: 45px 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.front-entry-instructions .close {
  background-color: var(--cg-white);
}

.front-entry-instructions .cc2-entry-instructions__title-strong {
  display: flex;
  margin: 100px -150px 30px 0;
}

.cc2-entry-instructions__left-decoArrow {
  position: absolute;
  left: 18px;
  bottom: -6px;
  width: 64px;
  height: 60px;
  pointer-events: none;
}

.cc2-entry-instructions__footer {
  margin-top: 24px;
  padding: 18px 16px 35px;
  text-align: center;
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  color: var(--cg-neutral-200, #4B5563);
}

.cc2-entry-instructions__footerLink {
  color: #DB2777;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: none;
}

.cc2-entry-instructions__footerLink:hover {
  color: var(--cc-primary-700);
}

.cc2-entry-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 300px;
  background: rgba(10, 74, 108, 0.10);
}

.cc2-entry-pill__icon {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background: var(--cg-blue);
  color: var(--cg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cc2-entry-pill__icon svg {
  display: block;
}

.cc2-entry-pill__iconImg {
  width: 40px;
  height: 40px;
  display: block;
}

.cc2-figma-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
}

.cc2-figma-icon__part {
  position: absolute;
  display: block;
}

/* Puzzle icon (node 1:4584) */
.cc2-figma-icon--puzzle .cc2-figma-icon__part--a {
  left: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
}

.cc2-entry-pill__copy {
  color: var(--cg-blue);
}

.cc2-entry-pill__headline {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-entry-pill__sub {
  margin: 2px 0 0;
  font-size: 16px;
  line-height: 1.3;
  color: var(--cg-blue);
}

.cc2-entry-instructions__right {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
}

.cc2-entry-special {
  display: flex;
  gap: 13px;
  align-items: center;
}

.cc2-entry-special__badge {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: var(--cc-primary-500);
  color: var(--cg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px;
  flex: 0 0 auto;
}

.cc2-entry-special__badgeText {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-entry-special__pricing {
  text-align: center;
}

.cc2-entry-special__label {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-entry-special__prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
}

.cc2-entry-special__old {
  font-size: 34px;
  text-decoration: line-through;
  font-weight: 500;
  color: var(--cg-charcoal-ink);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-entry-special__new {
  font-size: 54px;
  font-weight: 700;
  color: var(--cc-primary-500);
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-entry-special__per {
  margin: 0;
  font-size: 16px;
  color: #d0005d;
  font-family: "Neulis Neue", "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc2-entry-special__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc2-entry-special__bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.3;
  color: #333;
}

.cc2-entry-special__check {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.cc2-entry-special__validity {
  margin: 0;
  font-size: 16px;
  text-align: center;
  color: var(--cc-primary-500);
}

.cc2-entry-special__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cc2-entry-special__button {
  width: 100%;
}

.cc2-entry-special__button a,
.cc2-entry-special__button button,
.cc2-entry-special__button input[type="submit"] {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: var(--cc-primary-500);
  box-shadow: var(--cc-shadow-01);
  color: var(--cg-white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  box-sizing: border-box;
}

.cc2-entry-special__note {
  margin: 0;
  font-size: 16px;
  text-align: center;
  color: var(--cg-neutral-200);
}

.site-footer .footer-bottom {
  background-color: var(--cc-primary-600);
  height: 56px;
}

ul.footer-copyright-desktop {
  padding: 18px 30px 18px 30px;
  line-height: normal;
  margin: 0 auto 0 auto;
  text-align: center;
  width: fit-content;
  float: none;
  color: var(--cg-white);
}

ul.footer-copyright-desktop>li {
  float: none;
}

ul.footer-copyright-desktop a {
  color: var(--cg-white);
}

.page-competition_entry .header-bottom {
  height: 0;
}

.front-entry-instructions,
.front-competition-entry,
.entry-register-login,
.congratulations,
.popup.account_activated {
  background-color: transparent;
  position: relative;
  height: auto;
  float: left;
  margin-bottom: 50px;
  padding: 0;
  margin-top: -55px;
  width: 100%;
}

.front-entry-instructions.hide {
  display: none;
}

.front-competition-entry::after,
.front-entry-instructions::after,
.entry-register-login::after,
.congratulations::after,
.popup.account_activated::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 40, 40, .9);
  z-index: -1;
}

.front-entry-instructions .inner,
.front-competition-entry .inner,
.entry-register-login .inner,
.congratulations .inner,
.popup.account_activated .inner {
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .16);
  background-color: #fff;
  position: relative;
  padding: 0;
}

.competition-entry-container {
  background-repeat: no-repeat;
  background-position: left bottom, left top;
  height: calc(1080px - 136px);
  background-image: url(../images/home_page_element.png), url(../images/banner.jpg);
  background-size: 25%, cover;
  padding-left: 20px;
  padding-right: 20px;
}

.front-competition-entry .inner .header,
.entry-register-login .inner .header {
  background-image: none;
  padding: 70px 20px 12px;
}

.front-competition-entry .inner .header h1,
.entry-register-login .inner .header h1 {
  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: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.front-entry-instructions .inner>.close,
.front-competition-entry .inner>.close,
.entry-register-login .inner .close {
  position: absolute;
  width: 36px;
  height: 36px;
  background-image: url(../images/2026-close.svg);
  top: 27px;
  right: 25px;
  cursor: pointer;
  background-size: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: .15s;
}

.front-entry-instructions .inner>.close:hover,
.front-competition-entry .inner>.close:hover {
  box-shadow: 0 6px 6px 0 rgba(89, 2, 41, 0.24);
}

.front-competition-entry .inner .competition-entry-form,
.entry-register-login .inner .register-login-form {
  overflow: hidden;
  position: relative;
  float: none;
  padding: 0;
  width: 100%;
}

.page-competition_entry .bg-page-element {
  position: absolute;
  left: 50%;
  bottom: 20px;
}

#regs-comp-form,
#register-comp-form {
  padding: 0 20px;
}

.new-steps__title,
.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;
}

.front-competition-entry .inner .competition-entry-form .step-1,
.entry-register-login .inner .register-login-form .step-wrapper {
  float: left;
  width: 33.3%;
  box-sizing: border-box;
  padding: 0;
  border-right: none;
  display: block;
  margin-top: 0;
  overflow: visible;
}

.entry-register-login>.inner .pre-entry {
  float: none;
  width: auto;
  box-sizing: border-box;
  background-color: transparent;
  text-align: left;
  padding: 15px 20px;
  margin-bottom: -30px;
}

.front-competition-entry .inner .competition-entry-form .step-2 {
  float: left;
  width: 33.3%;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  clear: both;
}

.front-competition-entry .inner .competition-entry-form .step-3 {
  clear: both;
  overflow: visible;
  padding: 30px 0 46px;
  width: 33.3%;
}

.front-competition-entry .inner .competition-entry-form .step-3 ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.front-competition-entry .inner .competition-entry-form .step-3 ul li span input {
  width: 22px;
  height: 22px;
}

.front-competition-entry .inner .competition-entry-form .step-3 ul li span {
  width: 22px;
  height: 22px;
  background-color: var(--cg-white);
  border-radius: 4px;
  border: 2px solid var(--cc-primary-400, #DB2777);
}

.front-competition-entry .inner .competition-entry-form .step-3 ul li span.checked:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-color: var(--cc-primary-500, #BE185D);
}

.front-competition-entry .inner .competition-entry-form .step-3 ul li label a {
  color: var(--cc-primary-500);
}

.front-competition-entry .inner .competition-entry-form .step-3 ul li label a:hover {
  color: var(--cc-primary-700, #881337);
}

.front-competition-entry .inner .competition-entry-form .step-3>div,
.entry-register-login>div .register-login-form>div,
.entry-register-login>div .register-login-form .step-wrapper>div {
  width: 100%;
  overflow: visible;
  display: flex;
  gap: 20px;
  align-content: space-between;
  margin-top: 30px;
  padding-bottom: 30px;
}

.front-competition-entry .inner .competition-entry-form .step-3>div .next,
.entry-register-login>div .register-login-form div .enter-comp,
.main-cta {
  border-radius: 16px;
  background: var(--cc-primary-500, #BE185D);
  box-shadow: rgba(89, 2, 41, 0.24) 0px 8px 16px 0px;
  width: 100%;
  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;
}

.front-competition-entry .inner .competition-entry-form .step-3>div .next:hover,
.entry-register-login>div .register-login-form div .enter-comp:hover,
.main-cta:hover {
  color: var(--cg-white);
  background: var(--cc-primary-700, #881337);
  transition: 0.15s;
  text-decoration: none;
}

.front-competition-entry .inner .competition-entry-form .step-3>div .close,
.entry-register-login>div .register-login-form div .back {
  width: 100%;
  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;
}

.front-competition-entry .inner .competition-entry-form .step-3>div .close:hover,
.entry-register-login>div .register-login-form div .back:hover {
  color: var(--cc-primary-700, #881337);
}

.front-competition-entry .inner .competition-entry-form .step-1 ul li {
  margin-bottom: 30px;

}

.front-competition-entry .inner .competition-entry-form .step-1 ul li label,
.entry-register-login>div .register-login-form ul li label {
  color: var(--cg-charcoal-ink, #1F2937);
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: none;
  margin-bottom: 10px;
  display: block;
}

.entry-register-login>div .register-login-form ul li label span {
  color: var(--cg-charcoal-ink, #1F2937);
}

.entry-register-login>div .register-login-form p a {
  font-weight: 300;
  text-decoration: underline;
  cursor: pointer;
  color: var(--cc-primary-500, #BE185D);
}

.entry-register-login>div .register-login-form p a:hover {
  color: var(--cc-primary-700, #881337);
}

.front-competition-entry .inner .competition-entry-form .step-1 ul li .tip {
  color: var(--cg-neutral-200, #4B5563);
  font-family: "Work Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
}

.front-competition-entry .inner .competition-entry-form .step-1 ul li .info,
.entry-register-login>div .register-login-form ul li .info {
  display: none;
}

.front-competition-entry .inner .competition-entry-form .step-1 ul li input,
.entry-register-login>div .register-login-form ul li input {
  display: flex;
  height: 51px;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--cg-neutral-100, #E5E7EB);
  background: var(--cg-neutral-50, #F8FAFC);
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.front-competition-entry .inner .competition-entry-form .step-1 ul li textarea {
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--cg-neutral-100, #E5E7EB);
  background: var(--cg-neutral-50, #F8FAFC);
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.front-competition-entry .inner .competition-entry-form .step-1 ul li textarea:focus {
  outline: none;
}

.step-2-content {
  border-radius: 16px;
  background: var(--cc-secondary, #FCE7F3);
  padding: 25px 20px;
  display: flex;
}

.front-competition-entry .inner .competition-entry-form .step-2 .image-holder {
  width: 40%;
  height: auto;
  border: 0 none;
  padding: 20px 0;
}

.front-competition-entry .inner .competition-entry-form .step-2 .image-holder p {
  color: #333;
  font-family: "Work Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.front-competition-entry .inner .competition-entry-form .step-2 .text {
  width: 60%;
  padding-left: 30px;
}

.front-competition-entry .inner .competition-entry-form .step-2 .text p {
  margin: 0;
}

.front-competition-entry .inner .competition-entry-form .step-2 .image-uploads ul li {
  overflow: hidden;
  float: left;
  display: inline;
  width: 48px;
  height: 48px;
  border: 1px solid var(--cc-primary-500);
  border-radius: 14px;
  margin-right: 10px;
  position: relative;
  background: var(--cc-secondary, #FCE7F3);
  display: flex;
  align-items: center;
}

.front-competition-entry .inner .competition-entry-form .step-2 .image-uploads ul li.img img {
  height: 100%;
  width: auto;
}

.front-competition-entry .inner .competition-entry-form .step-2 .image-uploads ul li .delete-image {
  position: absolute;
  width: 16px;
  height: 16px;
  line-height: 15px;
  display: block;
  color: #fff;
  background-color: var(--cc-primary-500);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 400;
  box-sizing: border-box;
  padding-left: 1px;
  top: 3px;
  right: 3px;
  text-align: center;
  cursor: pointer;
}

.front-competition-entry .inner .competition-entry-form .step-1 ul li .error,
.front-competition-entry .inner .competition-entry-form .step-2 .error,
.entry-register-login>div .register-login-form ul li .error {
  position: relative;
  font-size: 10px;
}


.front-competition-entry .inner .competition-entry-form .step-3 ul li .error {
  font-size: 10px;
  position: relative;
  right: auto;
  margin-top: 2px;
}

.congratulations>.inner {
  border-radius: 16px;
  background: var(--cc-secondary, #FCE7F3);
  min-height: 80vh;
  background-image: url(../images/home_page_element.png);
  background-repeat: no-repeat;
  background-size: 567px;
  background-position: left bottom;
}

.congratulations .inner .close,
.popup.account_activated .inner .close {
  position: absolute;
  width: 36px;
  height: 36px;
  background-image: url(../images/2026-close.svg);
  top: 27px;
  right: 25px;
  cursor: pointer;
  background-size: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: .15s;
}

.congratulations .inner>.close:hover,
.popup.account_activated .inner>.close:hover {
  box-shadow: 0 6px 6px 0 rgba(89, 2, 41, 0.24);
}

.congratulations .inner h2,
.popup.account_activated .inner h2 {
  width: auto;
  display: block;
  text-transform: none;
  text-align: center;
  padding: 0;
  margin: 0 auto 15px;
  background-image: none;
  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: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.congratulations .inner p {
  display: block;
  margin: 0 auto 5px auto;
  color: var(--cg-neutral-200, #4B5563);
  text-align: center;
  font-family: "Work Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.congratulations .inner .register-email-auth,
.popup.account_activated .inner .email-ctivated,
.congratulations .inner .registration-completed {
  text-align: center;
  padding: 30px 20px;
}

.email-verification-content-note {
  border-radius: 16px;
  background: var(--cg-white, #FFF);
  padding: 25px 20px;
  display: flex;
  max-width: 380px;
  margin: 25px auto;
  color: var(--cg-neutral-200, #4B5563);
  text-align: center;
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.large-pink-logo {
  margin-top: 65px;
  margin-bottom: 35px;
}

.congratulations a:not(.main-cta) {
  font-weight: 300;
  text-decoration: underline;
  cursor: pointer;
  color: var(--cc-primary-500, #BE185D);
}

.congratulations a:not(.main-cta):hover {
  color: var(--cc-primary-700, #881337);
}

.popup.account_activated .inner {
  border-radius: 16px;
  background: var(--cc-secondary, #FCE7F3);
  min-height: 80vh;
  background-image: url(../images/home_page_element.png);
  background-repeat: no-repeat;
  background-size: 567px;
  background-position: left bottom;
}

.login-container.popup-activated {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.photo-preview {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  object-position: center;
  margin-bottom: 15px;
}

.photo-preview img {
  height: 100%;
}

.photo-preview-text {
  color: var(--cc-primary-500, #BE185D) !important;
  margin-bottom: 5px !important;
}

.main-cta-wrapper {
  margin: 0 auto 15px auto;
  display: flex;
  width: fit-content;
}

.entry-register-login>div .register-login-form div.payment-step-form {
  float: none;
  box-sizing: border-box;
  border-right: none;
  display: none;
  margin-top: 0;
  padding: 0 20px;
}

.entry-register-login>div .register-login-form div.entry-card-payment {
  float: left;
  width: 33.3%;
  box-sizing: border-box;
  padding: 0;
  border-right: none;
  display: block;
  margin-top: 0;
}

.entry-register-login>div .register-login-form div.payment-details {
  width: 50%;
  overflow: visible;
  display: block;
  float: right;
  gap: 20px;
  align-content: space-between;
  margin-top: 100px;
  padding-bottom: 0;
}

.entry-register-login>div .register-login-form div.entry-card-payment .wpwl-form {
  margin: 0;
}

.entry-register-login>div .register-login-form div.entry-card-payment .wpwl-container {
  gap: 0;
}

.entry-register-login>div .register-login-form div.entry-card-payment .wpwl-container .wpwl-form-card {
  background-image: none;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}


.entry-register-login>div .register-login-form div.wpwl-clearfix {
  width: 100%;
  overflow: visible;
  display: block;
  gap: 0;
  align-content: space-between;
  margin-top: 0;
  padding-bottom: 0;
}

.entry-register-login>div .register-login-form div.wpwl-wrapper {
  width: 100%;
  overflow: visible;
  display: block;
  ;
  gap: 0;
  align-content: space-between;
  margin-top: 0;
  padding-bottom: 0;
  padding-top: 0;
}


.wpwl-hint {
  float: left !important;
  font-size: 10px !important;
  margin-top: 0;
  color: red;
}

.entry-register-login>div .register-login-form div.wpwl-label {
  color: var(--cg-charcoal-ink, #1F2937);
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: none;
  margin-bottom: 10px;
  display: block;
  float: left;
  margin-top: 0;
  padding-bottom: 0;
  padding-top: 0;
}

.wpwl-wrapper.wpwl-wrapper-brand {
  width: calc(100% - 95px) !important;
  float: left !important;
  clear: both;
}

.wpwl-brand.wpwl-brand-card {
  margin-top: 8px;
  margin: 8px 25px 0 0;
}

.wpwl-control,
.card-form input,
.wpwl-control-cardNumber input {
  display: flex;
  height: 51px;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--cg-neutral-100, #E5E7EB);
  background: var(--cg-neutral-50, #F8FAFC);
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--cg-charcoal-ink) !important;
}

.wpwl-button-pay {
  border-radius: 16px;
  background: var(--cc-primary-500, #BE185D);
  box-shadow: rgba(89, 2, 41, 0.24) 0px 8px 16px 0px;
  width: 100%;
  height: 50px;
  color: var(--cg-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 50px;
  transition: 0.15s;
  text-transform: uppercase;
  padding: 0 25px;
  text-decoration: none;
  border: 0 none;
  border-color: transparent;
}

.wpwl-button-pay:hover,
.wpwl-button-error[disabled],
.wpwl-button-error[disabled]:hover,
.wpwl-button-error[disabled]:focus,
.wpwl-button-error[disabled]:active,
.wpwl-button-pay[disabled],
.wpwl-button-pay[disabled]:hover,
.wpwl-button-pay[disabled]:focus,
.wpwl-button-pay[disabled]:active {
  color: var(--cg-white);
  background: var(--cc-primary-700, #881337);
  transition: 0.15s;
  text-decoration: none;
}

.peach-pay-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0px;
  margin-bottom: 40px;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: normal;
  color: var(--cg-neutral-200, #4B5563) !important;
  text-align: center;
  font-family: "Work Sans", Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  flex-direction: column;
  width: 100%;
}

.registration-completed-content {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--cg-neutral-200, #4B5563) !important;
  margin: 25px 0 30px;
}

/* ==========================================================================
   Media queries (moved to end; largest breakpoint -> smallest)
   ========================================================================== */

@media (max-width: 1350px) {
  ul.footer-copyright-desktop {
    display: block;
  }
}

@media (max-width: 1300px) {
  .main-banner .image {
    background-size: 70%, cover;
  }
}

@media (max-width: 1200px) {
  .competition-entry-container .new-steps {
    flex-direction: column;
    align-items: flex-start;
  }

  .competition-entry-container .new-steps__items {
    width: 100%;
    flex-wrap: wrap;
  }

  .competition-entry-container .new-step,
  .competition-entry-container .new-step:first-child {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .cc2-supporter-levels__grid {
    padding: 0;
  }
}

@media (max-width: 1100px) {
  .cc2-hall-of-fame__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .cc2-entry-instructions__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cc2-entry-instructions__right {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {

  .main-banner .text h1 {
    font-size: 60px;
    line-height: 70px;
    margin-left: -140px;
  }

  .entries-listing .inner .entries-list li,
  .winners-list li.winner {
    width: calc(33.3333333% - 20px);
  }

  .site-footer .footer-bottom {
    background-image: none;
  }
}

@media (max-width: 900px) {
  .couple-feedbacks .inner {
    padding: 30px 20px 20px;
  }

  .cc2-couple-feedbacks {
    flex-direction: column;
    align-items: flex-start;
  }

  .cc2-couple-feedbacks__left {
    text-align: center;
    width: 100%;
    margin: auto;
  }

  .cc2-couple-feedbacks__right {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    z-index: 0;
    padding: 20px 0;
    justify-content: center;
  }

  .cc2-couple-feedbacks__right::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    left: -20px;
    bottom: 0;
    background-color: var(--cg-neutral-100);
    z-index: -1;
  }

  .cc2-couple-feedbacks__stat {
    width: auto;
    max-width: 228px;
    color: var(--cg-blue, #0A4A6C);
    font-family: "Work Sans";
    font-size: 12px;
    font-style: normal;
    line-height: normal;
  }

  .cc2-entry-special {
    flex-direction: column;
    width: 100%;
  }

  .cc2-entry-special__badge {
    width: calc(100% + 30px);
    height: auto;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7px;
    flex: 0 0 auto;
    margin: 0;
  }

  .cc2-entry-instructions__right {
    box-shadow: 0 8px 16px 0 rgba(89, 2, 41, 0.24);
    border-radius: 16px;
    padding: 0 20px 20px;
    width: auto;
  }

  .couple-feedbacks-slider .inner {
    padding: 0 20px 30px;
  }

  .cc2-feedback-slider__nav {
    display: none;
  }

  /* swipe/scroll on mobile */
  .cc2-feedback-slider__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cc2-feedback-slider__track {
    transition: none;
  }

  .become-supporter .inner {
    padding: 35px 20px 20px;
  }

  .cc2-become-supporter__content h2 {
    font-size: 34px;
  }

  .cc2-become-supporter__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .supporter-levels .inner {
    padding: 20px 20px 30px;
  }

  .cc2-supporter-levels__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .cc2-sponsors__track {
    gap: 42px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cc2-sponsor {
    scroll-snap-align: center;
  }

  /* allow scroll while keeping edge fade */
  .cc2-sponsors__marquee {
    overflow: visible;
  }
}

@media (max-width: 900px) {
  .cc2-charities__track {
    gap: 42px;
    overflow-x: auto;
    padding: 0 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cc2-charity {
    scroll-snap-align: center;
  }

  .cc2-charities__marquee {
    overflow: visible;
  }
}

@media (max-width: 870px) {
  .site-header .header-bottom .site-logo .desktop-logo {
    display: none;
  }

  .site-header .header-bottom .site-logo .mobile-logo {
    display: block;
  }
}

@media (max-width: 800px) {

  .entries-listing .inner .entries-list li,
  .winners-list li.winner {
    width: calc(50% - 20px);
  }
}

@media (max-width: 700px) {
  .entry-register-login[rel="payment"]>div .register-login-form .cc2-payment-details__title {
    font-size: 24px;
  }

  .entry-register-login[rel="payment"]>div .register-login-form .cc2-payment-details__text {
    font-size: 16px;
  }

  .cc2-payment-details__item {
    border-radius: 24px;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .hall-of-fame .inner {
    padding: 30px 20px 60px;
  }

  .cc2-hall-of-fame__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .our-sponsors .inner {
    padding: 30px 20px;
  }
}

@media (max-width: 700px) {
  .charities .inner {
    padding: 30px 20px;
  }
}

@media (max-width: 700px) {
  .entry-instructions .inner {
    padding: 30px 20px 40px;
  }

  .cc2-entry-instructions__title {
    font-size: 26px;
  }

  .cc2-entry-pill {
    border-radius: 24px;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .main-banner .image {
    width: 100%;
    display: block;
    float: none;
    height: 400px;
    background-size: 250px, cover;
  }

  .main-banner .text {
    padding: 30px;
  }

  .main-banner .text h1 {
    font-size: 48px;
    line-height: 50px;
    margin-left: 0;
    top: auto;
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .main-banner .text>div {
    width: auto;
    text-align: left;
    padding: 0;
    max-width: unset;
  }

  .main-banner .text>div p>strong {
    font-size: 24px;
  }

  .main-banner .text>div p {
    text-align: left;
  }

  .countdown {
    margin-left: -30px;
    margin-bottom: -30px;
    width: calc(100% + 60px);
    border-radius: 0;
  }

  .countdown ul {
    display: flex;
    justify-content: space-between;
  }

  .cc2-secondary-banner__content h2 {
    max-width: 400px;
  }

  .how-to-vote {
    bottom: -470px;
  }

  .home-intro .inner h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 45px;
    margin-bottom: 5px
  }

  .cc2-couple-prepare h2,
  .cc2-couple-feedbacks__left h2,
  .cc2-become-supporter__content h2,
  .cc2-entry-instructions__title,
  .cc2-entry-instructions__title-soft,
  .cc2-hall-of-fame__title h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
  }

  .cc2-become-supporter__subtitle {
    font-size: 16px;
  }

  .cc2-couple-prepare,
  .cc2-become-supporter {
    padding: 30px 20px;
  }

  .cc2-couple-prepare__cta,
  .cc2-become-supporter__cta {
    width: 100%;
    display: flex;
  }

  .cc2-couple-prepare__cta>a,
  .cc2-become-supporter__cta>a {
    width: 100%;
  }


  .cc2-supporter-levels__intro {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-bottom: 70px;
  }

  .mobile-footer {
    display: block;
    position: fixed;
    background-color: #fff;
    height: 70px;
    z-index: 20;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
  }

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

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

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

  .mobile-footer ul li a.active {
    background-color: var(--cc-primary-500);
    transition: .3s;
    color: var(--cg-white);
  }

  .mobile-footer ul li a.active svg path {
    fill: var(--cg-white);
  }

  .footer-more-menu {
    padding: 10px 30px 20px;
    border-radius: 16px 16px 0 0;
    background-color: var(--cc-primary-500);
  }

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

  .footer-more-menu .dropdown.open>a {
    color: var(--cg-white);
    transition: .3s;
  }

}

@media (min-width: 900px) {
  .cc2-secondary-banner {
    height: 200px;
    /* desktop Figma */
  }

  .cc2-secondary-banner__content h2 {
    font-size: 54px;
    /* desktop Figma */
  }
}

@media (min-width: 900px) {
  .cc2-feedback-card {
    flex-basis: 300px;
  }
}

@media (min-width: 480px) {

  .wpwl-group-cardNumber,
  .wpwl-group-cardHolder,
  .wpwl-group-birthDate {
    padding-right: 0;
  }
}