
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}
h1 {
    color: #01ebeb;
    text-shadow: 0 0 10px #01ebeb;
    margin-bottom: 20px;
}
.quote-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(1, 235, 235, 0.4);
}
.quote {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-style: italic;
}
.author {
    font-size: 1.2rem;
    color: #db0a14;
    font-weight: bold;
}
button {
    margin-top: 20px;
    padding: 12px 25px;
    border: none;
    background: linear-gradient(45deg, #db0a14, #a50a10);
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(219, 10, 20, 0.6);
    transition: 0.3s;
}
button:hover {
    background: linear-gradient(45deg, #01ebeb, #00a8a8);
    color: #000;
    box-shadow: 0 0 20px rgba(1, 235, 235, 0.8);
}
