* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff41;
    --secondary: #ff0040;
    --warning: #ffcc00;
    --pink: #ff69b4;
    --gold: #ffd700;
    --bg-dark: #0a0a0a;
    --bg-panel: #111111;
    --text: #ffffff;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--bg-dark);
    color: var(--primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

/* Efeitos de overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 1000;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 999;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
}

.screen {
    display: none;
    width: 100%;
    max-width: 100%;
    animation: fadeIn 0.5s ease;
    overflow-x: hidden;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ==================== TELA 1: BOOT ==================== */
#boot-screen {
    text-align: center;
}

.boot-content {
    padding: 20px 10px;
}

.boot-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: pulse 1s infinite;
}

.boot-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 20px;
    word-break: break-word;
}

.loading-bar {
    width: 90%;
    max-width: 280px;
    height: 15px;
    background: var(--bg-panel);
    border: 2px solid var(--primary);
    border-radius: 10px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #00ff9f);
    border-radius: 8px;
    animation: loadingAnim 2s ease-out forwards;
    box-shadow: 0 0 15px var(--primary);
}

@keyframes loadingAnim {
    0% { width: 0%; }
    100% { width: 100%; }
}

.boot-status {
    font-size: 0.8rem;
    opacity: 0.7;
    animation: blink 1s infinite;
}

/* ==================== TELA 2: SCANNER ==================== */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.header-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary);
    margin: 8px 0;
    word-break: break-word;
}

.header h2 {
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0.7;
}

.scanner-container {
    margin: 20px 0;
    text-align: center;
}

.scanner {
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px var(--primary), inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.scanner-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scan 2s linear infinite;
    box-shadow: 0 0 15px var(--primary);
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.target-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    animation: targetPulse 1s infinite;
}

@keyframes targetPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.scanner-text {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--warning);
    animation: blink 0.5s infinite;
}

.detection-info {
    background: var(--bg-panel);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 15px 12px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    overflow: hidden;
}

.info-line {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    opacity: 0;
    transform: translateX(-20px);
}

.info-line.show {
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-line:last-child {
    border-bottom: none;
}

.label {
    color: var(--primary);
    opacity: 0.7;
    font-size: 0.75rem;
}

.value {
    color: var(--text);
    font-size: 0.85rem;
    word-break: break-word;
}

.value.suspicious {
    color: var(--secondary);
    font-weight: bold;
    animation: suspiciousBlink 0.3s infinite;
}

@keyframes suspiciousBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ==================== TELA 3: REVEAL HER ==================== */
.reveal-container {
    text-align: center;
    padding: 10px;
}

.reveal-header {
    margin-bottom: 20px;
}

.reveal-icon {
    font-size: 1.8rem;
}

.reveal-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--warning);
    font-size: 1rem;
    margin-top: 8px;
    line-height: 1.3;
}

.photo-reveal {
    margin: 20px 0;
}

.photo-frame {
    position: relative;
    display: inline-block;
}

.her-frame {
    border: 4px solid var(--pink);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 25px var(--pink), 0 0 50px rgba(255, 105, 180, 0.3);
    animation: herGlow 2s infinite;
}

@keyframes herGlow {
    0%, 100% { box-shadow: 0 0 25px var(--pink), 0 0 50px rgba(255, 105, 180, 0.3); }
    50% { box-shadow: 0 0 40px var(--pink), 0 0 80px rgba(255, 105, 180, 0.5); }
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.photo-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3), transparent);
    animation: glowPulse 2s infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.reveal-text {
    margin: 20px 0;
}

.reveal-line {
    font-size: 1rem;
    color: var(--text);
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.4;
}

.reveal-line.show {
    animation: revealLine 0.5s forwards;
}

@keyframes revealLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-name {
    color: var(--pink);
    font-weight: bold;
    text-shadow: 0 0 10px var(--pink);
}

.arrow-down {
    font-size: 1.5rem;
    color: var(--warning);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==================== TELA 4: RING ==================== */
.ring-container {
    text-align: center;
    padding: 15px 8px;
    overflow: hidden;
}

.ring-animation {
    position: relative;
    margin-bottom: 15px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-emoji {
    font-size: 4rem;
    animation: ringFloat 2s ease-in-out infinite, ringShine 1s infinite;
}

@keyframes ringFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes ringShine {
    0%, 100% { filter: drop-shadow(0 0 15px var(--gold)); }
    50% { filter: drop-shadow(0 0 30px var(--gold)) brightness(1.2); }
}

.ring-sparkles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 100px;
    pointer-events: none;
}

.ring-sparkles span {
    position: absolute;
    font-size: 1rem;
    animation: sparkle 1.5s infinite;
}

.ring-sparkles span:nth-child(1) { top: 0; left: 15%; animation-delay: 0s; }
.ring-sparkles span:nth-child(2) { top: 10%; left: 85%; animation-delay: 0.2s; }
.ring-sparkles span:nth-child(3) { top: 50%; left: 0; animation-delay: 0.4s; }
.ring-sparkles span:nth-child(4) { top: 50%; left: 100%; animation-delay: 0.6s; }
.ring-sparkles span:nth-child(5) { top: 90%; left: 25%; animation-delay: 0.8s; }
.ring-sparkles span:nth-child(6) { top: 90%; left: 75%; animation-delay: 1s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.ring-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
    margin-bottom: 12px;
    line-height: 1.3;
    padding: 0 5px;
}

.status-box {
    background: var(--bg-panel);
    border: 2px solid var(--secondary);
    border-radius: 10px;
    padding: 12px 8px;
    margin: 12px auto;
    max-width: 100%;
    width: calc(100% - 20px);
    overflow: hidden;
}

.status-label {
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0.7;
    margin-bottom: 6px;
}

.status-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary);
    word-break: break-word;
    overflow-wrap: break-word;
}

.ring-subtitle {
    font-size: 0.95rem;
    color: var(--text);
    margin: 15px 0 12px;
    padding: 0 10px;
}

.drumroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.3rem;
    animation: drumrollAnim 0.5s infinite;
}

@keyframes drumrollAnim {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.drumroll-text {
    font-size: 0.8rem;
    color: var(--warning);
    font-style: italic;
}

/* ==================== TELA 5: REVEAL HIM (O DEUS) ==================== */
.him-container {
    text-align: center;
    padding: 15px 10px;
    position: relative;
    overflow: hidden;
}

.heavenly-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: heavenlyPulse 3s infinite;
    z-index: 0;
}

@keyframes heavenlyPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.him-intro {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.him-text {
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0;
}

.him-text.show {
    animation: revealLine 0.5s forwards;
}

.him-photo-container {
    position: relative;
    z-index: 1;
    margin: 20px 0;
}

.divine-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: conic-gradient(from 0deg, transparent, var(--gold), transparent, var(--gold), transparent);
    border-radius: 50%;
    animation: divineRotate 10s linear infinite;
    opacity: 0.3;
}

@keyframes divineRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.him-frame {
    border: 4px solid var(--gold);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 40px var(--gold), 0 0 80px rgba(255, 215, 0, 0.5);
    animation: godGlow 2s infinite;
    position: relative;
    display: inline-block;
}

@keyframes godGlow {
    0%, 100% { box-shadow: 0 0 40px var(--gold), 0 0 80px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 60px var(--gold), 0 0 120px rgba(255, 215, 0, 0.7); }
}

.crown {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    animation: crownBounce 1s infinite;
}

@keyframes crownBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.angels {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    pointer-events: none;
}

.angel {
    position: absolute;
    font-size: 1.5rem;
    animation: angelFloat 3s ease-in-out infinite;
}

.angel:first-child {
    left: -15px;
    animation-delay: 0s;
}

.angel:last-child {
    right: -15px;
    animation-delay: 1.5s;
}

@keyframes angelFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.him-titles {
    position: relative;
    z-index: 1;
    margin: 20px 0;
}

.title-line {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    margin: 10px 0;
    opacity: 0;
    transform: scale(0.8);
    line-height: 1.3;
}

.title-line.show {
    animation: titleReveal 0.5s forwards;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.title-line:nth-child(1) { color: var(--gold); }
.title-line:nth-child(2) { color: var(--warning); }
.title-line:nth-child(3) { color: var(--pink); }
.title-line:nth-child(4) { color: var(--secondary); }
.title-line:nth-child(5) { color: var(--primary); }

.him-warning {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 0, 64, 0.2);
    border: 1px solid var(--secondary);
    border-radius: 10px;
}

.him-warning p {
    color: var(--text);
    font-size: 0.95rem;
}

/* ==================== TELA 6: COUPLE ==================== */
.couple-container {
    text-align: center;
    padding: 15px 8px;
}

.couple-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--pink);
    text-shadow: 0 0 25px var(--pink);
    margin-bottom: 15px;
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

.couple-photos {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.couple-card {
    background: var(--bg-panel);
    border-radius: 10px;
    padding: 10px 6px;
    flex: 1;
    max-width: 42%;
    min-width: 0;
}

.her-card {
    border: 2px solid var(--pink);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.him-card {
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.card-photo {
    margin-bottom: 6px;
}

.couple-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid currentColor;
}

.her-card .couple-img {
    border-color: var(--pink);
}

.him-card .couple-img {
    border-color: var(--gold);
}

.card-info {
    text-align: center;
}

.card-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.her-card .card-name { color: var(--pink); }
.him-card .card-name { color: var(--gold); }

.card-status {
    font-size: 0.6rem;
    color: var(--text);
    opacity: 0.8;
    margin: 1px 0;
    line-height: 1.2;
}

.heart-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding: 0 2px;
}

.big-heart {
    font-size: 1.8rem;
    animation: heartPulse 1s infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.heart-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--pink), var(--secondary));
    animation: heartLinePulse 1s infinite;
}

@keyframes heartLinePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.couple-message {
    margin-top: 12px;
}

.couple-message p {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: bold;
    line-height: 1.3;
}

/* ==================== TELA 7: ALERT ==================== */
.alert-container {
    text-align: center;
    padding: 10px 5px;
}

.alert-icon {
    font-size: 3.5rem;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.alert-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 15px 0;
    text-shadow: 0 0 25px var(--secondary);
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: #0ff;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: #f0f;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(80% 0 0 0); transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(80% 0 0 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 2px); }
}

.mugshot {
    margin: 15px 0;
}

.mugshot-frame {
    display: inline-block;
    background: var(--bg-panel);
    border: 2px solid var(--secondary);
    border-radius: 10px;
    padding: 15px 30px;
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
}

.mugshot-icon {
    font-size: 3rem;
}

.mugshot-label {
    margin-top: 8px;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1rem;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.2), rgba(255, 204, 0, 0.1));
    border: 2px solid var(--warning);
    border-radius: 10px;
    margin: 15px 0;
    overflow: hidden;
}

.warning-header {
    background: var(--warning);
    color: var(--bg-dark);
    padding: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

.warning-content {
    padding: 15px 12px;
    text-align: left;
}

.warning-content p {
    margin: 8px 0;
    color: var(--text);
    font-size: 0.85rem;
}

.highlight {
    color: var(--secondary);
    font-weight: bold;
    text-shadow: 0 0 8px var(--secondary);
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.boyfriend-status {
    background: var(--bg-panel);
    border: 1px solid var(--primary);
    border-radius: 10px;
    margin: 15px 0;
    padding: 12px;
}

.status-header {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.status-items {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: dotPulse 1s infinite;
    flex-shrink: 0;
}

.dot.online {
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.dot.watching {
    background: var(--warning);
    box-shadow: 0 0 8px var(--warning);
}

.dot.angry {
    background: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.terms-box {
    background: var(--bg-panel);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 15px 12px;
    margin: 15px 0;
    text-align: left;
}

.terms-box h3 {
    text-align: center;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.9rem;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.3;
}

.term-item:hover {
    color: var(--primary);
}

.term-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.accept-button {
    background: linear-gradient(135deg, var(--secondary), #ff6b6b);
    color: var(--text);
    border: none;
    padding: 14px 25px;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    margin: 15px 0;
    transition: all 0.3s ease;
    opacity: 0.5;
    pointer-events: none;
    width: 100%;
    max-width: 300px;
}

.accept-button:not(:disabled) {
    opacity: 1;
    pointer-events: all;
    animation: buttonPulse 1s infinite;
}

.accept-button:not(:disabled):hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px var(--secondary);
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 10px var(--secondary); }
    50% { box-shadow: 0 0 25px var(--secondary); }
}

.footer-message {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 0.75rem;
}

/* ==================== TELA 8: FINAL ÉPICA ==================== */
.final-container {
    text-align: center;
    position: relative;
    padding: 15px 5px;
}

.success-explosion {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    pointer-events: none;
}

.explosion-particle {
    position: absolute;
    font-size: 1.5rem;
    animation: explode 2s ease-out infinite;
}

.explosion-particle:nth-child(1) { left: 15%; animation-delay: 0s; }
.explosion-particle:nth-child(2) { left: 35%; animation-delay: 0.2s; }
.explosion-particle:nth-child(3) { left: 50%; animation-delay: 0.4s; }
.explosion-particle:nth-child(4) { left: 65%; animation-delay: 0.6s; }
.explosion-particle:nth-child(5) { left: 85%; animation-delay: 0.8s; }

@keyframes explode {
    0% { transform: translateY(0) scale(0); opacity: 1; }
    50% { transform: translateY(-40px) scale(1.3); opacity: 1; }
    100% { transform: translateY(-80px) scale(0); opacity: 0; }
}

.final-icon {
    font-size: 4rem;
    animation: successBounce 1s ease infinite;
    filter: drop-shadow(0 0 25px var(--primary));
}

@keyframes successBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.final-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 12px 0;
    text-shadow: 0 0 25px var(--primary), 0 0 50px var(--primary);
    animation: titleGlow 2s infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 25px var(--primary), 0 0 50px var(--primary); }
    50% { text-shadow: 0 0 40px var(--primary), 0 0 80px var(--primary); }
}

.final-message {
    color: var(--text);
    margin: 12px 0;
    font-size: 0.9rem;
}

.badge-container {
    position: relative;
    margin: 15px 0;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse, var(--gold), transparent);
    filter: blur(15px);
    animation: badgeGlowPulse 2s infinite;
}

@keyframes badgeGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.badge {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #ffaa00, var(--gold));
    background-size: 200% 200%;
    color: var(--bg-dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    animation: badgeShine 3s ease infinite;
    border: 2px solid #fff;
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5);
}

@keyframes badgeShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.badge-subtitle {
    margin-top: 8px;
    color: var(--warning);
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Certificado */
.certificate-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid var(--gold);
    border-radius: 12px;
    margin: 20px auto;
    max-width: 320px;
    overflow: hidden;
    position: relative;
}

.certificate-header {
    background: linear-gradient(90deg, var(--gold), #ffaa00);
    color: var(--bg-dark);
    padding: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
}

.certificate-content {
    padding: 15px 12px;
    text-align: left;
}

.certificate-content p {
    color: var(--text);
    margin: 6px 0;
    font-size: 0.85rem;
}

.stalker-name {
    color: var(--secondary);
    font-weight: bold;
}

.certificate-list {
    list-style: none;
    margin: 12px 0;
    padding-left: 5px;
}

.certificate-list li {
    color: var(--primary);
    margin: 6px 0;
    font-size: 0.8rem;
}

.certificate-stamp {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 6px 12px;
    border-radius: 5px;
    transform: rotate(-15deg);
    font-weight: bold;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 3px 12px rgba(0, 255, 65, 0.4);
}

.stamp-emoji {
    font-size: 1rem;
}

/* Casal épico final */
.final-couple-epic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.couple-frame {
    text-align: center;
}

.final-photo-epic {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid;
    transition: transform 0.3s ease;
}

.her-side .final-photo-epic {
    border-color: var(--pink);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.him-side .final-photo-epic {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.couple-label {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: bold;
}

.her-side .couple-label { color: var(--pink); }
.him-side .couple-label { color: var(--gold); }

.love-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.heart-float {
    font-size: 1.2rem;
    animation: heartFloatUp 2s ease-in-out infinite;
}

.heart-float:nth-child(1) { animation-delay: 0s; }
.heart-float:nth-child(2) { animation-delay: 0.3s; }
.heart-float:nth-child(3) { animation-delay: 0.6s; }

@keyframes heartFloatUp {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-8px) scale(1.15); opacity: 0.8; }
}

.infinity {
    font-size: 2rem;
    color: var(--secondary);
    animation: infinityPulse 1.5s infinite;
}

@keyframes infinityPulse {
    0%, 100% { transform: scale(1); color: var(--secondary); }
    50% { transform: scale(1.1); color: var(--pink); }
}

/* Warning box final */
.final-warning-box {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.2), rgba(255, 0, 64, 0.1));
    border: 2px solid var(--secondary);
    border-radius: 12px;
    padding: 15px 10px;
    margin: 20px 0;
}

.warning-eyes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.big-eye {
    font-size: 2.5rem;
    animation: eyeWatch 2s infinite;
}

.big-eye:nth-child(1) { animation-delay: 0s; }
.big-eye:nth-child(2) { animation-delay: 0.1s; }

@keyframes eyeWatch {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.warning-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.warning-subtext {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.blink-fast {
    color: var(--warning);
    font-weight: bold;
    animation: blinkFast 0.5s infinite;
}

@keyframes blinkFast {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.warning-small {
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0.7;
}

/* Matrix de olhos */
.matrix-eyes {
    margin: 20px 0;
    position: relative;
    height: 40px;
    overflow: hidden;
}

.floating-eye {
    position: absolute;
    font-size: 1.5rem;
    animation: floatEye 3s infinite ease-in-out;
}

.floating-eye:nth-child(1) { left: 2%; animation-delay: 0s; }
.floating-eye:nth-child(2) { left: 16%; animation-delay: 0.4s; }
.floating-eye:nth-child(3) { left: 30%; animation-delay: 0.8s; }
.floating-eye:nth-child(4) { left: 44%; animation-delay: 1.2s; }
.floating-eye:nth-child(5) { left: 58%; animation-delay: 1.6s; }
.floating-eye:nth-child(6) { left: 72%; animation-delay: 2s; }
.floating-eye:nth-child(7) { left: 86%; animation-delay: 2.4s; }

@keyframes floatEye {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-12px) rotate(10deg); opacity: 1; }
}

/* Mensagem final */
.final-message-box {
    background: var(--bg-panel);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
}

.bye-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.bye-message {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.bye-warning {
    color: var(--text);
    font-size: 0.9rem;
}

.respect-text {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 0 0 8px var(--secondary);
    animation: respectPulse 1s infinite;
}

@keyframes respectPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Assinatura */
.signature {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature p {
    color: var(--text);
    opacity: 0.7;
    font-size: 0.75rem;
    margin: 3px 0;
}

.signature-name {
    color: var(--gold) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1rem !important;
    font-style: italic;
    opacity: 1 !important;
}

.signature-small {
    font-size: 0.65rem !important;
    color: var(--primary) !important;
}

/* ==================== MEDIA QUERIES PARA TELAS PEQUENAS ==================== */
@media (max-width: 350px) {
    .couple-img {
        width: 45px;
        height: 45px;
    }
    
    .card-name {
        font-size: 0.65rem;
    }
    
    .card-status {
        font-size: 0.5rem;
    }
    
    .big-heart {
        font-size: 1.3rem;
    }
    
    .heart-line {
        height: 15px;
    }
    
    .status-value {
        font-size: 0.7rem;
    }
    
    .ring-emoji {
        font-size: 3rem;
    }
    
    .couple-title {
        font-size: 1.3rem;
    }
    
    .couple-photos {
        gap: 3px;
    }
    
    .couple-card {
        padding: 8px 5px;
    }
}

/* ==================== MEDIA QUERIES PARA TELAS MAIORES ==================== */
@media (min-width: 400px) {
    .couple-img {
        width: 70px;
        height: 70px;
    }
    
    .card-name {
        font-size: 0.8rem;
    }
    
    .card-status {
        font-size: 0.65rem;
    }
    
    .status-value {
        font-size: 1rem;
    }
    
    .ring-emoji {
        font-size: 5rem;
    }
    
    .couple-photos {
        gap: 10px;
    }
    
    .couple-card {
        padding: 12px 10px;
        max-width: 140px;
    }
}

@media (min-width: 480px) {
    .container {
        padding: 20px;
    }
    
    .screen {
        max-width: 450px;
    }
    
    .boot-icon {
        font-size: 4rem;
    }
    
    .boot-text {
        font-size: 1.1rem;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .scanner {
        width: 150px;
        height: 150px;
    }
    
    .target-icon {
        font-size: 3rem;
    }
    
    .info-line {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .profile-photo {
        width: 160px;
        height: 160px;
    }
    
    .ring-emoji {
        font-size: 6rem;
    }
    
    .ring-title {
        font-size: 1.5rem;
    }
    
    .status-value {
        font-size: 1.1rem;
    }
    
    .title-line {
        font-size: 0.95rem;
    }
    
    .couple-card {
        max-width: 160px;
        padding: 15px;
    }
    
    .couple-img {
        width: 85px;
        height: 85px;
    }
    
    .card-name {
        font-size: 0.85rem;
    }
    
    .card-status {
        font-size: 0.65rem;
    }
    
    .final-photo-epic {
        width: 90px;
        height: 90px;
    }
    
    .certificate-box {
        max-width: 380px;
    }
}

@media (min-width: 768px) {
    .screen {
        max-width: 550px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .profile-photo {
        width: 180px;
        height: 180px;
    }
    
    .couple-photos {
        gap: 20px;
    }
    
    .couple-card {
        max-width: 180px;
    }
    
    .couple-img {
        width: 100px;
        height: 100px;
    }
    
    .final-couple-epic {
        gap: 15px;
    }
    
    .final-photo-epic {
        width: 100px;
        height: 100px;
    }
}
