body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: black;
    overflow-x: hidden;
    color: #fff;
    text-align: center;
}

/* STAR BACKGROUND */
.stars {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("images/stars-tile.png");
    background-size: 300px;
    z-index: -1;
}

/* TITLE */
.title-container {
    margin-top: 40px;
}

.sparkle-title {
    width: 480px;
    max-width: 90%;
    image-rendering: pixelated;
}

.subtitle {
    margin-top: -10px;
    font-size: 20px;
    letter-spacing: 1px;
    color: #ffeb3b;
    text-shadow: 0 0 6px #ffb200;
}

/* ICON GRID LIKE SPACE JAM */
.icon-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    padding: 20px 40px;
}

.planet {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .2s ease;
}

.planet:hover {
    transform: scale(1.12);
}

.planet img {
    width: 120px;
    height: 120px;
    image-rendering: pixelated;
    margin-bottom: 10px;
}

.planet span {
    font-size: 18px;
    color: #ffeb3b;
    text-shadow: 0 0 6px #ffb200;
}
 


