/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background: url('images/Jupimoon.webp') no-repeat center center fixed;
    background-size: cover;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo h1 {
    font-size: 2em;
    color: #00ff99;
    margin: 0;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
}

header nav ul li a:hover {
    background: #00ff99;
    color: #000;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 100px 20px 50px;
    text-align: center;
}

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.btn-primary {
    background: #00ff99;
    color: #000;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#game-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 20px auto;
    border: 2px dashed #00ff99;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

#jupiMoon {
    position: absolute;
    width: 50px;
    height: 50px;
    display: none;
    cursor: pointer;
}
