/* General Styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #000;
    color: #e4b4b4;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('demon-slayer-legends-background.webp') no-repeat center center / cover;
}

/* Hero Title */
.hero-title {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    color: #ff3b3b;
    text-shadow: 0 0 20px #000, 0 0 40px #7e0c0c;
    margin: 20px 0;
}

/* Link in Hero Title */
.hero-title a {
    color: #ff3b3b; /* Ensure text remains red */
    text-decoration: none; /* Remove underline */
    font-size: inherit; /* Maintain the size of the parent .hero-title */
}

/* Main Content */
.content {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9); /* Transparent black background */
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    flex: 1;
}

.content h1 {
    color: #ff3b3b;
    margin-bottom: 15px;
}

.choices {
    margin-top: 20px;
    border-top: 2px solid #7e0c0c;
    padding-top: 20px;
}

.choice {
    margin: 15px 0;
}

.choice a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffcc00; /* Gold color for buttons */
    color: #000; /* Black text for contrast */
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid #d4a017; /* Slightly darker border for buttons */
}

.choice a:hover {
    background-color: #d4a017; /* Slightly darker gold on hover */
    color: #fff; /* White text on hover */
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    color: #e4b4b4;
    padding: 10px 0;
    font-size: 0.9em;
    background: none;
}

footer a {
    color: #e4b4b4; /* Matches whitish-red text color */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}