body {
    margin: 0;
    padding: 0;
    background-color: #0a0a1a;
    color: #e0e0ff;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    transition: background-color 0.5s ease;
}

.floating-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #2a0a4a 0%, #0a0a1a 100%);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.container {
    text-align: center;
    padding: 2rem;
    border: 3px double #00ffaa;
    box-shadow: 0 0 20px #00ffaa, inset 0 0 10px #00ffaa;
    background: rgba(10, 10, 26, 0.8);
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: #ff00ff;
    text-shadow: 2px 2px #00ffff;
    margin-bottom: 2rem;
}

.truth-box {
    font-size: 1.2rem;
    min-height: 100px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

button {
    background: transparent;
    color: #00ffaa;
    border: 2px solid #00ffaa;
    padding: 1rem 2rem;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

button:hover {
    background: #00ffaa;
    color: #0a0a1a;
    box-shadow: 0 0 15px #00ffaa;
}

button:active {
    transform: scale(0.95);
}
