```cs
/* =========================
   Squishia Website Styling
   ========================= */


/* General */

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: #121824;
    color: #f4f4f4;
    font-family: "Trebuchet MS", Arial, sans-serif;
    line-height: 1.6;
}


h1,
h2,
h3 {
    font-family: Georgia, serif;
}


h2 {
    color: #d4af37;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}


section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 30px;
}



/* =========================
   Navigation
   ========================= */


header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(18, 24, 36, 0.9);
    backdrop-filter: blur(8px);
}


nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}


.logo {
    color: #d4af37;
    letter-spacing: 3px;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
}


nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}


nav a:hover {
    color: #d4af37;
}



/* =========================
   Hero
   ========================= */


.hero {

    min-height: 90vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle,
            #26344d,
            #121824
        );

}


.hero-content {
    max-width: 750px;
}


.hero h1 {

    font-size: 5rem;

    color: #d4af37;

    letter-spacing: 10px;

    margin-bottom: 10px;

}


.hero h2 {

    color: white;

    font-size: 2rem;

}


.hero p {

    font-size: 1.2rem;

    color: #c9d0dc;

}



/* Buttons */


.buttons {

    margin-top: 30px;

}


.button {

    display: inline-block;

    padding: 15px 35px;

    margin: 10px;

    background: #d4af37;

    color: black;

    text-decoration: none;

    border-radius: 8px;

    font-weight: bold;

    transition: 0.3s;

}


.button:hover {

    transform: translateY(-5px);

}


.secondary {

    background: transparent;

    color: white;

    border: 2px solid #d4af37;

}



/* =========================
   Story
   ========================= */


#story p {

    max-width: 800px;

    margin: auto;

    text-align: center;

    color: #ccd3df;

    font-size: 1.1rem;

}



/* =========================
   Feature Cards
   ========================= */


.cards {

    display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(220px, 1fr)
    );

    gap: 25px;

}



.card {

    background: #1d2638;

    padding: 25px;

    border-radius: 15px;

    text-align: center;

    transition: 0.3s;

}


.card:hover {

    transform: translateY(-8px);

}


.card h3 {

    color: #d4af37;

}



/* =========================
   Game
   ========================= */


.game-container {
    width: 100%;
    max-width: 500px;
    margin: auto;
}



.game-container iframe {

    width: 100%;

    max-width: 900px;

    height: 600px;

    border: none;

    border-radius: 15px;

    box-shadow: 0 0 30px black;

}



/* =========================
   Development / Credits
   ========================= */


#development,
#credits {

    text-align: center;

}



#credits ul {

    list-style: none;

    padding: 0;

}



/* =========================
   Footer
   ========================= */


footer {

    text-align: center;

    padding: 30px;

    background: #0c1018;

    color: #9aa4b5;

}



/* =========================
   Mobile
   ========================= */


@media(max-width:700px) {


    nav {

        flex-direction: column;

    }


    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }


    .hero h1 {

        font-size: 3rem;

    }


}


```
