:root {
    --rosa-choque: #ff007f;
    --preto-base: #050505;
    --glass: rgba(255, 255, 255, 0.05);
    --verified-blue: #1d9bf0;
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    -webkit-font-smoothing: antialiased;
}

body, html {
    width: 100%; height: 100%;
    overflow: hidden;
    background: var(--preto-base);
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.bg-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #000000 0%, #440022 50%, #ff007f 100%);
    opacity: 0.85; z-index: 1;
}

#emoji-layer {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2; pointer-events: none;
}

.floating-emoji {
    position: absolute; will-change: transform;
    opacity: 0.4; animation: moveUp 8s linear infinite;
}

.main-wrapper {
    position: relative; z-index: 3;
    width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
}

#quiz-container {
    width: 90%; max-width: 380px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 127, 0.4);
    border-radius: 35px; padding: 35px 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.img-container {
    width: 115px; height: 115px; margin: 0 auto 15px;
    border-radius: 50%; padding: 3px;
    background: linear-gradient(45deg, var(--rosa-choque), #ffffff);
}

.profile-img {
    width: 100%; height: 100%; border-radius: 50%;
    object-fit: cover; display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

.profile-name { 
    color: #fff; font-size: 1.6rem; margin-bottom: 5px; 
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* Bolinha de Verificado Oficial */
.verified-badge-official {
    width: 20px; height: 20px;
    background-color: var(--verified-blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    display: inline-block;
}

.status-online {
    color: #00ff88; font-size: 0.8rem; font-weight: bold;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.ping {
    width: 8px; height: 8px; background: #00ff88; 
    border-radius: 50%; box-shadow: 0 0 8px #00ff88;
    animation: blink 1.5s infinite;
}

.step { display: none; }
.step.active { display: block; animation: slideUp 0.4s ease-out; }

.info h2 { color: var(--rosa-choque); text-transform: uppercase; font-size: 1.2rem; margin-bottom: 12px; }
.info p { color: #dddddd; font-size: 1rem; line-height: 1.4; margin-bottom: 25px; }
.info b { color: var(--rosa-choque); }

.btn-opt {
    width: 100%; padding: 18px; margin-bottom: 12px;
    background: var(--glass); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; border-radius: 18px; font-weight: 700;
    cursor: pointer; transition: 0.3s; text-transform: uppercase;
}

.btn-opt:active { background: var(--rosa-choque); border-color: var(--rosa-choque); transform: scale(0.97); }

.liberado-titulo {
    color: var(--rosa-choque); font-size: 1.7rem; font-weight: 900;
    text-transform: uppercase; margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.final-subtitulo {
    color: #ffffff; font-size: 1rem; font-weight: 500;
    line-height: 1.5; margin-bottom: 25px;
}

.scarcity {
    background: rgba(255, 0, 0, 0.15); color: #ff4d4d;
    padding: 12px; border-radius: 15px; font-weight: 800; font-size: 0.9rem;
    margin-bottom: 20px; border: 1px solid rgba(255, 77, 77, 0.3);
}

.cta-main {
    background: #ffffff; color: #000; text-decoration: none;
    padding: 22px; border-radius: 20px; display: block;
    font-weight: 900; font-size: 1.2rem; margin-top: 10px;
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.5);
    animation: pulse 2s infinite; text-transform: uppercase;
}

@keyframes moveUp { 0% { transform: translateY(110vh) rotate(0); } 100% { transform: translateY(-15vh) rotate(360deg); } }
@keyframes blink { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.loader {
    width: 35px; height: 35px; border: 4px solid #222;
    border-top-color: var(--rosa-choque); border-radius: 50%;
    margin: 30px auto; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }