body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: white;
}

.logo {
    width: 90px;
    height: auto;
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.55)),
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2 {
    letter-spacing: 2px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero-content {
    max-width: 800px;
    margin-top: 160px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    color: #d0d0d0;
    margin-bottom: 35px;
}

.btn {
    background: white;
    color: black;
    padding: 15px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
}

section {
    padding: 80px 30px;
    max-width: 1000px;
    margin: auto;
}

section h2 {
    font-size: 36px;
}

section p {
    font-size: 20px;
    color: #d0d0d0;
}

.prizes {
    background: #151515;
    border-radius: 20px;
}