* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: white;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

/* NAVBAR */

nav {
    width: 100%;
    padding: 20px 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* HERO */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 80vh;
}

.main-logo {
    width: 500px;
    max-width: 90%;
    margin-bottom: 40px;
}

.play-btn {
    padding: 15px 40px;

    color: white;
    text-decoration: none;

    border: 1px solid white;
    border-radius: 8px;

    transition: 0.3s;
}

.play-btn:hover {
    background: white;
    color: black;
}

/* LINKS PAGE */

.links-page {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px;
    margin-top: 100px;
}

.links-page a {
    width: 300px;
    text-align: center;

    color: white;
    text-decoration: none;

    border: 1px solid white;
    border-radius: 8px;

    padding: 15px;
    transition: 0.3s;
}

.links-page a:hover {
    background: white;
    color: black;
}
