#greeting {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.quiz-logo {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quiz-logo:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0px 5px 20px rgba(255, 117, 140, 0.6);
}

.quiz-logo::before {
    content: "✨";
    font-size: 26px;
}
