* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #0f0f14;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a1a25, #0d0d12);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid rgba(0,255,150,0.2);
}

.logo h1 {
    font-size: 38px;
    font-weight: 900;
    text-shadow: 0 0 12px #00ff96;
}

.logo p {
    font-size: 18px;
    opacity: 0.8;
}

/* BADGE */
.premio-badge {
    margin-top: 25px;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(0,255,150,0.3);
}

.premio-badge span {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

.premio-badge strong {
    font-size: 26px;
    font-weight: 900;
    color: #00ff96;
}

/* INFO CARD */
.info-card {
    margin-top: 40px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 25px rgba(0,255,150,0.15);
}

.info-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 26px;
    color: #00ff96;
    text-shadow: 0 0 8px #00ff96;
}

.rules-list {
    list-style: none;
    line-height: 1.8;
    font-size: 17px;
}

.rules-list li strong {
    color: #00ff96;
}

/* STATUS */
.status-section {
    margin-top: 35px;
    text-align: center;
    padding: 25px;
    border-radius: 18px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,255,150,0.1);
    box-shadow: 0 0 30px rgba(0,255,150,0.1);
}

.status-section h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
}

/* PROGRESS BAR */
.progress-bar-container {
    width: 100%;
    height: 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    background: #00ff96;
    box-shadow: 0 0 15px #00ff96;
    transition: 0.5s;
}

/* BADGES */
.esgotado-badge, .error h3 {
    color: #ff4d4d;
    font-weight: 900;
}

/* ALERT */
.alert-box.error {
    background: rgba(255,0,0,0.1);
    border-left: 4px solid #ff4d4d;
    padding: 15px;
    margin: 20px 0;
    border-radius: 12px;
}

/* BOTÕES */
.btn, .btn-success {
    display: inline-block;
    margin-top: 18px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-success {
    background: linear-gradient(90deg, #00ff96, #00cc77);
    color: #0a0a10;
    box-shadow: 0 0 25px rgba(0,255,150,0.6);
}

.btn-success:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0,255,150,0.9);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* DESATIVADO */
.btn-disabled {
    background: #222;
    color: #777;
    cursor: not-allowed;
}

/* ANIMAÇÃO PULSAR */
.pulsate {
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.07); }
}

/* FOOTER */
footer {
    margin-top: 60px;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
    border-top: 1px solid rgba(0,255,150,0.1);
}
