* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    text-align: center;
}

#stars {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

main {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.glow {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: bold;
    background: linear-gradient(90deg, #ffd700, #ff6b6b, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 3s linear infinite, float 4s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.1em;
}

@keyframes shine {
    to { background-position: 200% center; }
}

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

.subtitle {
    font-style: italic;
    font-size: 1.3rem;
    margin: 1rem 0 3rem;
    opacity: 0.8;
}

.quote-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#quote {
    font-size: 1.3rem;
    transition: opacity 0.5s;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    min-width: 150px;
}

.num {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
}

button {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7);
}

#counter {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.emoji-burst {
    position: fixed;
    font-size: 2rem;
    pointer-events: none;
    animation: burst 1.5s ease-out forwards;
}

@keyframes burst {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--x), var(--y)) scale(0); opacity: 0; }
}
