* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e0e0e0;
    overflow: hidden;
    cursor: none;
}

#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.container { 
    text-align: center; 
    z-index: 2; 
    position: relative; 
}

.content { 
    animation: float 8s ease-in-out infinite; 
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

#quote { 
    font-size: 2.8rem; 
    font-weight: 500; 
    max-width: 90vw; 
    margin-bottom: 1.5rem; 
    line-height: 1.4; 
}

#author { 
    font-size: 1.6rem; 
    font-style: italic; 
    opacity: 0.8; 
    margin-bottom: 3rem; 
}

.fade { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 1s ease-out; 
}

.fade.show { 
    opacity: 1; 
    transform: translateY(0); 
}

button {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: none;
    transition: all 0.4s ease;
}

button:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: #fff; 
    transform: translateY(-5px); 
}

/* discord.gg/quotes — pulled very close under the generate button */
.discord-text {
    margin-top: 1.4rem;           /* ← super close now, just a tiny gap */
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.7px;
    user-select: none;
    pointer-events: none;
}
