* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    margin: 0;
    position: relative;
}

/* Overlay pentru blur effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.game-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 90vh;
    max-height: 800px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 215, 0, 0.2);
    border: 2px solid var(--light-color);
    animation: popIn 0.5s cubic-bezier(0.26, 0.53, 0.74, 1.48);
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Adăugăm decorațiuni de Crăciun pentru popup */
.game-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #ffd700 0px,
        #ffd700 20px,
        transparent 20px,
        transparent 40px
    );
    animation: twinkle 1s ease-in-out infinite alternate;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.game-container::after {
    display: none;
}

/* Buton de închidere */
.close-btn {
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    margin: -15px -15px 10px 10px;
    z-index: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.screen {
    display: none;
    animation: fadeIn 0.5s ease-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    overflow-y: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.screen.active {
    display: block;
}

h1, h2 {
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.gifts-container, .gifts-selection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.gift {
    background: var(--primary-color);
    aspect-ratio: 1;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gift::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-image: url('gift-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: giftFloat 2s ease-in-out infinite;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

input, select, textarea {
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    background: rgba(80, 80, 80, 0.5);
    transition: all 0.3s ease;
    font-family: inherit;
    color: white;
    width: 100%;
    backdrop-filter: blur(5px);
}

input::placeholder, 
textarea::placeholder {
    color: white;
    opacity: 1;
}

select {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

select option {
    background: #8B1818;
    color: white;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

textarea {
    min-height: 80px;
    resize: vertical;
}

.radio-group {
    background: rgba(80, 80, 80, 0.5);
    padding: 15px 20px;
    border-radius: 25px;
    text-align: left;
    color: white;
}

.radio-group label {
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.radio-group div {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 10px;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
    accent-color: var(--primary-color);
}

button {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
}

button:hover {
    background: linear-gradient(145deg, var(--primary-color), var(--dark-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

button:active {
    transform: translateY(1px);
}

.terms, .contact-info {
    color: white;
    font-size: 12px;
    margin-top: 15px;
    opacity: 0.8;
}

.prize-container {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--light-color);
    backdrop-filter: blur(5px);
    padding: 40px;
    margin: 30px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
    color: white;
    font-size: 1.5em;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.prize-container::before,
.prize-container::after {
    content: '💝';
    position: absolute;
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
    top: 50%;
}

.prize-container::before {
    left: 20px;
    transform: translateY(-50%);
}

.prize-container::after {
    right: 20px;
    transform: translateY(-50%);
    content: '💖';
    animation-delay: 1.5s;
}

/* Stiluri pentru validare */
input:invalid,
select:invalid,
textarea:invalid {
    border-color: rgba(204, 51, 51, 0.5);
}

input:valid,
select:valid,
textarea:valid {
    border-color: rgba(45, 90, 39, 0.5);
}

/* Adăugăm responsive design */
@media (max-width: 480px) {
    .overlay {
        padding: 10px;
    }

    .game-container {
        width: 95%;
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .gifts-container, .gifts-selection {
        gap: 10px;
        margin: 15px 0;
    }

    input, select, textarea, .radio-group {
        padding: 12px;
    }

    button {
        padding: 15px;
        font-size: 16px;
    }

    .prize-container {
        font-size: 20px;
        padding: 15px;
        margin: 20px 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Adăugăm stiluri pentru scroll personalizat */
.overlay::-webkit-scrollbar {
    width: 8px;
}

.overlay::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.overlay::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.overlay::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Stilizăm scrollbar-ul pentru game-container */
.game-container::-webkit-scrollbar {
    width: 6px;
}

.game-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.game-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.game-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive design pentru înălțimi mai mici */
@media (max-height: 700px) {
    .game-container {
        height: 95vh;
    }
}

/* Adăugăm animațiile pentru cadouri */
@keyframes giftAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    70% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.gifts-container .gift {
    animation: 
        giftAppear 0.5s ease-out backwards,
        giftBounce 2s ease-in-out infinite;
}

.gifts-container .gift:nth-child(1) {
    animation-delay: 0.2s, 0s;
}

.gifts-container .gift:nth-child(2) {
    animation-delay: 0.4s, 0.75s;
}

.gifts-container .gift:nth-child(3) {
    animation-delay: 0.6s, 1.5s;
}

.gifts-container .gift:nth-child(4) {
    animation-delay: 0.8s, 2.25s;
}

/* Adăugăm o animație continuă subtilă pentru iconița cadoului */
@keyframes giftFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Ajustăm animația de bounce pentru prima pagină să fie mai subtilă și mai rapidă */
@keyframes giftBounce {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-5px) rotate(1deg);
    }
}

/* Modificăm layout-ul pentru ecranul de selecție a cadourilor */
.gifts-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px auto;
    max-width: 300px;
}

.gifts-selection .gift {
    width: 100%;
    height: 100px;
    background: var(--primary-color);
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gifts-selection .gift:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gifts-selection .gift::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 40%;
    background-image: url('gift-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Stiluri pentru cadouri dezactivate */
.gifts-selection .gift.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.gifts-selection .gift.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Ajustăm animația de intrare pentru a fi mai rapidă */
@keyframes giftSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ajustăm dimensiunea iconițelor pentru cadourile mai mari */
.gifts-selection .gift::after {
    width: 40%;
    height: 40%;
}

/* Adăugăm stilurile pentru landing page păstrând stilurile existente pentru joc */
.landing-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding-top: 0;
    gap: 0;
}

.background-image {
    width: 100%;
    height: 100vh;
    background-image: url('head-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.prizes-image {
    width: 100%;
    height: 593px;
    background-image: url('caresunt-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-image .open-game-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    width: 90%;
}

.background-image .open-game-btn:hover {
    transform: translate(-50%, -53%);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: var(--dark-color);
}

.background-image .open-game-btn:active {
    transform: translateY(1px);
}

/* Media query pentru mobile */
@media (max-width: 768px) {
    .background-image {
        background-image: url('head-mobile.png');
        height: 100vh;
        background-size: contain;
        background-position: top center;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 100px;
        margin: 0;
    }

    .background-image .open-game-btn {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
        width: 80%;
        max-width: 300px;
    }

    .background-image .open-game-btn:hover {
        transform: translateY(-3px);
    }

    .prizes-image {
        background-image: url('care sunt mobile.png');
        width: 100%;
        height: 1000px;
        background-size: contain;
        background-position: top center;
    }

    .open-game-btn {
        padding: 12px 25px;
        font-size: 14px;
        max-width: 200px;
    }

    .landing-page {
        gap: 0;
    }
}

/* Pentru ecrane foarte înguste */
@media (max-width: 480px) {
    .background-image {
        min-height: 500px;
        padding-bottom: 80px;
    }

    .background-image .open-game-btn {
        width: 90%;
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* Pentru ecrane foarte scurte */
@media (max-height: 600px) {
    .background-image {
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }
}

/* Stiluri pentru banner-ul Denta Clinic */
.denta-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 15px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    z-index: 1000;
    text-transform: uppercase;
}

.denta-banner .arrow {
    margin-left: 8px;
    font-size: 20px;
}

/* Ajustăm landing page pentru a nu fi ascuns de banner */
.landing-page {
    padding-top: 50px; /* Înălțimea banner-ului + un pic de spațiu */
}

/* Responsive pentru mobile */
@media (max-width: 768px) {
    .denta-banner {
        font-size: 14px;
        padding: 12px;
    }
    
    .landing-page {
        padding-top: 45px;
    }
}

/* Adăugăm un media query pentru ecrane mai mari pentru a ne asigura că imaginea de desktop își păstrează dimensiunile corecte */
@media (min-width: 1920px) {
    .prizes-image {
        max-width: 1920px;
        margin: 0 auto;
    }
}

/* Stiluri pentru secțiunea de premii */
.prizes-section {
    background: transparent;
    padding: 60px 20px;
    position: relative;
}

.prizes-section h2 {
    text-align: center;
    color: white;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.prize-box {
    background: linear-gradient(135deg, white, var(--light-color));
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.prize-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--light-color), var(--primary-color));
}

.category {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category span {
    font-size: 1.4em;
}

.prize-box h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-style: italic;
}

.prize-details {
    color: #666;
    margin-bottom: 25px;
}

.prize-details .value {
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 5px;
}

.prize-btn {
    background: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.prize-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .prizes-section {
        padding: 40px 15px;
    }

    .prizes-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .prizes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .prize-box {
        padding: 20px;
    }
}

/* Stiluri pentru secțiunea FAQ */
.faq-section {
    background: #fff;
    padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
    color: var(--accent-color);
    font-size: 2.5em;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(204, 51, 51, 0.02);
}

.faq-question .icon {
    font-size: 1.5em;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 30px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

/* Responsive design pentru FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1em;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Stiluri pentru secțiunea de regulament */
.rules-section {
    background: linear-gradient(135deg, #CC3333 0%, #AA2222 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('gift-icon.png') center/contain no-repeat;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.rules-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    position: relative;
}

.rules-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rules-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #CC3333;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rules-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.rules-btn .arrow {
    transition: transform 0.3s ease;
}

.rules-btn:hover .arrow {
    transform: translateX(5px);
}

/* Responsive design pentru secțiunea de regulament */
@media (max-width: 768px) {
    .rules-section {
        padding: 60px 20px;
    }

    .rules-section h2 {
        font-size: 2.5em;
    }

    .rules-description {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .rules-btn {
        padding: 12px 30px;
        font-size: 1em;
    }
}

/* Stiluri pentru secțiunea statistici */
.stats-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    color: white;
}

.snowfall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    animation: snow 20s linear infinite;
    opacity: 0.1;
    pointer-events: none;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
}

/* Stiluri pentru secțiunea CTA de Crăciun */
.christmas-cta,
.christmas-decorations,
.christmas-lights,
.christmas-garland,
.decorative-elements {
    display: none;
}

/* Lumini de Crăciun */
.christmas-lights {
    display: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.christmas-cta h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.christmas-cta p {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.9;
}

.countdown {
    font-size: 1.4em !important;
    font-weight: 600;
    margin: 30px 0;
}

.days-left {
    color: #ffd700;
    font-size: 1.2em;
}

/* Stiluri actualizate pentru butonul CTA */
.cta-btn.open-game-btn {
    background: white;
    color: var(--primary-color);
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: auto;
    max-width: 250px;
    margin: 30px auto 0;
    white-space: nowrap;
    position: relative;
}

.cta-btn.open-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--light-color);
}

.btn-icon {
    content: '💝';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.cta-btn.open-game-btn:hover .btn-icon:first-child {
    transform: scale(1.1);
}

.cta-btn.open-game-btn:hover .btn-icon:last-child {
    transform: rotate(20deg);
}

@keyframes twinkle {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Media query pentru mobile */
@media (max-width: 768px) {
    .christmas-cta {
        padding: 40px 15px;
    }

    .christmas-cta h2 {
        font-size: 2em;
        margin-bottom: 12px;
    }

    .cta-btn.open-game-btn {
        padding: 10px 20px;
        font-size: 0.9em;
        max-width: 220px;
        margin-top: 25px;
    }

    .btn-icon {
        font-size: 1.1em;
    }

    .countdown {
        font-size: 1.2em !important;
        margin: 20px 0;
    }
}

/* Animații */
@keyframes snow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 500px 1000px;
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 20px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .christmas-cta h2 {
        font-size: 2em;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

/* Pentru ecrane foarte mici */
@media (max-width: 360px) {
    .cta-btn.open-game-btn {
        padding: 10px 15px;
        font-size: 0.85em;
        gap: 8px;
    }

    .btn-icon {
        font-size: 1em;
    }
}

/* Elemente decorative de Crăciun pentru toate secțiunile */
.christmas-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Decorațiuni pentru secțiunea de premii */
.prizes-section {
    position: relative;
    overflow: hidden;
}

.prizes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('snowflake.png') repeat;
    opacity: 0.03;
    animation: snowfall 20s linear infinite;
}

.prizes-section::after {
    content: '🎄';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    opacity: 0.5;
}

/* Decorațiuni pentru secțiunea FAQ */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: repeating-linear-gradient(
        45deg,
        #CC3333 0px,
        #CC3333 10px,
        #AA2222 10px,
        #AA2222 20px
    );
    opacity: 0.1;
}

.faq-section .christmas-lights {
    top: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #ffd700 0px,
        #ffd700 10px,
        #ff4444 10px,
        #ff4444 20px,
        #22cc22 20px,
        #22cc22 30px
    );
    animation: twinkle 1.5s ease-in-out infinite alternate;
}

/* Decorațiuni pentru secțiunea de statistici */
.stats-section .snowfall {
    background-size: 100px 100px;
    opacity: 0.15;
}

.stats-section::after {
    content: '💝';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    opacity: 0.3;
}

/* Decorațiuni pentru secțiunea de regulament */
.rules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, #ffd700 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, #ffd700 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, #ffd700 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, #ffd700 1px, transparent 1px);
    background-size: 300px 300px;
    opacity: 0.1;
    animation: twinkle 2s ease-in-out infinite alternate;
}

/* Animații pentru elementele de Crăciun */
@keyframes snowfall {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 1000px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Adăugăm decorațiuni suplimentare pentru CTA */
.christmas-cta {
    position: relative;
}

.christmas-cta::before {
    content: '🎅';
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
}

.christmas-cta::after {
    content: '🎁';
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 40px;
    animation: float 3s ease-in-out infinite 1.5s;
    opacity: 0.7;
}

.christmas-lights {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Media queries pentru responsive */
@media (max-width: 768px) {
    .christmas-cta::before,
    .christmas-cta::after,
    .prizes-section::after,
    .stats-section::after {
        font-size: 30px;
    }

    .christmas-decoration {
        display: none;
    }
}

/* Adăugăm mai multe elemente decorative de Crăciun */
.christmas-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Globuri animate */
.ornament {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #ffd700);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: swing 3s ease-in-out infinite;
}

.ornament:nth-child(1) { left: 5%; top: 10%; animation-delay: 0s; }
.ornament:nth-child(2) { left: 15%; top: 20%; animation-delay: 0.5s; }
.ornament:nth-child(3) { right: 5%; top: 15%; animation-delay: 1s; }
.ornament:nth-child(4) { right: 15%; top: 25%; animation-delay: 1.5s; }

/* Fulgi de nea animați */
.snowflake {
    position: fixed;
    color: white;
    font-size: 20px;
    animation: snowfall-vertical 10s linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 0;
}

/* Ghirlandă de lumini */
.christmas-garland {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        #ff0000 0px,
        #ff0000 10px,
        #00ff00 10px,
        #00ff00 20px,
        #ffd700 20px,
        #ffd700 30px
    );
    opacity: 0.15;
    animation: twinkle 1s ease-in-out infinite alternate;
}

/* Animații noi */
@keyframes swing {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

@keyframes snowfall-vertical {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Adăugăm mai multe decorațiuni pentru secțiuni */
.section-decoration {
    position: absolute;
    font-size: 30px;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.decoration-left {
    left: 20px;
    animation-delay: 0.5s;
}

.decoration-right {
    right: 20px;
    animation-delay: 1s;
}

/* Decorațiuni specifice pentru fiecare secțiune */
.prizes-section .section-decoration:nth-child(1)::after { content: '🎄'; }
.prizes-section .section-decoration:nth-child(2)::after { content: '🎁'; }

.faq-section .section-decoration:nth-child(1)::after { content: '⛄'; }
.faq-section .section-decoration:nth-child(2)::after { content: '❄️'; }

.stats-section .section-decoration:nth-child(1)::after { content: '🦌'; }
.stats-section .section-decoration:nth-child(2)::after { content: '🛷'; }

.rules-section .section-decoration:nth-child(1)::after { content: '🎅'; }
.rules-section .section-decoration:nth-child(2)::after { content: '🔔'; }

/* Efecte de zăpadă pentru fundal */
.snow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, white 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: snow-fall 20s linear infinite;
}

/* Eliminăm padding-ul de la landing page */
.landing-page {
    padding-top: 0;
}

/* Modificăm stilul pentru divider-ul care ne place */
.christmas-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #ffd700 0px,
        #ffd700 20px,
        transparent 20px,
        transparent 40px
    );
    animation: twinkle 1s ease-in-out infinite alternate;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Simplificăm secțiunea de premii */
.prizes-section {
    background: transparent;
    padding: 60px 20px;
    position: relative;
}

/* Eliminăm decorațiunile excesive */
.christmas-garland,
.snow-bg,
.decorative-elements,
.snowflakes {
    display: none;
}

/* Curățăm footer-ul */
.christmas-cta {
    background: var(--primary-color);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

/* Eliminăm decorațiunile excesive din footer */
.christmas-cta::before,
.christmas-cta::after {
    display: none;
}

/* Ajustăm spațierea între secțiuni */
.section-decoration {
    display: none;
}

/* Păstrăm doar divider-ul frumos pentru secțiunile importante */
.christmas-cta .christmas-lights,
.prizes-section .christmas-lights {
    display: block;
}

/* Eliminăm ornamentele animate */
.christmas-decorations {
    display: none;
}

/* Ajustăm spațierea între banner și prima imagine */
.denta-banner + .landing-page .background-image {
    margin-top: 0;
}

/* Curățăm stilurile pentru mobile */
@media (max-width: 768px) {
    .prizes-section {
        padding: 40px 15px;
    }

    .christmas-cta {
        padding: 40px 15px;
    }
}

.gift.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.gift.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Adăugăm stiluri noi pentru ecranul de rezultat */
#result-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 30px;
    overflow-y: auto;
}

#result-screen.active {
    display: flex;
}

#result-screen h2 {
    font-size: 2.5em;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    margin-bottom: 10px;
}

/* Actualizăm stilurile pentru containerul premiului */
.prize-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid var(--light-color);
    padding: 30px;
    margin: 20px auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: prizeReveal 0.8s ease-out;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
    width: 90%;
    max-width: 400px;
}

/* Ajustăm poziția decorațiunilor */
.prize-container::before,
.prize-container::after {
    content: '💝';
    position: absolute;
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
    top: 50%;
}

.prize-container::before {
    left: 20px;
    transform: translateY(-50%);
}

.prize-container::after {
    right: 20px;
    transform: translateY(-50%);
    content: '💖';
    animation-delay: 1.5s;
}

/* Centrăm textul premiului */
#prize-text {
    font-size: 1.8em;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: block;
    padding: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
}

/* Centrăm butonul și adăugăm margin pentru spațiere */
#claim-prize {
    margin: 20px auto;
    max-width: 300px;
    width: 90%;
}

/* Centrăm textul de contact */
.contact-info {
    text-align: center;
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
}

/* Ajustări pentru mobile */
@media (max-width: 768px) {
    .prize-container {
        padding: 20px;
    }

    .prize-container::before,
    .prize-container::after {
        font-size: 30px;
    }

    #prize-text {
        font-size: 1.5em;
        padding: 15px;
    }
}

/* Stilul pentru butonul din hero */
.background-image .open-game-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    width: 90%;
}

.background-image .open-game-btn:hover {
    transform: translate(-50%, -53%);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: var(--dark-color);
}

/* Stilul pentru butonul din footer */
.christmas-cta .cta-btn.open-game-btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 50px;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: auto;
    max-width: 250px;
    transform: none;
}

.christmas-cta .cta-btn.open-game-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--light-color);
}

/* Stilul pentru containerul din footer */
.christmas-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Media query pentru mobile */
@media (max-width: 768px) {
    .background-image .open-game-btn {
        padding: 12px 25px;
        font-size: 14px;
        max-width: 200px;
    }
}
.stats-section .stats-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 50px;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stats-section .stats-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--light-color);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}

.faq-cta p {
    font-size: 1.2em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 50px;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--dark-color);
}

/* Adăugăm stiluri pentru pagina de mulțumire */
.thank-you-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.thank-you-page.active {
    opacity: 1;
    visibility: visible;
}

.thank-you-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 40px;
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--light-color);
    animation: popIn 0.5s cubic-bezier(0.26, 0.53, 0.74, 1.48);
}

.thank-you-title {
    color: #FFD700;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.thank-you-prize {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    color: white;
    font-size: 1.2em;
    border: 1px solid var(--light-color);
}

.thank-you-message {
    color: white;
    margin: 20px 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.back-to-site {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.back-to-site:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 30px;
    }

    .thank-you-title {
        font-size: 2em;
    }

    .thank-you-prize {
        font-size: 1.1em;
    }

    .thank-you-message {
        font-size: 1em;
    }
}

:root {
    --primary-color: #FF9EB0;    /* Noul roz principal */
    --secondary-color: #FFB6C1;  /* Light pink */
    --accent-color: #FF1493;     /* Deep pink pentru accente */
    --light-color: #FFC0CB;      /* Pink deschis */
    --dark-color: #FF748C;       /* Roz închis */
}

/* Adăugăm stilurile pentru noua secțiune */
.program-national {
    background: var(--primary-color);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    border-radius: 0;
    margin: 0;
    width: 100%;
}

.program-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trophy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.program-content h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.program-content p {
    color: #666;
    font-size: 1.2em;
    line-height: 1.6;
    margin: 0;
}

/* Media queries pentru responsive */
@media (max-width: 768px) {
    .program-national {
        padding: 40px 15px;
        margin: 0;
    }

    .program-content {
        padding: 30px 20px;
    }

    .program-content h2 {
        font-size: 2em;
    }

    .program-content p {
        font-size: 1.1em;
    }

    .trophy-icon {
        font-size: 36px;
    }
}

