/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

body {
    font-family: 'Titillium Web', serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #ddd;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),url('https://cdn.midjourney.com/b0754660-262a-4be8-a8ca-c4694fe024a5/0_3.png') no-repeat center center/cover;
}

/* Navigation Menu */
nav {
    background: rgba(255, 255, 255, 0.05); /* Transparent with a slight white tint */
    backdrop-filter: blur(3px); /* Slight blur effect */
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    color: #c9a227;
}

/* Hero Banner */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px #000;
}

.hero h2{
    text-shadow: 2px 2px 4px #000;
}

.hero p {
    font-size: 20px;
    margin: 10px 0;
    text-shadow: 2px 2px 4px #000;
}

.logo img {
    width: 150px; /* Resize the logo */
    height: 150px; /* Set height to 100px */
    position: relative;
}

.buttons {
    margin-top: 20px;
}

/* Buttons */
.btn {
    background: rgba(0, 0, 0, 0.3); /* Partially opaque black */
    backdrop-filter: blur(5px); /* Slight blur effect */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    font-size: 18px;
    display: inline-block;
    border: 2px solid #c9a227; /* Thin gold trim */
    box-shadow: 0 0 5px #c9a227; /* Subtle glow effect */
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: rgba(0, 0, 0, 0.8); /* Slightly darker on hover */
    box-shadow: 0 0 10px #c9a227; /* Stronger glow effect on hover */
    transform: scale(1.05); /* Slightly enlarges the button */
}

/* Game Overview */
.game-overview {
    text-align: center;
    padding: 40px 20px;
}

.game-overview h2 {
    font-size: 28px;
    text-shadow: 2px 2px 4px #000;
}

footer {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
}