/*
    Copyright PRO TV S.A. All rights reserved.
    Contact: @protv.ro
*/
@import url("reset.css");
@import url("bootstrap.min.css");
@import url("onetrust.css");

/*
    GLOBAL STYLES
*/
:root {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    --background-color: #000;
    --main-font: "Rubik", sans-serif;
    --main-font-size: 1rem;
    --secodary-font: 'Cormorant Garamond', serif;
    --font-style-normal: normal;
    --font-weight-normal: 400;
    --selection-color: ;
    --block-margin: 20px;
    --block-padding: 40px;
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h4-size: 1.5rem;
    --paragraph-size: 1.3rem;
    --heading-line-height: 1.45;
    --heading-letter-spacing: normal;
    --text-transform: uppercase;
    --white: #ffffff;
    --black: #000000;
    --main-color: #0032A0;
    --secondary-color: #007AFF;
    --accent-color: #AF8115;
    --light-blue: #EBF1FD;
    --gold: #C9A84C;
    --gold-lt: #E8C97A;
    --gold-dk: #8B6914;
    --navy: #0D1F4A;
    --navy2: #0E2C6A;
    --teal: #1A7FA0;
    --teal-lt: #5BB8D0;
    --crimson: #C8212E;
    --cream: #FAF6EF;
    --iznik-red: #C8391C;
}

body::-webkit-scrollbar {
    width: 6px;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s ease-in;
}

*:focus {
    outline: none !important;
    transition: all 0.2s ease-in;
}

html,
body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    scrollbar-width: thin;
    overflow-x: hidden !important;
    overflow-y: auto;
    margin: 0;
    background-color: rgb(0, 50, 160);
    font-family: var(--main-font);
    font-size: var(--main-font-size);
    font-style: var(--font-style-normal);
    font-weight: var(--font-weight-normal);
    color: var(--selection-color);
    width: 100%;
    height: 100%;
    min-height: 100%;
}

a {
    color: var(--white);
}

a:hover,
a:focus {
    color: var(--color-10rule);
}

nav {
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.navbar-nav p {
    display: inline-block;
    padding: 0;
    margin: 0;
}

/* 
    GENERAL
*/
header,
footer {
    width: 100%;
    color: var(--white);
    margin: 0;
    padding: 1rem 0;
}

header {
    background-color: var(--white);
}

footer {
    background: var(--white);
}

header a:hover,
header a:focus {
    color: var(--color-30rule);
}

.header-img {
    width: 750px;
    display: block;
    margin: 2rem auto 3rem;
}

.header-img-2023 {
    max-width: 700px;
}

.footer-img {
    margin: 1rem auto;
}

.container {
    max-width: 1200px;
}

img {
    height: auto;
    max-width: 100%;
}

.text-center {
    text-align: center;
}

h1,
h2,
p {
    text-align: center;
    font-weight: var(--font-weight-normal);
    color: var(--white);
}

h1 {
    font-size: var(--h1-size);
    padding: var(--block-padding);
    text-shadow: #000 0px 0px 10px;
}

h2 {
    font-size: var(--h2-size);
    padding: var(--block-padding);
}

p {
    font-size: var(--main-font-size);
}

.premii {
    padding: 2rem 0;
}

.navbar-section {
    background-color: var(--secondary-color);
}

.navbar-collapse {
    justify-content: flex-start;
}

.navbar-nav .nav-link {
    font-family: var(--main-font);
    font-weight: bold;
    color: var(--white);
}

.navbar-nav .nav-link:hover {
    color: rgb(23, 5, 68);
}

footer .nav-link {
    font-family: var(--main-font);
    font-weight: bold;
    color: #0032A0;
}

.navbar-brand svg {
    max-width: 49px;
    height: auto;
    width: 100%;
}

.logo-rat img {
    max-width: 120px;
    height: auto;
    width: 100%;
    display: block;
}

.burger {
    width: 20px;
    height: 14px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}


.burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.navbar-toggler[aria-expanded="false"] .burger span {
    background: rgba(255, 255, 255, 1);
}

.burger span {
    background: rgba(255, 255, 255, 1);
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(2) {
    top: 5px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(3) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 5px;
    left: 2px;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 5px;
    left: 2px;
}

/* HERO SECTIOn */

/* .hero-section-header {
    background-image: url("https://assets.protv.ro/assets/nivea-rat-2026/img/rat_nivea_hero.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    margin: 0 auto;
    min-height: 600px;
    height: 75vh;
    display: flex;
} */

.hero-header {
    display: block;
}

.hero-header-mobile {
    display: none;
}

.hero-header picture {
    width: 100%;
    height: auto;
}

.hero-header picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.main-headline {
    background-image: url('https://assets.protv.ro/assets/seriale-turcesti-2026/img/bkg-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    min-height: 600px;
    width: 100%;
}

.header-hero-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.header-hero-container h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: none;
    padding-top: 40px;
    padding-bottom: 20px;
}

.header-hero-container h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 20px;
}

.header-hero-container p {
    font-family: 'Rubik', sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #ffffff;
    padding-bottom: 20px;
}

/* .header-hero-container p:last-of-type {
    font-weight: 500;
    text-decoration: underline;
} */

/* .header-hero-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    transform: translate(-40%, 40%);
} */

.secondary-hero-container {
    background-color: var(--white);
}

.secondary-hero-container .container {
    padding: 0;
}

.secondary-hero {
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.secondary-hero .rat-bg {
    /* background-image: url('https://assets.protv.ro/assets/nivea-rat-2026/img/rat-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; */
    flex: 0 0 60%;
}

.secondary-hero .rat-bg img {
    width: 100%;
}

.secondary-hero .secondary-text {
    background-color: rgba(235, 241, 253, 0.9);
    flex: 0 0 56%;
    padding: 0 1.5rem;
    margin-left: -10%;
    position: relative;
}

.hero-main-title {
    background-color: rgba(255, 255, 255, .9);
    border-radius: 40px;
    font-family: 'MinionPro', 'Rubik', sans-serif;
    color: var(--main-color);
    font-size: 2.5rem;
    text-shadow: none;
    margin-bottom: 0;
}

.subtitle-text h2 {
    font-family: 'MinionPro', 'Rubik', sans-serif;
    font-size: 2rem;
    text-align: left;
    font-weight: bold;
    color: var(--main-color);
    padding: 40px 0;
}

.subtitle-text p {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black);
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 40px;
}

/* 
    MODAL 
*/
.modal.show {
    display: block;
}

.modal-backdrop.show {
    display: block;
    opacity: 0.5;
}

.modal-backdrop.fade {
    opacity: 0;
    display: none;
}

body.modal-open .modal-backdrop {
    display: block;
    opacity: 0.5;
}

.modal-dialog {
    max-width: 500px;
    top: 50%;
    left: 0;
    position: relative;
    width: auto;
    pointer-events: none;
    transform: translate(0%, -50%) !important;
}

.modal-header {
    border-bottom: 0px;
}

/* 
    FORM
*/

input.form-control,
textarea.form-control {
    border-radius: 0;
    box-sizing: border-box;
    padding: 0;
}

.custom-control {
    position: relative;
    display: inline-block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    /* margin-bottom: var(--block-margin); */
}

.custom-control-label {
    display: block;
    cursor: pointer;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-radius: 50%;
    border-color: var(--color-10rule);
    background-color: var(--color-10rule);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-color: var(--color-10rule);
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: var(--color-10rule) solid 1px;
}

.custom-control-description {
    font-size: 1.15rem;
    font-family: var(--main-font);
    line-height: 1.75;
    color: var(--white);
    margin-left: 40px;
    display: inline-block;
}

.custom-control-description a {
    color: var(--accent-color);
}

.visuallyhidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    font-family: var(--main-font);
    font-size: 1.15rem;
}

.form-control,
input.form-control {
    height: 60px;
    color: var(--white);
    background-color: var(--white);
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    letter-spacing: 0;
    margin-top: 0.25rem;
    border-radius: 0.25rem;
}

textarea.form-control {
    height: 200px;
    color: var(--white);
    background-color: var(--color-10rule);
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    letter-spacing: 0;
    margin-top: 0.25rem;
    border-radius: 0.25rem;
}

textarea.form-control:not(:placeholder-shown) {
    background-color: #fff;
    color: #000;
}

input.form-control:not(:placeholder-shown),
input.form-control:focus,
textarea.form-control:focus {
    border-color: rgba(15, 96, 255, .5);
    background-color: var(--white);
    outline: 0;
    color: var(--main-color);
    border-radius: 10px;
}

.form-control::placeholder {
    color: white;
}

.submitButton {
    text-align: center;
    font-size: var(--h2-size);
    font-family: 'Rubik', 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--main-font);
    padding: 1rem;
    background-color: var(--secondary-color);
    box-shadow: 0px 0px 15.98px 1.02px rgba(115, 90, 240, 0.4),
        inset -2.121px -2.121px 3px 0px rgba(173, 169, 255, 0.25);
    width: 100%;
    max-width: 350px;
    margin-top: 3rem;
    border-radius: 80px;
    transition: 0.5s all;
}

.submitButton:hover {
    background-color: var(--white);
    color: var(--main-color);
}

.info {
    font-family: var(--main-font);
    padding: 0;
    text-align: center;
    color: var(--white);
    font-size: 1rem;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 40px;
    padding-left: 15px;
    margin-right: 1rem;
    cursor: pointer;
}

.custom-control-input {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.custom-control-indicator {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: var(--white);
    border-radius: 0.25rem;
    width: 40px;
    height: 40px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 70% 75%;
    background-size: 70% 75%;
}

.custom-checkbox .custom-control-input:checked~.custom-control-indicator {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1OCA1OCI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGIiBkPSJtMzQgMjguOCAyMy41IDIzLjZjLjMuNC41IDEgLjUgMS41IDAgLjYtLjIgMS0uNSAxLjRsLTEuNiAxLjVjLS4zLjQtLjguNi0xLjMuNi0uNiAwLTEuMS0uMi0xLjUtLjZMMjkuNCAzMy4xIDYgNTYuOGMtLjUuNC0xIC42LTEuNi42LS41IDAtMS0uMi0xLjMtLjZsLTEuNi0xLjVjLjMtLjQtLjUtLjgtLjUtMS40IDAtLjYuOC0xIC41LTEuNWwyMy43LTIzLjZMMS40IDUuMmMuMy0uNC0uNS0xLS41LTEuNSAwLS42LjgtMSAuNS0xLjRMMyAuOGMuMy0uNC44LS41IDEuMy0uNS42IDAgMS4xLjEgMS42LjVsMjMuNSAyMy41TDUzLjEuOGMuNC0uNC45LS41IDEuNS0uNS41IDAgMSAuMSAxLjMuNWwxLjYgMS41Yy4zLjQuNS44LjUgMS40IDAgLjYtLjIgMS0uNSAxLjVMMzMuOSAyOC44WiIvPgo8L3N2Zz4K");

    border-color: var(--accent-color);
    background-color: var(--accent-color);
    box-shadow: 0px 0px 15.98px 1.02px rgb(115 90 240 / 20%),
        0px 0px 25.48px 2.52px rgb(181 181 255 / 30%),
        0px 0px 175px 75px rgb(99 99 255 / 10%),
        0px 20px 15px 0px rgb(26 26 26 / 20%),
        inset -2.121px -2.121px 3px 0px rgb(173 169 255 / 0%);
}

.form-container {
    /* background-color: var(--secondary-color); */
}

.content-formular {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.form-main-title,
.form-title {
    font-family: var(--main-font);
    font-size: var(--h2-size);
    color: var(--white);
    padding-bottom: 1em;
    padding-top: 1em;
}

#tapad_url {
    display: none;
    height: 0;
}

.navbar-brand-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .nav-link:hover,
footer .nav-link:focus,
footer .nav-link:active {
    color: rgb(15, 96, 255);
}

.navbar-brand-footer img {
    width: 100%;
    max-width: 100px;
    display: block;
}

.header-menu {
    display: flex;
    flex-direction: row;
    grid-gap: 20px;
}

.header-menu .castigatori-vr {
    text-transform: uppercase;
    color: white;
    font-weight: bold;
}

.participa-acum {
    position: relative;
    margin: 0 auto;
    display: block;
    padding-bottom: 30px;
}

.weekly-prizes {
    /* background-color: #fff; */
    padding: 40px;
    border-radius: 4px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.weekly-prizes h3,
.winners-section h3 {
    text-transform: uppercase;
    font-family: 'MinionPro', 'Rubik', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--main-color);
}

.weekly-prizes p {
    font-family: var(--main-font);
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: bold;
}

.winners-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.winners-section .winner-concurs {
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 2px solid var(--accent-color);
}

.weekly-prizes ul {
    list-style-type: none;
    padding-bottom: 20px;
}

.weekly-prizes li {
    font-size: 1rem;
    color: white;
}

.main-prize {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.main-prize img {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08), 0 24px 48px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    border-radius: 20px;
}

.main-prize img:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 16px 40px rgba(0, 0, 0, 0.12), 0 32px 64px rgba(0, 0, 0, 0.08);
}

.prize {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prize .prize-count {
    position: absolute;
    left: -20px;
    font-family: 'NIVEA Brand Type', 'Rubik', sans-serif;
    width: 80px;
    height: 80px;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-prizes {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    grid-gap: 3rem;
}

.weekly-prizes p span {
    font-weight: lighter;
    font-size: .9rem;
    color: #0032A0;
    font-family: 'Reith Sans Medium', 'Montserrat', sans-serif;
}

.img-prizes img {
    height: 100%;
    max-height: 250px;
    display: block;
    padding: 20px;
}

.hero-paragraph {
    position: relative;
}


.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid rgb(15, 96, 255);
    border-right: 5px solid rgb(15, 96, 255);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -.2s;
}

.prizes-section {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* ─── HEADER ─── */
.header-section {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeUp 0.7s ease both;
}

.eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.6rem;
}

.header-section h2 {
    font-family: var(--secodary-font);
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 0.95;
    letter-spacing: -0.01em;
}

.header-section h2 em {
    font-style: italic;
    color: var(--crimson);
}

.rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.1rem;
}

.rule-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.rule-line.r {
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ─── HERO ─── */
.arch-hero {
    position: relative;
    margin-bottom: 2rem;
    animation: fadeUp 0.75s 0.1s ease both;
}

.arch-frame-wrap {
    position: relative;
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(13, 31, 74, 0.4), 0 4px 16px rgba(13, 31, 74, 0.2);
}

.arch-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: saturate(1.12) contrast(1.04);
}

.arch-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 420px;
    pointer-events: none;
}

/* Bottom tile strip */
.tile-strip-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    pointer-events: none;
    z-index: 5;
}

.arch-content {
    position: relative;
    background: var(--navy);
    padding: 0 2.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
}

.mp-label {
    position: relative;
    flex-shrink: 0;
    background: var(--crimson);
    border-radius: 10px 10px 30px 10px;
    padding: 1.1rem 1.3rem;
    text-align: center;
    min-width: 125px;
    margin-top: -28px;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(200, 33, 46, 0.45);
}

.mp-label span {
    display: block;
    font-family: var(--secodary-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.mp-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 6px;
}

.mp-star {
    width: 10px;
    height: 10px;
    fill: var(--gold-lt);
}

.hero-text {
    position: relative;
    flex: 1;
}

.hero-text h2 {
    font-family: var(--secodary-font);
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);    
    text-align: left;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.hero-text h2 strong {
    color: var(--gold-lt);
    font-weight: 700;
}

.gold-bar {
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    border-radius: 2px;
    margin-bottom: 0.65rem;
}

.hero-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-lt);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

/* ─── PRIZE CARDS ─── */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.prize-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 10px 36px rgba(13, 31, 74, 0.14), 0 2px 8px rgba(13, 31, 74, 0.07);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeUp 0.8s ease both;
}

.prize-card:nth-child(1) {
    animation-delay: 0.15s;
}

.prize-card:nth-child(2) {
    animation-delay: 0.27s;
}

.prize-card:nth-child(3) {
    animation-delay: 0.39s;
}

.card-arch-top {
    position: relative;
    background: var(--navy);
    height: 220px;
    overflow: hidden;
}

.card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
    transition: transform 0.6s ease;
}

.prize-card:hover .card-photo {
    transform: scale(1.07);
}

.card-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 31, 74, 0.1) 0%, rgba(13, 31, 74, 0.6) 100%);
    pointer-events: none;
}

/* SVG rosette corners */
.card-rosette {
    position: absolute;
    top: 8px;
    width: 44px;
    height: 44px;
    pointer-events: none;
    z-index: 3;
}

.card-rosette.tl {
    left: 8px;
}

.card-rosette.tr {
    right: 8px;
}

/* Card number badge */
.card-num {
    position: absolute;
    bottom: 10px;
    left: 12px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--secodary-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 3px 10px rgba(201, 168, 76, 0.55);
}

.card-body {
    padding: 1rem 1.3rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-subtitle {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.35rem;
    margin-top: 0.4rem;
}

.card-title {
    font-family: var(--secodary-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.card-desc {
    font-size: 0.82rem;
    color: #4a5568;
    line-height: 1.68;
    flex: 1;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.9rem;
    align-self: flex-start;
    background: rgba(13, 31, 74, 0.06);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 50px;
    border: 1px solid rgba(13, 31, 74, 0.1);
}

.disclaimer {
    text-align: center;
    font-size: 0.77rem;
    color: #8a9ab8;
    font-style: italic;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 768px) {
    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .arch-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1.5rem 2rem;
    }

    .arch-photo {
        height: 260px;
    }

    .arch-svg-overlay {
        height: 260px;
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

.mobile-view {
    display: none;
}

.prizes-section {
    background-color: #E6F3FF;
    padding: 40px;
}

.winners-vr {
    background-color: #EBF1FD;
    padding: 40px 0;
}

.nivea-container-mobile {
    background-color: var(--white);
}

@media (max-width: 767px) {
    .navbar-collapse {
        background-color: rgba(0, 80, 170, .9);
        padding-top: 2rem;
        padding-bottom: 2rem;
        top: 40px;
        position: absolute;
        left: 0;
        width: 100%;
        font-weight: bold;
        text-align: center;
        z-index: 50;

        /* background-color: rgba(0, 80, 170, .9);
        padding-top: 2rem;
        padding-bottom: 2rem;
        top: 75px;
        position: fixed;
        left: 15px;
        width: calc(100% - 30px);
        font-weight: bold;
        text-align: center;
        z-index: 50; */
    }
}

@media (max-width: 768px) {

    .navbar-expand-lg {
        display: flex;
        flex-flow: nowrap;
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-toggler {
        order: 4;
    }

    .content-formular {
        padding: 4rem 1rem;
    }

    .prizes-section {
        padding: 40px 10px;
    }

    .prize .prize-count {
        left: 0;
    }
}

@media (max-width: 1024px) {
    .hero-section-header {
        /* background-image: url("https://assets.protv.ro/assets/nivea-rat-2026/img/rat_nivea_mobile_hero_bg.png"); */
        background-position: center;
        /* height: 65vh; */
        min-height: 300px;
    }
}

@media (max-width: 1200px) {

    .subtitle-text {
        padding: 3rem 0;
    }

    .subtitle-text h2 {
        padding-top: 0;
    }

    .subtitle-text p {
        padding-bottom: 0;
    }

    .secondary-hero img {
        width: 100%;
        display: block;
    }

    .secondary-hero .secondary-text {
        margin-left: 0;
    }

    .secondary-hero .rat-bg,
    .secondary-hero .secondary-text {
        flex: 0 0 100%;
    }

}

@media (min-width: 640px) {
    .premii {
        min-height: 40vh;
    }

    .main-headline {
        /* padding-top: var(--block-padding); */
        /* min-height: 40vh; */
    }

    .footer-img {
        max-width: 450px;
    }
}

@media (max-width: 650px) {
    .hero-header {
        display: none;
    }

    .hero-header-mobile {
        display: block;
    }

}

@media (max-width: 500px) {
    .header-img-2023 {
        max-width: 200px;
    }

    .hero-paragraph {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .mobile-view {
        display: block;
    }

    .img-prizes {
        flex-direction: column;
    }

    .img-prizes img {
        margin-right: 0;
    }

    .weekly-prizes {
        padding-left: 0;
        padding-right: 0;
    }

    .premii-vr .container {
        padding-left: 0;
        padding-right: 0;
    }

    .img-prizes {
        flex-direction: column;
    }

    .img-prizes img {
        height: 100%;
    }

    .logo-rat {
        padding-right: 8px;
        border-right: 2px solid rgba(15, 96, 255, .5);
    }

    .submitButton {
        padding: 20px;
    }

    .nivea-container-mobile {
        display: block;
    }

    .nivea-container-mobile .hero-main-title {
        font-size: 1.8rem;
        padding: 3rem 0;
    }

    .weekly-prizes h3,
    .winners-section h3 {
        font-size: 1.8rem;
    }

    .img-prizes p {
        font-size: 1.4rem;
    }

    .header-hero-container h1 {
        font-size: 2rem;
    }

    .header-hero-container h3 {
        font-size: 1.35rem;
    }

    .header-hero-container p {
        font-size: 1.15rem;
    }

    .form-container h2 {
        font-size: 1.3rem;
    }
}