/* Global styles */
body {
    font-family: 'Press Start 2P', cursive;
    background-color: black;
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

/* Canvas styles */
#matrixRain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Container styles */
.container {
    max-width: 800px;
    margin: 25vh auto 2rem;  /* Added bottom margin for scrolling */
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Button styles */
button {
    font-family: 'Press Start 2P', cursive;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 30px;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px #FFFFFF;
}

/* Result container styles */
#resultContainer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #FFFFFF;
}

/* Number and description styles */
#numberDisplay {
    font-weight: bold;
    color: #FFFF00;  /* Bright yellow */
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);  /* Yellow glow effect */
}

#descriptionDisplay {
    font-weight: bold;
    color: #FFFFFF;
}

a {
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

a:hover {
    text-shadow: 0 0 10px #FFFFFF;
}