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

body {
    background: #000000;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

/* STARFIELD */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    color: #FFFFFF;
}

.star-small { font-size: 2pt; opacity: 0.3; }
.star-medium { font-size: 4pt; opacity: 0.6; }
.star-large { font-size: 6pt; opacity: 1.0; }

/* QUANTUM CONTAINER */
#quantum-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.side {
    position: absolute;
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-side {
    left: 5%;
}

.right-side {
    right: 5%;
}

/* QUANTUM WORDS */
.quantum-word {
    position: absolute;
    font-size: 16pt;
    opacity: 0;
    transition: none; /* No smooth transitions - Planck jumps only */
}

/* HER WORDS - PURPLE */
.her-word {
    color: #8B3A9E;
}

/* HIS WORDS - 3 BLUES */
.his-word-1 { color: #1E3A8A; }
.his-word-2 { color: #3B82F6; }
.his-word-3 { color: #60A5FA; }

/* EMPHASIS STATE - YELLOW ACCENT */
.emphasis {
    color: #FFD60A !important;
    text-shadow: 0 0 20px rgba(255, 214, 10, 0.8);
}

/* QUANTUM STATES */
.quantum-blur {
    filter: blur(3px);
}

.manifesting {
    animation: blink 200ms infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.collapsed {
    opacity: 1 !important;
    filter: blur(0);
}
