body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(135deg, #0a0f24, #101a3c);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.glass {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
}

.container {
    width: 400px;
    text-align: center;
}

.title {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00eaff;
}

.quote-box {
    padding: 25px;
    margin-bottom: 20px;
}

.neon {
    box-shadow: 0 0 15px #00eaff;
}

#quoteText {
    font-size: 20px;
    font-weight: 500;
}

#quoteAuthor {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.8;
}

.buttons button {
    margin: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    background: #00eaff;
    color: black;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.buttons button:hover {
    background: #00ffff;
    box-shadow: 0 0 10px #00eaff;
}

.add-box input {
    width: 90%;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 10px;
    border: none;
}

.add-box button {
    width: 100%;
    background: #00eaff;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.subtitle {
    margin-top: 30px;
}

.fav-list {
    list-style: none;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.fav-list li {
    background: rgba(255, 255, 255, 0.15);
    margin: 8px 0;
    padding: 10px;
    border-radius: 10px;
}
