/* General Styling */
body {
    background: #080808;
    color: #eee;
    font-family: 'Anuphan', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Glowing Neon Text */
.neon-text {
    font-size: 4rem;
    color: #0ff;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
}

/* Gradient Animation */
@keyframes glowingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glowing-box {
    background: linear-gradient(45deg, #ff0000, #ff7300, #ffcc00, #00ff00, #00ffff, #0000ff, #ff00ff);
    background-size: 400% 400%;
    animation: glowingGradient 6s infinite linear;
    padding: 20px;
    border-radius: 10px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
}

/* Flashing Button */
@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.button {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    animation: flash 1s infinite alternate;
    box-shadow: 0 0 15px #ffcc00;
}

.button:hover {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 20px #ff0000;
}

/* Fake Jackpot Marquee */
.jackpot {
    font-size: 2.5rem;
    color: #ffcc00;
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff0000;
    animation: flash 0.8s infinite alternate;
}

/* Glowing Borders */
.glow-border {
    border: 2px solid #00ff00;
    box-shadow: 0 0 15px #00ff00;
    padding: 20px;
    margin: 20px;
}

p{
    font-size: 20px;
}