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

:root {
    --darty-red: #E2001A;
    --darty-red-hover: #e3000f;
    --darty-red-dark: #E21212;
    --primary-color: #E2001A;
    --primary-hover: #e3000f;
    --secondary-color: #121212;
    --success-color: #10b981;
    --text-color: #121212;
    --text-light: #666666;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Manrope', 'Noto Sans Display', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-color);
    min-height: 100vh;
    color: var(--text-color);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    padding-top: 178px;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--darty-red);
    color: var(--white);
    padding: 0.5rem 0;
    z-index: 1001;
    height: 36px;
    overflow: hidden;
}

.top-banner-marquee {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee-scroll 40s linear infinite;
    white-space: nowrap;
}

.marquee-content strong {
    margin-right: 2rem;
    font-weight: 900;
    font-size: 12px;
    line-height: 16px;
    color: var(--white);
    font-family: 'Manrope', sans-serif, 'Noto Sans Display', sans-serif;
    flex-shrink: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-stroke: 0.1px currentColor;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow);
    color: #121212;
    overflow: visible;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #121212;
    overflow: visible;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    color: var(--text-color);
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
    display: block;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: 60px;
}

.header-center {
    flex: 1;
    max-width: none;
    margin: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    overflow: visible !important;
}

.search-form {
    position: relative;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible !important;
    width: 100%;
    max-width: 800px;
    margin: 0;
    min-width: 0;
    padding-right: 0;
}

.search-input {
    width: 100%;
    padding: 0 100px 0 24px;
    height: 38px;
    border: 1px solid #8B8586;
    border-radius: 9999px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background: #FFFFFF;
    color: #121212;
    box-sizing: border-box;
    overflow: visible !important;
    line-height: 38px;
}

.search-input:focus {
    outline: none;
}

.search-submit {
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    background: #000000 !important;
    border: none;
    cursor: pointer;
    padding: 0;
    width: auto;
    min-width: 80px;
    height: 38px;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    transition: var(--transition);
    box-sizing: border-box;
    overflow: visible !important;
}

.search-submit svg {
    color: #FFFFFF !important;
    fill: currentColor;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    overflow: visible !important;
    display: block;
}

.search-submit:hover {
    background: #000000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    transition: var(--transition);
}

.header-link:hover {
    color: var(--darty-red);
}

.header-link svg {
    width: 32px;
    height: 32px;
}

.header-link span {
    display: none;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn svg {
    width: 32px;
    height: 32px;
}

.cart-btn:hover {
    color: var(--darty-red);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--darty-red);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Quiz Call-to-Action Banner */
.quiz-cta-banner {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: #121212;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 55.8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0 1rem;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
    line-height: 0;
}

.cta-button {
    background: var(--darty-red);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin: 0;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    display: inline-block;
}

.cta-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    text-align: left;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    height: 55.8px;
    line-height: 55.8px;
    display: inline-block;
}

.cta-button:hover {
    background: var(--darty-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(226, 0, 26, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Main Content */
.main-content {
    padding-top: 0;
    min-height: calc(100vh - 140px);
}

.main-content.quiz-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem 3rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 175.8px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(226, 0, 26, 0.2);
    z-index: 998;
}

.progress-bar {
    height: 100%;
    background: var(--darty-red);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(226, 0, 26, 0.5);
}


.quiz-screen {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease;
}

.quiz-screen.active {
    display: block;
}

@media (max-width: 768px) {
    .quiz-screen.active {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 200px);
    }
}

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

.screen-content {
    background: var(--white);
    border-radius: 8px;
    padding: 1.2rem 1.6rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    perspective: 1300px;
    perspective-origin: center center;
}

/* Welcome Screen */
.welcome-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gift-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateGift3D 4s linear infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    will-change: transform;
}

@keyframes rotateGift3D {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(2deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(-2deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

.screen-title {
    font-size: 30px;
    font-weight: 400;
    font-family: 'Party', 'Assistant', sans-serif;
    color: #121212;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.screen-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.bonus-preview {
    background: var(--darty-red);
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bonus-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.bonus-amount {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.bonus-number {
    font-size: 2rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.bonus-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.screen-note {
    margin-top: 0.8rem;
    font-size: 0.65rem;
    color: var(--text-light);
}

/* Quiz Explanation */
.quiz-explanation {
    background: linear-gradient(135deg, rgba(226, 0, 26, 0.05) 0%, rgba(226, 0, 26, 0.1) 100%);
    border: 2px solid rgba(226, 0, 26, 0.2);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin: 1rem 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.quiz-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--darty-red), var(--darty-red-hover));
}

.explanation-text {
    font-size: 0.7rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    text-align: center;
}

.explanation-text strong {
    color: var(--darty-red);
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
}

/* Question Screen */
.question-number {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.question-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-subtitle strong {
    color: var(--darty-red);
    font-weight: 700;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.option-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.option-card:hover {
    border-color: var(--darty-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.option-card.selected {
    border-color: var(--darty-red);
    background: var(--darty-red);
    color: var(--white);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(226, 0, 26, 0.3);
}

.option-icon {
    font-size: 2rem;
}

.option-text {
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Options List */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.option-btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    width: 100%;
}

.option-btn:hover {
    border-color: var(--darty-red);
    background: var(--white);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.option-btn.selected {
    border-color: var(--darty-red);
    background: var(--darty-red);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(226, 0, 26, 0.2);
}

.option-label {
    font-size: 1rem;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    transition: var(--transition);
}

.phone-input-wrapper:focus-within {
    border-color: var(--darty-red);
    box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.1);
}

.phone-prefix {
    padding: 0.875rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    border-right: 1px solid var(--border-color);
    background: #f5f5f5;
    flex-shrink: 0;
}

.phone-input-wrapper input {
    border: none;
    padding: 0.875rem 1rem;
    flex: 1;
    border-radius: 0;
}

.phone-input-wrapper input:focus {
    outline: none;
    box-shadow: none;
}

.phone-input-wrapper.error {
    border-color: var(--darty-red) !important;
    box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.1);
}

.form-group input:focus {
    outline: none;
    border-color: var(--darty-red);
    box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input.error {
    border-color: var(--darty-red) !important;
    box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.1);
}

.error-message {
    display: block;
    color: var(--darty-red);
    font-size: 0.8125rem;
    margin-top: 0.375rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: var(--darty-red);
    color: var(--white);
    box-shadow: var(--shadow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--darty-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
    background: var(--darty-red-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--darty-red);
    border: 2px solid var(--darty-red);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--darty-red);
    color: var(--white);
    border-color: var(--darty-red);
}

.btn-start,
.btn-submit {
    width: 100%;
    max-width: 400px;
    padding: 1rem 1.6rem;
    font-size: 0.9rem;
    background: var(--secondary-color);
    color: var(--white);
    display: block;
    margin: 0 auto;
}

.btn-start:hover,
.btn-submit:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-start:active,
.btn-submit:active {
    transform: translateY(0);
    background: #1a1a1a;
}

/* Result Screen */
.result-animation {
    position: relative;
    margin-bottom: 2rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bonus-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--darty-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(226, 0, 26, 0.4);
    animation: scaleIn 0.8s ease;
    position: relative;
    z-index: 1;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.bonus-circle-inner {
    text-align: center;
    color: var(--white);
}

.bonus-amount-large {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.bonus-currency {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.result-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.result-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.result-details {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.result-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-shop {
    min-width: 200px;
}

.btn-share {
    min-width: 150px;
}

.result-note {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Prize Draw Screen Styles */
.prize-wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0 1rem;
    min-height: auto;
    padding-top: 40px;
}

.prize-wheel {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 8px solid var(--darty-red);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease-out;
    transform-origin: center center;
    background: conic-gradient(
        #FF3B4A 0deg 70deg,
        #ffffff 70deg 72deg,
        #E2001A 72deg 142deg,
        #ffffff 142deg 144deg,
        #C1121F 144deg 214deg,
        #ffffff 214deg 216deg,
        #A01D26 216deg 286deg,
        #ffffff 286deg 288deg,
        #8B1A1F 288deg 358deg,
        #ffffff 358deg 360deg
    );
}

.wheel-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.wheel-segment:nth-child(1) {
    transform: rotate(36deg);
}

.wheel-segment:nth-child(2) {
    transform: rotate(108deg);
}

.wheel-segment:nth-child(3) {
    transform: rotate(180deg);
}

.wheel-segment:nth-child(4) {
    transform: rotate(252deg);
}

.wheel-segment:nth-child(5) {
    transform: rotate(324deg);
}

.wheel-segment.prize-selected {
    border: 3px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.segment-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    white-space: nowrap;
    margin-top: -65px;
    letter-spacing: 0.3px;
}

.wheel-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 28px solid #FFD700;
    z-index: 100;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.wheel-pointer::after {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 22px solid #FFA500;
    z-index: -1;
}

.btn-spin-wheel {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.prize-result {
    margin-top: 1rem;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.prize-amount-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.prize-amount-text {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--darty-red);
}

.prize-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--darty-red);
}

.prize-result-text {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.prize-result-text strong {
    color: var(--darty-red);
    font-weight: 700;
}

.btn-continue-prize {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

/* Compact prize draw screen */
#prizeDrawScreen .screen-content {
    padding: 1.5rem 1rem;
}

#prizeDrawScreen .question-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

#prizeDrawScreen .screen-subtitle {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

#prizeDrawScreen .screen-content {
    padding: 1.2rem 0.8rem;
}

@media (max-width: 768px) {
    .prize-wheel {
        width: 200px;
        height: 200px;
    }
    
    .segment-text {
        font-size: 1rem;
        margin-top: -60px;
    }
    
    .prize-amount-text {
        font-size: 2rem;
    }
    
    .prize-currency {
        font-size: 1.25rem;
    }
    
    .wheel-pointer {
        top: -20px;
        border-left-width: 15px;
        border-right-width: 15px;
        border-top-width: 24px;
    }
}

/* Confetti Animation */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--darty-red);
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
    to {
        transform: translateY(200px) rotate(720deg);
        opacity: 0;
    }
}

/* Footer */
.site-footer {
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Manrope', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 180px;
        padding-bottom: 0;
    }
    
    .top-banner {
        height: 36px;
    }
    
    .top-banner-marquee strong {
        font-size: 11px;
        line-height: 14px;
    }
    
    .site-header {
        top: 36px;
        height: 70px;
    }
    
    .quiz-cta-banner {
        top: 106px;
        height: 75px;
    }
    
    .cta-banner {
        top: 106px;
        height: 50px;
    }
    
    .main-content {
        padding-top: 1rem;
        padding-bottom: 0;
        margin-bottom: 0;
        min-height: calc(100vh - 181px - 120px);
    }
    
    .main-content.quiz-container {
        padding: 0.5rem;
    }
    
    .screen-content {
        margin-bottom: 0;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
        gap: 1rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .header-center {
        display: none;
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .header-link span {
        display: none;
    }
    
    .quiz-cta-banner {
        top: 95px;
    }
    
    .quiz-cta-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.125rem 1rem;
        height: auto;
    }
    
    .cta-text {
        font-size: 0.875rem;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 200px;
    }
    
    .progress-container {
        top: 180px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    .main-content.quiz-container {
        padding: 1rem 0.5rem;
    }
    
    .quiz-screen.active {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 200px);
    }

    .screen-content {
        padding: 2rem 1.5rem;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
    }

    .screen-title {
        font-size: 2rem;
    }

    .question-title {
        font-size: 1.5rem;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .option-card {
        padding: 1rem 0.75rem;
    }

    .option-icon {
        font-size: 2rem;
    }

    .option-text {
        font-size: 0.875rem;
    }

    .bonus-preview {
        padding: 1.5rem;
    }

    .bonus-number {
        font-size: 2.5rem;
    }

    .bonus-amount {
        font-size: 1.5rem;
    }
    
    .quiz-explanation {
        padding: 1.25rem 1rem;
        margin: 1.5rem 0;
    }
    
    .explanation-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .explanation-text strong {
        font-size: 0.9375rem;
    }

    .bonus-circle {
        width: 150px;
        height: 150px;
    }

    .bonus-amount-large {
        font-size: 2.5rem;
    }

    .result-title {
        font-size: 2rem;
    }

    .result-actions {
        flex-direction: column;
    }

    .btn-shop,
    .btn-share {
        width: 100%;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cookie-banner-content {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.cookie-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.cookie-logo-link {
    display: flex;
    align-items: center;
}

.cookie-logo-img {
    height: 28px;
    width: auto;
}

.cookie-close-btn {
    background: none;
    border: none;
    color: #0066cc;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
    text-decoration: underline;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-close-btn:hover {
    color: #0052a3;
}

.cookie-banner-body {
    padding: 1.25rem 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.cookie-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cookie-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.cookie-text strong {
    font-weight: 600;
    color: var(--text-color);
}

.cookie-list {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
}

.cookie-list li {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.cookie-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--darty-red);
    font-weight: bold;
    font-size: 1rem;
}

.cookie-partners-link {
    display: inline-block;
    color: var(--text-color);
    text-decoration: underline;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    transition: var(--transition);
}

.cookie-partners-link:hover {
    color: var(--darty-red);
}

.cookie-banner-footer {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    flex: 1;
    min-width: 180px;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid;
}

.cookie-btn-config {
    background: var(--white);
    color: var(--darty-red);
    border-color: var(--darty-red);
}

.cookie-btn-config:hover {
    background: var(--darty-red);
    color: var(--white);
}

.cookie-btn-accept {
    background: var(--darty-red);
    color: var(--white);
    border-color: var(--darty-red);
}

.cookie-btn-accept:hover {
    background: var(--darty-red-hover);
    border-color: var(--darty-red-hover);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 0.5rem;
    }
    
    .cookie-banner-content {
        max-width: 100%;
        border-radius: 4px;
        max-height: calc(100vh - 1rem);
    }
    
    .cookie-banner-header {
        padding: 0.875rem 1rem;
    }
    
    .cookie-logo-img {
        height: 24px;
    }
    
    .cookie-close-btn {
        font-size: 0.75rem;
        padding: 0.25rem;
    }
    
    .cookie-banner-body {
        padding: 1rem;
    }
    
    .cookie-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .cookie-text {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .cookie-list li {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
        padding-left: 1rem;
    }
    
    .cookie-partners-link {
        font-size: 0.8125rem;
        margin-top: 0.5rem;
    }
    
    .cookie-banner-footer {
        flex-direction: column;
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0;
    }
    
    .cookie-banner-content {
        border-radius: 0;
        max-height: 100vh;
    }
    
    .cookie-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 180px;
    }
    
    .main-content {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .main-content.quiz-container {
        padding: 0.5rem;
    }
    
    .quiz-screen.active {
        display: block;
    }
    
    .screen-content {
        padding: 0.75rem 0.5rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    /* Welcome screen compact for mobile */
    #welcomeScreen {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        min-height: calc(100vh - 181px - 120px);
        width: 100%;
    }
    
    #welcomeScreen .screen-content {
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
        gap: 1rem;
        margin-top: 4rem;
    }
    
    #welcomeScreen .welcome-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
    
    #welcomeScreen .screen-title {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    #welcomeScreen .screen-subtitle {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
    
    #welcomeScreen .quiz-explanation {
        padding: 0.5rem 0.6rem;
        margin: 0;
    }
    
    #welcomeScreen .explanation-text {
        font-size: 0.6rem;
        line-height: 1.4;
    }
    
    #welcomeScreen .explanation-text strong {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }
    
    #welcomeScreen .bonus-preview {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    #welcomeScreen .bonus-amount {
        font-size: 0.9rem;
    }
    
    #welcomeScreen .bonus-number {
        font-size: 1.5rem;
    }
    
    #welcomeScreen .bonus-label {
        font-size: 0.65rem;
    }
    
    #welcomeScreen .btn-start {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    #welcomeScreen .screen-note {
        font-size: 0.55rem;
        margin-top: 0;
    }

    .screen-title {
        font-size: 1.75rem;
    }

    .question-title {
        font-size: 1.25rem;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .option-card {
        padding: 0.875rem 0.5rem;
    }

    .option-icon {
        font-size: 1.75rem;
    }

    .option-text {
        font-size: 0.8125rem;
    }
    
    .site-footer {
        padding: 2rem 0 1rem;
        margin-top: 0;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.8125rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

