body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0e0e0e;
    color: white;
}

header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 150px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6600;
}

.hero {
    position: relative;
    height: 70vh;
    background-image: url('../assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    font-family: cursive;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;

    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(0,1px);
    padding: 40px 20px;
    border-radius: 12px;
}

.hero-overlay h1 {
    font-size: 70px;
    margin: 0;
}

.hero-overlay p {
    font-size: 24px;
    margin-top: 10px;
}

section {
    padding: 80px 20px;
    text-align: center;
}

.fade-to-black {
    height: 5px; 
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
}

footer {
    background-color: #111;
    text-align: center;
    padding: 20px;
}

.about, .info {
    width: 500px; 
    text-align: left;
    margin-top: 85px;
    margin-left: 15%; 
    margin-right: auto; 
    padding: 20px; 
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(0,1px);
    
}

.rules {
    width: 500px; 
    text-align: left;
    margin-top: 85px;
    margin-left: auto; 
    margin-right: 15%; 
    padding: 20px; 
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(0,1px); 
}

.coming-soon {
    font-size: 22px;
    margin-top: 15px;
    color: #ff6600;
    font-weight: bold;
}
