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

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

/* Winners Section */
.winners-section {
    background-color: #1a1a2e;
    padding: 15px 20px 5px 20px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.winners-title {
    font-size: 14px;
    margin-bottom: 12px;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.winners-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 2px 0 2px 0;
    margin-bottom: 3px;
    margin-left: -20px;
    padding-left: 20px;
}

.winners-scroll::-webkit-scrollbar {
    display: none;
}

.winners-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.winner-item {
    flex: 0 0 140px;
    text-align: center;
    padding: 15px;
    border: 2px solid #f39c12;
    border-radius: 12px;
    background-color: rgba(50, 50, 80, 0.6);
}

.winner-photo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #f39c12;
    overflow: hidden;
    margin: 0 auto 10px;
    background: #333;
}

.winner-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-name-small {
    font-size: 13px;
    margin: 8px 0 5px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.winner-prize-small {
    font-size: 11px;
    color: #2ecc71;
    margin: 0;
    font-weight: 600;
}

/* Header */
.header-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 20px;
}

.intro-text {
    font-size: 14px;
}

/* Roleta */
.roulette-section {
    text-align: center;
    padding: 25px 20px;
}

.roulette-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.roulette-container {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 10px auto;
}

#roleta {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 8s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.roulette-pointer {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(180deg);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 30px solid red;
}

.button-container {
    margin-top: 20px;
}

#girarBtn {
    padding: 15px 30px;
    background: orange;
    border: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.2s;
}

#girarBtn:hover:not(:disabled) {
    transform: scale(1.05);
}

#girarBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Timer */
.timer-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 20px;
}

.timer-text {
    font-size: 11px;
    margin-bottom: 8px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    background: #f5f5f5;
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
}

.countdown-item span {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.countdown-item label {
    font-size: 10px;
}

/* Info Section */
.info-section {
    background-color: #000;
    color: #fff;
    padding: 35px 20px;
    text-align: center;
}

.info-section .container {
    background: transparent;
    color: #fff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.info-section h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #f39c12;
}

.info-box {
    border: 1px solid #555;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    background: linear-gradient(135deg, #333 0%, #444 100%);
}

.info-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.info-section ul {
    list-style: none;
    line-height: 1.8;
    padding: 0;
    margin: 0;
}

.info-section ul li {
    font-size: 14px;
    margin: 8px 0;
}

.video-container {
    border: 3px solid #f39c12;
    border-radius: 8px;
    padding: 8px;
    margin: 20px auto 30px auto;
    max-width: 500px;
    background-color: #111;
}

.info-section .santa-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Prizes */
.prizes-section {
    background-color: #000;
    color: #fff;
    padding: 35px 20px;
    text-align: center;
}

.prizes-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #f39c12;
}

.prizes-list {
    list-style: none;
    margin-top: 15px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.prizes-list li {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid #555;
    font-size: 14px;
}

/* Share */
.share-section {
    background-color: #000;
    padding: 20px 20px;
    text-align: center;
}

.share-section .container {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    border: 1px solid #555;
    padding: 20px 15px;
    border-radius: 10px;
    max-width: 450px;
}

.share-section h2 {
    color: #f39c12;
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.share-section > .container > p {
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 13px;
}

.share-box {
    background: #222;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    border: 1px solid #444;
}

.share-box p {
    font-size: 12px;
    margin-bottom: 8px;
    color: #aaa;
}

.share-box input {
    width: 100%;
    padding: 8px;
    border: 1px solid #444;
    border-radius: 6px;
    margin: 6px 0;
    font-size: 11px;
    background: #333;
    color: #fff;
}

.share-box button {
    width: 100%;
    background: #f39c12;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.whatsapp-btn {
    display: block;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 12px;
    font-size: 13px;
}

/* Footer */
footer {
    background-color: #111;
    color: #999;
    text-align: center;
    padding: 25px 20px;
    font-size: 12px;
}

footer p {
    margin: 5px 0;
}

.disclaimer {
    font-size: 10px;
    margin-top: 15px;
    opacity: 0.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Notificações */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    z-index: 9999;
    animation: slideDown 0.5s ease-out, slideUp 0.5s ease-in 4.5s forwards;
    max-width: 85%;
    word-wrap: break-word;
    border: 2px solid #1BA85C;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: #000;
}

.popup-content h3 {
    margin-bottom: 15px;
}

.popup-content button,
.popup-content a {
    display: inline-block;
    margin-top: 15px;
    background: orange;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

#girarNovamente,
#popupButton {
    display: none;
}

/* Result Dialog After Registration */
.result-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

.result-dialog-content {
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    text-align: center;
}

.result-dialog-content h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.result-message {
    margin: 20px 0;
    line-height: 1.6;
    font-size: 14px;
}

.result-message p {
    margin: 10px 0;
}

.result-message .warning-text {
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.result-message .share-info {
    color: #333;
}

.result-message .bonus-text {
    color: #333;
    margin-top: 10px;
}

.share-now-btn {
    display: block;
    margin-top: 20px;
    background: #25D366;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

/* Winners Carousel Dots */
.winners-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    padding: 2px 0;
}

.winners-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.winners-dots .dot.active {
    background-color: #f39c12;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.6);
    transform: scale(1.2);
}
