/* Full-screen dark blue background */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #00051e; /* Deep blue */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    position: relative;
}

/* Creating the background numbers effect */
.background {
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%; /* Cover screen */
    height: 100%;
    font-size: 1.2rem;
    color: #00bfff;
    opacity: 0.6;
    font-family: 'Courier New', monospace;
    white-space: pre;
    line-height: 1.5;
    z-index: 1;
    text-align: center;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

/* Centered content */
.container {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Big, scary, red text */
.title {
    font-size: clamp(3rem, 5vw, 5rem); /* Responsive text size */
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: red;
    text-shadow: 0 0 10px red, 0 0 20px darkred, 0 0 30px black;
    margin: -10px 0; /* Reduce space between lines */
    line-height: 1; /* Make text closer */
}

/* Buttons Section */
.buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced spacing for better balance */
}

/* Button Styling */
.btn {
    background-color: red;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 8px red;
    transition: 0.3s;
}

/* Hover effect */
.btn:hover {
    background-color: darkred;
    box-shadow: 0 0 15px darkred;
}

/* About Game as a Link */
.link-btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 1.1rem;
}
