/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    height: 100%;
    overflow: hidden;
}

#starCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    overflow-y: auto;
    height: 100vh;
    box-sizing: border-box;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 3em;
    color: #f0f0f0;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
}

/* Section Styles */
section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

h2 {
    color: #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Game Area Styles */
#gameArea {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

#thylacine {
    position: absolute;
    cursor: pointer;
}

#gameMessage {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    section {
        padding: 15px;
    }

    #gameArea {
        height: 200px;
    }
}