* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('glowing-star.png'), auto;
}

/* Create a pseudo-element for the glowing effect around the cursor */
html::after {
    content: '';
    position: fixed;
    width: 32px; /* Match the size of the cursor image */
    height: 32px;
    pointer-events: none; /* Ensure it doesn't interfere with clicks */
    background: url('glowing-star.png') no-repeat center center;
    background-size: contain;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5); /* Glow effect */
    z-index: 9999;
    cursor: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000; /* Solid black background */
    color: #FFFFFF; /* White text */
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('starry-background.jpg') no-repeat center center fixed; /* Your image */
    background-size: cover;
    opacity: 0.2; /* Darker, lower opacity for subtlety */
    z-index: 1;
}
.hero, .fade-in, footer {
    position: relative;
    z-index: 2;
}
.purchase-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay for slider */
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    text-align: center;
}
.purchase-slider p {
    font-size: 16px;
    margin: 0;
}
.purchase-link {
    color: #C4A000; /* Muted Gold */
    font-weight: 700;
    text-decoration: none;
}
.purchase-link:hover {
    color: #0033A0; /* Royal Blue */
    cursor: url('glowing-star.png'), pointer;
}
.purchase-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for form */
    border-radius: 8px;
}
.purchase-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}
.purchase-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #008000; /* Forest Green */
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}
.purchase-form input:focus {
    outline: none;
    border-color: #C4A000; /* Muted Gold */
}
.purchase-form p {
    font-size: 14px;
    margin-top: 10px;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3); /* Slight darken for hero */
}
.hero-content {
    padding: 20px;
}
.logo {
    max-width: 200px;
    margin: 20px auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)); /* 3D effect for white logo */
}
h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase; /* Ensures all letters are uppercase */
}
.hero p {
    font-size: 24px;
    color: #C4A000; /* Muted Gold */
    margin: 10px 0;
}
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #C4A000; /* Muted Gold */
    color: #1C1C1C; /* Charcoal Black */
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.3s;
}
.cta-button:hover {
    background-color: #0033A0; /* Royal Blue */
    color: #FAFAFA; /* Arctic White */
    transform: scale(1.05);
    cursor: url('glowing-star.png'), pointer;
}
section {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for sections */
    border-left: 6px solid #008000; /* Forest Green */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
h2 {
    color: #0033A0; /* Royal Blue */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
p {
    font-size: 18px;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin: 15px 0;
    padding-left: 20px;
    position: relative;
}
ul li:before {
    content: "•";
    color: #C4A000; /* Muted Gold */
    position: absolute;
    left: 0;
}
.token a, .presale a {
    color: #C4A000; /* Muted Gold */
    font-weight: 700;
}
.token a:hover, .presale a:hover {
    color: #0033A0; /* Royal Blue */
}
.game {
    text-align: center;
}
#gameCanvas {
    border: 2px solid #008000; /* Forest Green */
    background: rgba(0, 0, 0, 0.9); /* Dark background for the game */
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}
#gameInfo {
    font-size: 18px;
    color: #C4A000; /* Muted Gold */
    font-weight: 700;
    margin-top: 10px;
}
.game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #008000; /* Forest Green */
    text-align: center;
    z-index: 1000;
}
.game-over h3 {
    color: #0033A0; /* Royal Blue */
    font-size: 24px;
    margin-bottom: 10px;
}
.game-over p {
    font-size: 16px;
    margin-bottom: 15px;
}
.game-over input {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #008000; /* Forest Green */
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}
.game-over button {
    padding: 10px 20px;
    background-color: #C4A000; /* Muted Gold */
    color: #1C1C1C; /* Charcoal Black */
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: url('glowing-star.png'), pointer;
}
.game-over button:hover {
    background-color: #0033A0; /* Royal Blue */
    color: #FAFAFA; /* Arctic White */
}
.leaderboard {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #008000; /* Forest Green */
}
.leaderboard h3 {
    color: #0033A0; /* Royal Blue */
    font-size: 20px;
    margin-bottom: 10px;
}
.leaderboard ul {
    list-style: none;
    padding: 0;
}
.leaderboard li {
    font-size: 16px;
    margin: 5px 0;
}
footer {
    background: rgba(28, 43, 58, 0.9); /* Darker overlay for footer */
    text-align: center;
    padding: 20px;
    font-size: 14px;
    border-top: 4px solid #008000; /* Forest Green */
}
