html {
    overflow-x: clip;
}

.cp-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 2040 / 986;
    overflow: visible;
    background: var(--navy);
}

.cp-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cp-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cp-hero-left {
    max-width: 39%;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cp-hero-headline {
    font-family: var(--font-titlu);
    font-weight: 800;
    font-size: clamp(1.58rem, 3.91vw, 3.59rem);
    line-height: 1.35;
    margin: 0 0 .75rem;
}
.cp-hero-mark { width: clamp(103px, 10.35vw, 184px); height: auto; }

.cp-hero-right {
    max-width: 31%;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cp-hero-ribbon { width: clamp(161px, 14.95vw, 276px); height: auto; }
.cp-hero-amount {
    font-family: var(--font-titlu);
    font-weight: 800;
    font-size: clamp(1.44rem, 3.22vw, 2.73rem);
    margin: .25rem 0 .85rem;
    white-space: nowrap;
}
.cp-hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7em;
    padding: .92em 1.84em;
    border-radius: 999px;
    background: #00B9FF;
    color: var(--white);
    font-weight: 800;
    font-size: clamp(.86rem, 1.15vw, 1.08rem);
    white-space: nowrap;
    transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.cp-cta-arrow {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    overflow: visible;
}
.cp-hero-cta:hover { background: #0099CC; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 185, 255, .25); }
.cp-hero-cta:hover .cp-cta-arrow { animation: cta-arrow-loop .6s cubic-bezier(.65, 0, .35, 1); }
@keyframes cta-arrow-loop {
    0%   { transform: translateX(0);      opacity: 1; }
    49%  { transform: translateX(180%);   opacity: 0; }
    50%  { transform: translateX(-180%);  opacity: 0; }
    100% { transform: translateX(0);      opacity: 1; }
}
.cp-hero-sms {
    font-size: clamp(.78rem, 1.05vw, .92rem);
    font-weight: 700;
    margin-top: .5rem;
    text-shadow: 0 0 3px rgba(0, 21, 94, .95), 0 0 10px rgba(0, 21, 94, .85), 0 2px 8px rgba(0, 21, 94, .6);
}
.cp-hero-perioada {
    font-size: clamp(.65rem, .805vw, .79rem);
    font-weight: 700;
    margin-top: 1rem;
    line-height: 1.5;
    text-shadow: 0 0 3px rgba(0, 21, 94, .95), 0 0 10px rgba(0, 21, 94, .85), 0 2px 8px rgba(0, 21, 94, .6);
}

.cp-splash {
    display: block;
    width: 100%;
    height: auto;
    z-index: 100;
    pointer-events: none;
    user-select: none;
}
.cp-splash-hero {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
    transform: translateY(calc(60% - 30px));
}
.cp-splash-mobile { display: none; }

.cp-premii-mobile { display: none; }

.cp-section-seam {
    position: relative;
    z-index: 6;
    height: 0;
    pointer-events: none;
}
.cp-section-seam-petal {
    position: absolute;
    top: 0;
    left: -1%;
    width: clamp(190px, 16.3vw, 318px);
    transform: translateY(-50%);
}
.cp-section-seam-petal .cp-petal {
    position: relative;
    width: 100%;
    --dur: 12.5s;
    --delay: -6s;
    --petal-rotate: -7deg;
}

.cp-steps {
    position: relative;
    background: var(--navy);
    min-height: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(8rem, 12vw, 14rem);
    padding-left: clamp(1.25rem, 5vw, 4rem);
    padding-right: clamp(1.25rem, 5vw, 4rem);
    padding-bottom: clamp(3rem, 3.75vw, 4rem);
    overflow: hidden;
}
.cp-steps-title {
    text-align: center;
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 clamp(2rem, 5vw, 3rem);
}
.cp-steps-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}
.cp-step { text-align: center; }
.cp-step-num {
    position: relative;
    display: inline-flex;
    margin-bottom: 1rem;
}
.cp-step-num img {
    width: 93px;
    height: auto;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.cp-step:hover .cp-step-num img { transform: scale(1.12); }
.cp-step p {
    color: var(--white);
    font-weight: 700;
    font-size: .875rem;
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
}

.cp-premii {
    position: relative;
    background: var(--navy);
    min-height: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(56px, 5.5vw, 80px);
    padding-left: clamp(1.25rem, 5vw, 4rem);
    padding-right: clamp(1.25rem, 5vw, 4rem);
    padding-bottom: clamp(1rem, 1.5vw, 1.5rem);
    overflow: hidden;
}
.cp-premii-title {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    letter-spacing: .08em;
    margin: 0 0 clamp(1.5rem, 3.5vw, 3rem);
}
.cp-premii-stage {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.cp-premii-splash { width: 100%; height: auto; display: block; }
.cp-premii-item {
    position: absolute;
    text-align: center;
    color: var(--navy);
}
.cp-premii-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.cp-premii-item:hover img { transform: scale(1.08); }
.cp-confetti-burst {
    position: absolute;
    inset: 0;
    overflow: visible;
    pointer-events: none;
}
.cp-confetti-piece {
    position: absolute;
    width: var(--w, 13px);
    height: var(--h, 8px);
    border-radius: 1px;
    opacity: 0;
    box-shadow: 0 1px 3px rgba(0, 10, 40, .45);
    will-change: transform, opacity;
}
.cp-confetti-piece.is-animating {
    animation-name: cp-confetti-burst;
    animation-timing-function: cubic-bezier(.16, .82, .32, 1);
    animation-fill-mode: forwards;
    animation-duration: var(--dur, 1050ms);
    animation-delay: var(--delay, 0ms);
}
@keyframes cp-confetti-burst {
    0% {
        transform: translate(0, 0) rotate(var(--r0, 0deg)) scale(.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(calc(var(--tx) * .18), calc(var(--peak) * .75)) rotate(calc(var(--r0, 0deg) + var(--r1, 360deg) * .2)) scale(1.1);
    }
    32% {
        transform: translate(calc(var(--tx) * .45), var(--peak)) rotate(calc(var(--r0, 0deg) + var(--r1, 360deg) * .5)) scale(1);
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(calc(var(--r0, 0deg) + var(--r1, 360deg))) scale(.85);
        opacity: 0;
    }
}
.cp-premii-mare {
    top: 43%;
    left: 50%;
    width: clamp(362.5px, 41.25vw, 880px);
    transform: translate(-50%, -70%);
}
.cp-premii-saptamanal {
    top: 47%;
    left: 26%;
    width: clamp(181.25px, 20.625vw, 467.5px);
    transform: translate(-50%, -95%);
}
.cp-premii-zilnic {
    top: 50%;
    left: 75%;
    width: clamp(166.38px, 19.03vw, 420.94px);
    transform: translate(-50%, -95%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cp-inscrie {
    position: relative;
    background: var(--navy);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 3.75vw, 4rem);
    overflow: hidden;
}
.cp-inscrie-title {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    margin: 0 0 clamp(2rem, 5vw, 2.75rem);
}
.cp-form {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.cp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    margin-bottom: 1.25rem;
}
.cp-field input {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 6px 18px rgba(0, 8, 40, .18);
    padding: 1.05rem 1.5rem;
    color: var(--navy);
    font-family: inherit;
    font-weight: 600;
    font-size: .9375rem;
}
.cp-field input::placeholder { color: #7C8AB8; font-weight: 600; }
.cp-field input:focus { outline: 2px solid var(--cyan); outline-offset: 1px; }

.cp-hp {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.cp-consent {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin: 0 0 .85rem;
}
.cp-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: .15rem;
    accent-color: var(--cyan);
}
.cp-consent span {
    color: var(--white);
    font-size: .8125rem;
    line-height: 1.55;
}
.cp-consent a { color: var(--cyan); font-weight: 700; text-decoration: underline; }

.cp-form-submit {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
.cp-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7em;
    padding: 1rem 3.5rem;
    border: none;
    border-radius: 999px;
    background: #00B9FF;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .02em;
    transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    min-width: 220px;
}
.cp-submit:hover { background: #0099CC; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 185, 255, .25); }
.cp-submit:hover .cp-cta-arrow { animation: cta-arrow-loop .6s cubic-bezier(.65, 0, .35, 1); }
.cp-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.cp-status {
    min-height: 1.2em;
    margin: .85rem 0 0;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    color: var(--white);
}
.cp-status.ok  { color: #6EE7A8; }
.cp-status.err { color: #FF8A8A; }

.cp-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.cp-modal[hidden] { display: none; }
.cp-modal-fundal {
    position: absolute;
    inset: 0;
    background: rgba(0, 12, 48, .62);
    animation: cp-modal-fade .2s ease;
}
.cp-modal-cutie {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: #0B2072;
    border-radius: 34px;
    padding: 2.5rem 2.25rem 3rem;
    box-shadow: 0 30px 70px rgba(0, 8, 40, .45);
    animation: cp-modal-in .28s cubic-bezier(.34, 1.3, .64, 1);
}
.cp-modal-confetti {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
    opacity: .85;
    pointer-events: none;
    user-select: none;
}
.cp-modal-x {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: #00B9FF;
    box-shadow: 0 4px 14px rgba(0, 8, 40, .3);
    transition: background var(--t-fast), transform var(--t-fast);
}
.cp-modal-x svg { width: 20px; height: 20px; }
.cp-modal-x:hover { background: #0099CC; transform: scale(1.08); }
.cp-modal-x:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.cp-modal-logo {
    position: relative;
    z-index: 2;
    display: block;
    width: min(280px, 62%);
    height: auto;
    margin: 0 auto 1.75rem;
}
.cp-modal-text {
    position: relative;
    z-index: 2;
    margin: 0;
    text-align: center;
    color: var(--white);
    font-weight: 800;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.5;
    text-wrap: balance;
}


@keyframes cp-modal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes cp-modal-in {
    from { opacity: 0; transform: translateY(14px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
    .cp-modal { padding: 1rem; }
    .cp-modal-cutie {
        max-width: none;
        max-height: 88vh;
        border-radius: 28px;
        padding: 2rem 1.35rem 2.25rem;
    }
    .cp-modal-confetti { border-radius: 28px; }
    .cp-modal-logo {
        width: min(215px, 66%);
        margin-bottom: 1.35rem;
    }
    .cp-modal-text { font-size: .9375rem; }
    .cp-modal-x {
        top: .85rem;
        right: .85rem;
        width: 34px;
        height: 34px;
    }
    .cp-modal-x svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .cp-modal-fundal,
    .cp-modal-cutie { animation: none; }
}

@media (max-width: 700px) {
    .cp-form-grid { grid-template-columns: 1fr; }
}

.cp-produse {
    position: relative;
    background: var(--navy);
    padding: clamp(3rem, 4.25vw, 4rem) clamp(1.25rem, 5.1vw, 4rem) clamp(3rem, 6.5vw, 6rem);
    text-align: center;
    overflow: hidden;
}
.cp-produse-title {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 .5rem;
}
.cp-produse-sub {
    font-weight: 700;
    color: var(--white);
    opacity: .75;
    margin: 0 0 clamp(2rem, 5vw, 3rem);
}
.cp-produse-stage {
    position: relative;
}
.cp-produse-glow {
    position: absolute;
    top: 45%;
    left: 50%;
    height: clamp(340px, 46vw, 640px);
    width: auto;
    max-width: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
.cp-carousel {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}
.cp-podium {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
    width: 90%;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 6%;
    min-height: clamp(200px, 24vw, 320px);
}
.cp-podium-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 101;
}
.cp-podium-item {
    position: relative;
    z-index: 102;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: clamp(210px, 26vw, 340px);
    object-fit: contain;
    object-position: bottom center;
    margin-bottom: clamp(65px, 10vw, 110px);
    transform-origin: bottom center;
    transform: translateY(var(--podium-shift-y, 0));
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
    animation: cp-podium-in .5s cubic-bezier(.4, 0, .2, 1) backwards;
}
.cp-podium-item:hover { transform: translateY(var(--podium-shift-y, 0)) scale(1.05); }
.cp-podium-item.cp-podium-item-out {
    animation: none;
    opacity: 0;
    transform: translateY(calc(var(--podium-shift-y, 0) - 8px));
}
@keyframes cp-podium-in {
    from { opacity: 0; transform: translateY(calc(var(--podium-shift-y, 0) + 16px)); }
    to   { opacity: 1; transform: translateY(var(--podium-shift-y, 0)); }
}
.cp-podium-dots {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.cp-podium-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    padding: 0;
    transition: background var(--t-fast), transform var(--t-fast);
}
.cp-podium-dot:hover { background: var(--cyan); }
.cp-podium-dot.activ {
    background: var(--cyan);
    transform: scale(1.35);
}
.cp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 21, 94, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    z-index: 103;
    transition: transform var(--t-fast);
}
.cp-carousel-btn:hover { transform: translateY(-50%) scale(1.08); }
.cp-carousel-btn.prev { left: -10px; }
.cp-carousel-btn.next { right: -10px; }
.cp-carousel-btn svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
    .cp-carousel-btn.prev { left: -4px; }
    .cp-carousel-btn.next { right: -4px; }
}

.cp-regulament {
    position: relative;
    background: var(--white);
    padding: 0 0 clamp(3rem, 7vw, 4.5rem);
    overflow: visible;
}
.cp-regulament-band {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: clamp(90px, 13vw, 170px);
    background: var(--navy);
    overflow: visible;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.cp-regulament-leaf {
    position: absolute;
    top: 4%;
    right: 24%;
    width: clamp(190px, 19vw, 365px);
    height: auto;
    transform: rotate(3deg);
    z-index: 1000;
    pointer-events: none;
    user-select: none;
}
.cp-regulament-splash {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    transform: translateY(53%);
    z-index: 999;
    pointer-events: none;
    user-select: none;
}
.cp-regulament-inner {
    position: relative;
    z-index: 2;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cp-regulament-text h2 {
    color: var(--navy);
    font-size: clamp(.95rem, 1.8vw, 1.35rem);
    line-height: 1.3;
    margin: 0 0 1rem;
}
.cp-regulament-text p.cp-regulament-kicker {
    color: var(--navy);
    font-weight: 700;
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    margin: 0 0 1.25rem;
}
.cp-regulament-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7em;
    padding: .95em 2em;
    border-radius: 999px;
    background: #00B9FF;
    color: var(--white);
    font-weight: 800;
    font-size: .9375rem;
    transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.cp-regulament-btn:hover { background: #0099CC; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 185, 255, .25); }
.cp-regulament-btn:hover .cp-cta-arrow { animation: cta-arrow-loop .6s cubic-bezier(.65, 0, .35, 1); }
.cp-regulament-mark { width: clamp(140px, 14vw, 220px); height: auto; }

@media (min-width: 701px) {
    .cp-regulament-mark {
        width: clamp(182px, 18.2vw, 286px);
        transform: translateX(-30%);
    }
}

@media (max-width: 700px) {
    .cp-regulament-inner { flex-direction: column; text-align: center; }
}

.cp-castigatori {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(5rem, 9vw, 7rem) 0;
    overflow: visible;
}
.cp-castigatori-title {
    text-align: center;
    color: var(--white);
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    margin: 0 0 clamp(2rem, 5vw, 2.75rem);
}
.cp-castigatori-table-outer {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.cp-castigatori-table-wrap {
    width: 100%;
    align-self: center;
    background: var(--white);
    border-radius: 24px;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 21, 94, .22);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cp-castigatori-table-wrap::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
.cp-castigatori-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 21, 94, .3);
    pointer-events: none;
    z-index: 11;
    opacity: 1;
    transition: opacity .25s ease;
    animation: cp-scrollhint-bounce 1.4s ease-in-out infinite;
}
.cp-castigatori-scroll-hint.is-hidden { opacity: 0; }
.cp-castigatori-scroll-hint svg { width: 20px; height: 20px; }
@keyframes cp-scrollhint-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}
.cp-castigatori-table {
    width: 100%;
    border-collapse: collapse;
}
.cp-castigatori-table thead {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--cyan);
}
.cp-castigatori-table th {
    text-align: left;
    background: var(--cyan);
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: 800;
    padding: 1.5rem 2rem;
}
.cp-castigatori-table th:first-child { border-top-left-radius: 24px; }
.cp-castigatori-table th:last-child { border-top-right-radius: 24px; }
.cp-castigatori-table td {
    padding: .85rem 2rem;
    color: var(--navy);
    font-weight: 700;
    font-size: .9375rem;
    border-top: 1px solid var(--sky);
}
@media (max-width: 640px) {
    .cp-castigatori-table th, .cp-castigatori-table td { padding: .85rem 1rem; font-size: .8125rem; }
}

.cp-petal {
    position: absolute;
    z-index: 1;
    display: block;
    height: auto;
    pointer-events: none;
    user-select: none;
    transform: translate3d(0, 0, 0) rotate(var(--petal-rotate, 0deg));
    transform-origin: 50% 50%;
    will-change: transform;
}

@property --petal-spin {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

.cp-petal.is-floating {
    animation: cp-float-petals var(--dur, 11.25s) ease-in-out infinite,
               cp-petal-spin var(--spin-dur, 50s) linear infinite;
    animation-delay: var(--delay, 0s), 0s;
}

.cp-petal-alt {
    animation-direction: reverse, reverse;
}

@keyframes cp-petal-spin {
    from { --petal-spin: 0deg; }
    to   { --petal-spin: 360deg; }
}

@keyframes cp-float-petals {
    0%   { transform: translate3d(0, 0, 0) rotate(calc(var(--petal-rotate, 0deg) + var(--petal-spin, 0deg))); }
    25%  { transform: translate3d(calc(-1 * var(--drift-x, 30px)), calc(-1 * var(--drift-y, 30px)), 0) rotate(calc(var(--petal-rotate, 0deg) - 4deg + var(--petal-spin, 0deg))); }
    50%  { transform: translate3d(var(--drift-x, 30px), 0, 0) rotate(calc(var(--petal-rotate, 0deg) + 5deg + var(--petal-spin, 0deg))); }
    75%  { transform: translate3d(calc(-1 * var(--drift-x, 30px) * 0.4), var(--drift-y, 30px), 0) rotate(calc(var(--petal-rotate, 0deg) - 2deg + var(--petal-spin, 0deg))); }
    100% { transform: translate3d(0, 0, 0) rotate(calc(var(--petal-rotate, 0deg) + var(--petal-spin, 0deg))); }
}

/* Petal composition matched to the campaign presentation at 1920px. */
.cp-hero-p1 {
    top: -1%;
    left: 4.5%;
    width: clamp(145px, 11vw, 212px);
    --dur: 11.25s;
    --delay: -5s;
    --petal-rotate: 5deg;
}
.cp-hero-p2 {
    left: -4%;
    bottom: 18%;
    width: clamp(190px, 15vw, 290px);
    --dur: 12.5s;
    --delay: -11s;
    --petal-rotate: 58deg;
}
.cp-hero-p3 {
    left: 22.5%;
    bottom: 15%;
    width: clamp(135px, 10vw, 194px);
    --dur: 10.63s;
    --delay: -7s;
    --petal-rotate: -10deg;
}
.cp-hero-p4 {
    top: 1%;
    right: 4%;
    width: clamp(155px, 11.5vw, 222px);
    --dur: 11.88s;
    --delay: -3s;
    --petal-rotate: 12deg;
}
.cp-hero-p5 {
    right: 5%;
    bottom: 9%;
    width: clamp(210px, 16vw, 310px);
    --dur: 12.5s;
    --delay: -9s;
    --petal-rotate: 90deg;
}

.cp-steps-p1 {
    top: 13%;
    left: 11%;
    width: clamp(150px, 12.8vw, 252px);
    --dur: 11.88s;
    --delay: -4s;
    --petal-rotate: -5deg;
}
.cp-steps-p2 {
    top: 20%;
    right: 11.5%;
    width: clamp(105px, 8.3vw, 164px);
    --dur: 10.63s;
    --delay: -9s;
    --petal-rotate: -12deg;
}
.cp-steps-p4 {
    right: 1.5%;
    bottom: -5%;
    width: clamp(165px, 13vw, 256px);
    --dur: 11.25s;
    --delay: -2s;
    --petal-rotate: 8deg;
}

.cp-premii-p2 {
    top: 7%;
    right: 7.5%;
    width: clamp(165px, 13vw, 252px);
    --dur: 11.25s;
    --delay: -2s;
    --petal-rotate: 8deg;
}
.cp-premii > .cp-petal {
    z-index: 3;
}

.cp-inscrie-p1 {
    top: 7%;
    left: 5%;
    width: clamp(190px, 16vw, 310px);
    --dur: 11.88s;
    --delay: -8s;
    --petal-rotate: -8deg;
}
.cp-inscrie-p2 {
    right: -2.5%;
    bottom: 3%;
    width: clamp(170px, 14vw, 270px);
    --dur: 10.63s;
    --delay: -3s;
    --petal-rotate: -18deg;
}

.cp-regulament-p1 {
    top: 9%;
    left: 6.5%;
    width: clamp(135px, 11vw, 215px);
    --dur: 11.25s;
    --delay: -5s;
    --petal-rotate: 68deg;
}
.cp-regulament-p2 {
    left: -3%;
    bottom: 9%;
    width: clamp(125px, 10vw, 200px);
    --dur: 11.88s;
    --delay: -12s;
    --petal-rotate: -20deg;
}
.cp-regulament-p3 {
    right: 8%;
    bottom: -8%;
    width: clamp(205px, 4vw, 330px);
    --dur: 12.5s;
    --delay: -7s;
    --petal-rotate: -14deg;
    z-index: 2;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(calc(15% - 30px)) scale(1); }
    to { opacity: 1; transform: translateX(15%) scale(1.2); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(calc(-20% + 30px)) scale(1); }
    to { opacity: 1; transform: translateX(-20%) scale(1.2); }
}

.navbar,
.cp-hero-left,
.cp-hero-right {
    opacity: 0;
}

.navbar.in-view {
    animation: fadeInDown .6s cubic-bezier(.34, 1.56, .64, 1) forwards;
    opacity: 1;
}
.cp-hero-left.in-view {
    animation: fadeInLeft .8s cubic-bezier(.34, 1.56, .64, 1) forwards;
    opacity: 1;
}
.cp-hero-right.in-view {
    animation: fadeInRight .8s cubic-bezier(.34, 1.56, .64, 1) forwards;
    opacity: 1;
}

.pagina-castigatori {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.pagina-castigatori .cp-castigatori {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    padding-left: clamp(1.25rem, 4vw, 4rem);
    padding-right: clamp(1.25rem, 4vw, 4rem);
}
.pagina-castigatori .footer {
    flex-shrink: 0;
    z-index: auto;
}
.pagina-castigatori .cp-splash-hero {
    position: relative;
    transform: none;
    z-index: 3;
    width: 100vw;
    max-width: none;
    margin: auto calc(50% - 50vw) -130px;
}
.footer-edge {
    position: absolute;
    top: -43px;
    left: 0;
    width: 100%;
    height: 44px;
    transform: scaleY(-1);
    fill: var(--navy);
    pointer-events: none;
    display: block;
}
.pagina-castigatori .footer-inner,
.pagina-castigatori .footer-legal {
    position: relative;
    z-index: 5;
}

.cp-castigatori .cp-petal { z-index: 2; }
.cw-p1 { left: 2%; top: 13%; width: clamp(145px, 12vw, 235px); --dur: 11.88s; --delay: -4s; --petal-rotate: -5deg; }
.cw-p2 { right: 3%; top: 18%; width: clamp(105px, 8.5vw, 165px); --dur: 10.63s; --delay: -9s; --petal-rotate: -12deg; }
.cw-p3 { left: -2%; bottom: 10%; width: clamp(175px, 15vw, 290px); --dur: 12.5s; --delay: -6s; --petal-rotate: -7deg; }
.cw-p4 { right: 1%; bottom: 13%; width: clamp(155px, 13vw, 250px); --dur: 11.25s; --delay: -2s; --petal-rotate: 8deg; }

@media (max-width: 900px) {
    .cp-castigatori {
        min-height: auto;
        padding: clamp(5rem, 14vw, 7rem) clamp(1.25rem, 5vw, 2rem) 0;
        display: flex;
        flex-direction: column;
    }
    .cp-castigatori-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }
    .cp-castigatori-table-wrap {
        max-height: 45vh;
        width: 100%;
        margin: 2rem 0;
    }
    .cw-p1 { left: -8%; top: 6%; width: clamp(92px, 27vw, 155px); }
    .cw-p2 { right: -8%; top: 10%; width: clamp(72px, 20vw, 115px); }
    .cw-p3 { left: -12%; bottom: 15%; width: clamp(115px, 34vw, 195px); }
    .cw-p4 { right: -10%; bottom: 20%; width: clamp(105px, 30vw, 175px); }
    .cp-castigatori-table th { padding: 1rem 1rem .75rem; }
    .cp-castigatori-table td { padding: .75rem 1rem; }
    .pagina-castigatori .cp-splash-hero { display: none; }
    .footer .cp-splash-mobile {
        display: block;
        position: absolute;
        left: 0;
        bottom: 100%;
        transform: translateY(30%);
        z-index: 3;
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
        padding: 0;
        pointer-events: none;
    }
    .cp-hero {
        aspect-ratio: auto;
        min-height: 100vh;
        background-image: url('../assets/HERO_mobile.webp');
        background-size: cover;
        background-position: center 15%;
    }
    .cp-hero-bg {
        display: none;
    }
    .cp-hero-inner {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        padding: clamp(7.5rem, 19vw, 10rem) clamp(1.5rem, 6vw, 2rem) clamp(7rem, 17vw, 9rem);
        gap: 0;
        background: transparent;
        min-height: 100vh;
    }
    .cp-hero-left {
        max-width: 100%;
        align-items: center;
        text-align: center;
        order: 1;
        flex: 0 0 auto;
        transform: translateY(-1.5vh);
    }
    .cp-hero-right {
        max-width: 100%;
        align-items: center;
        text-align: center;
        order: 2;
        flex: 0 0 auto;
        margin-top: clamp(2rem, 8vw, 3rem);
        transform: translateY(30%);
    }
    .cp-hero-left.in-view,
    .cp-hero-right.in-view {
        animation: none;
        opacity: 1;
    }
    .cp-hero-ribbon { display: none; }
    .cp-hero-headline {
        font-size: clamp(1.625rem, 7.15vw, 2.275rem);
        margin: 0 0 .5rem;
        white-space: nowrap;
    }
    .cp-hero-headline br { display: none; }
    .cp-hero-mark { width: clamp(104px, 15.6vw, 169px); height: auto; }
    .cp-hero-amount {
        font-size: clamp(2.75rem, 13vw, 6rem);
        text-shadow: 0 4px 12px #0E2674, 0 8px 24px #0E2674;
    }
    .cp-hero-cta {
        font-size: clamp(1.105rem, 3.51vw, 1.56rem);
        padding: .75em 1.6em;
        margin-top: -1.5vh;
    }
    .cp-hero-sms { font-size: clamp(1.3rem, 3.9vw, 1.82rem); }
    .cp-hero-perioada {
        font-size: clamp(1.17rem, 3.25vw, 1.56rem);
        margin-top: calc(1rem - 0.75vh);
    }
    .cp-splash-hero {
        transform: translateY(61%);
        z-index: 6;
        pointer-events: none;
    }
    .cp-petal { --drift-x: 18px; --drift-y: 18px; }
    .cp-hero-p1 { top: 9%; left: -8%; width: clamp(82px, 25vw, 145px); }
    .cp-hero-p2 { left: -17%; bottom: 22%; width: clamp(120px, 36vw, 210px); }
    .cp-hero-p3 { left: 4%; bottom: 10%; width: clamp(88px, 25vw, 145px); }
    .cp-hero-p4 { top: 12%; right: -8%; width: clamp(78px, 22vw, 130px); }
    .cp-hero-p5 { right: -18%; bottom: 9%; width: clamp(125px, 38vw, 220px); }

    .cp-steps-p1 { top: 11%; left: -4%; width: clamp(92px, 27vw, 160px); }
    .cp-steps-p2 { top: 23%; right: -4%; width: clamp(72px, 20vw, 118px); }
    .cp-steps-p4 { right: -8%; bottom: 2%; width: clamp(105px, 30vw, 178px); }

    .cp-section-seam-petal { left: -12%; width: clamp(125px, 38vw, 220px); }
    .cp-premii-p2 { top: 4%; right: -12%; width: clamp(110px, 31vw, 185px); }
    .cp-inscrie-p1 { top: 5%; left: -12%; width: clamp(120px, 35vw, 205px); }
    .cp-inscrie-p2 { right: -15%; bottom: 3%; width: clamp(105px, 31vw, 182px); }

    .cp-regulament-p1 { top: 7%; left: -10%; width: clamp(90px, 25vw, 145px); }
    .cp-regulament-p2 { left: -13%; bottom: 18%; width: clamp(86px, 24vw, 140px); }
    .cp-regulament-p3 { right: -11%; bottom: -18%; width: clamp(120px, 36vw, 210px); }
    .cp-regulament-leaf { top: 6%; right: 8%; width: clamp(130px, 38vw, 220px); }
    .cp-steps,
    .cp-premii,
    .cp-inscrie,
    .cp-produse {
        position: relative;
        z-index: 5;
    }
    .cp-steps {
        justify-content: flex-start;
    }
    .cp-steps-title,
    .cp-steps-grid,
    .cp-premii-title,
    .cp-premii-stage {
        transform: none;
    }
    .cp-premii {
        padding: 0;
    }
    .cp-premii-stage {
        display: none;
    }
    .cp-premii-mobile {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 2;
        flex: 0 0 auto;
    }
    .cp-steps-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cp-podium-item {
        margin-bottom: 14%;
        max-height: 34vw;
    }
    .cp-podium { padding: 0 4%; }
}
.cp-podium-item[src$="/4.webp"] {
    max-height: 190px;
}
.cp-podium-item[src$="/6.webp"] {
    max-height: 270px;
    --podium-shift-y: 5%;
}
.cp-podium-item[src$="/17.webp"] {
    max-height: 196px;
}
.cp-podium-item[src$="/7.webp"] {
    max-height: clamp(210px, 30vw, 340px);
}
.cp-podium-item[src$="/8.webp"] {
    max-height: clamp(210px, 18vw, 340px);
    --podium-shift-y: 10%;
}
.cp-podium-item[src$="/9.webp"] {
    max-height: clamp(200px, 12.35vw, 323px);
}
.cp-podium-item[src$="/11.webp"] {
    max-height: clamp(200px, 12.35vw, 323px);
}
.cp-podium-item[src$="/12.webp"] {
    max-height: clamp(146px, 11.1vw, 291px);
}
.cp-podium-item[src$="/15.webp"] {
    margin-left: 70px;
}
.cp-podium-item[src$="/16.webp"] {
    max-height: clamp(110px, 26vw, 140px);
}


@media (max-width: 900px) {
    .cp-podium-item[src$="/4.webp"] {
    max-height: 90px;
}
.cp-podium-item[src$="/6.webp"] {
    max-height: 120px;
}
.cp-podium-item[src$="/17.webp"] {
    max-height: 104px;
}
.cp-podium-item[src$="/7.webp"] {
    max-height: 150px;
}
.cp-podium-item[src$="/8.webp"] {
    max-height: 120px;
}
.cp-podium-item[src$="/9.webp"] {
    max-height: 114px;
}
.cp-podium-item[src$="/11.webp"] {
    max-height: 114px;
}
.cp-podium-item[src$="/12.webp"] {
    max-height: 86px;
}
.cp-podium-item[src$="/15.webp"] {
    margin-left: 24px;
}
.cp-podium-item[src$="/16.webp"] {
    max-height: 75px;
}

}
@media (max-width: 900px) {
    .cp-podium-item.cp-podium-item-out {
        transform: none;
        opacity: 0;
    }
}


/* Confetti hide container*/
a[href="https://confettipage.com"] {
    display: none !important;
}

@media (max-width: 900px) {
    .cp-premii {
        margin-top: -2px;
        box-shadow: 0 -3px 0 var(--navy);
    }
}
