:root {
    --primary-color: #FF5A5F;
    --secondary-color: #6C5CE7;
    --accent-color: #FDCB6E;
    --bg-color: #FAFAFA;
    --text-color: #2D3436;
    --white: #FFFFFF;
    --border-radius: 16px;
    --box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 800;
    color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.6);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

.zoom {
    animation: zoom 2s infinite ease-in-out;
}

@keyframes zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Bubble Animation */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    animation: float-up var(--duration) infinite ease-in-out;
    opacity: 0;
}

@keyframes float-up {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    20% { opacity: 0.4; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-1000px) scale(1.2); opacity: 0; }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Mobile Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.logo {
    height: 70px;
    object-fit: contain;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 1.5rem;
    font-weight: 600;
    display: none;
}

nav .nav-btn {
    display: inline-block;
}

section {
    padding: 4rem 5%;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #FFEAA7, #FFD0CC);
    padding: 6rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.highlight-badge {
    background: var(--accent-color);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.trust-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.category-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.category-card .icon {
    font-size: 2rem;
}

.rewards {
    background: #F0F3F8;
    animation: section-pulse 6s infinite ease-in-out;
}

@keyframes section-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.rewards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reward-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    animation: pulse-zoom 4s infinite ease-in-out;
}

@keyframes pulse-zoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.reward-box:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    animation-play-state: paused;
}

.reward-box.winner {
    border-left: 5px solid var(--accent-color);
    background: linear-gradient(to right, #fff, #fffdf5);
}

/* Registration Form Specific Styles */
.register-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.input-field {
    width: 100%;
    padding: 1rem;
    border: 2px solid #EEE;
    border-radius: 10px;
    font-size: 1rem;
    margin-top: 1rem;
    outline: none;
    transition: border 0.3s;
}

.input-field:focus {
    border-color: var(--primary-color);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.contest-checkbox {
    display: none;
}

.contest-label {
    display: block;
    background: white;
    padding: 1rem;
    border: 2px solid #EEE;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.contest-checkbox:checked + .contest-label {
    border-color: var(--primary-color);
    background: #FFF0F1;
    box-shadow: 0 4px 10px rgba(255, 90, 95, 0.2);
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.age-radio {
    display: none;
}

.age-label {
    display: block;
    background: white;
    padding: 1rem;
    border: 2px solid #EEE;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.age-radio:checked + .age-label {
    border-color: var(--secondary-color);
    background: #F3F1FD;
}

#star-talent-input-container {
    display: none;
    grid-column: 1 / -1;
    margin-top: 1rem;
}

#star-talent-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 2px solid var(--primary-color);
}

/* Results & FAQ */
.results-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

select {
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #CCC;
    font-size: 1rem;
}

.tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab {
    padding: 0.5rem 1rem;
    border: none;
    background: #EEE;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.tab.active {
    background: var(--primary-color);
    color: white;
}

.results-display {
    max-width: 600px;
    margin: 0 auto;
}

.result-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.review-slider {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    snap-type: x mandatory;
}

.review-card {
    min-width: 280px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1rem;
}

.rules-list {
    background: white;
    padding: 2rem 2rem 2rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.rules-list li {
    margin-bottom: 1rem;
}

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #FFD0CC, #FFEAA7);
    border-radius: 0;
}

footer {
    background: #2D3436;
    color: white;
    padding: 3rem 5% 1rem;
    text-align: center;
}

.contact-info {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-info h3 {
    color: white;
}

.whatsapp-btn, .instagram-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    nav a {
        display: inline-block;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .rewards-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .reward-box {
        width: 45%;
    }
    
    section {
        padding: 5rem 10%;
    }
}

/* Mobile specific refinements */
@media (max-width: 767px) {
    section {
        padding: 3rem 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100%;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    #nav-menu.active {
        right: 0;
    }
    
    #nav-menu a {
        display: block;
        margin: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
    }
    
    #nav-menu .nav-btn {
        margin-top: 1rem;
        text-align: center;
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    .hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem !important;
    }

    #hero-dates {
        padding: 1rem !important;
    }
    
    #hero-dates > div {
        gap: 15px !important;
    }
    
    .reward-box {
        padding: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .category-card h4 {
        font-size: 0.9rem;
    }

    .trust-badge-container div {
        padding: 0.8rem 1.2rem !important;
        flex-direction: column;
        text-align: center;
        border-radius: 20px !important;
    }
    
    .trust-badge-container p {
        font-size: 1.1rem !important;
    }
    
    .navbar {
        padding: 0.8rem 1.5rem;
    }
    
    .logo {
        height: 40px;
    }

    .btn-large {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

.background-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('logo.png') no-repeat center center;
    background-size: contain;
    filter: blur(3px);
    opacity: 0.1;
    z-index: -1;
}
