body {
    margin: 0;
    height: 100vh;
    background: url('../images/image_gen_a63795ac-2cb8-42fb-87c2-dbf5f0b082a1_0.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

button {
    background: linear-gradient(180deg, #ff3300, #660000);
    color: white;
    border: 2px solid #ff9933;
    border-radius: 12px;
    font-size: 1.2rem;
    padding: 12px 40px;
    margin: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.8);
    font-family: 'Orbitron', sans-serif;
}
button:hover {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 0 30px rgba(255, 140, 0, 1);
}

.quote {
    position: absolute;
    bottom: 30px;
    width: 100%;
    font-family: 'Creepster', cursive;
    font-size: 1.1rem;
    color: #ff3300;
    text-shadow: 0 0 20px rgba(255, 70, 0, 0.9), 0 0 60px rgba(255, 30, 0, 0.6);
}
