body {
    font-family: monospace !important;
    color: black;
    background-color: white;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.container {
    margin: 50px auto;
}

header {
    padding: 20px 23px;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

a {
    color: #6e1d87;
    text-decoration: none;
}

main {
    padding: 20px;
}



.platform-icons {
    margin-top: 5px;
}

.fa,
.fas,
.fab {
    font-size: 30px;
}

.game img {
    max-width: 100%;
}

footer .fab {
    vertical-align: middle;
}

img{
    max-width: 100%;
}

.legal-page {
    background: linear-gradient(to bottom right, #6e1d87, #f8f9fa);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.legal-card {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

@media (max-width: 576px) {
    .legal-card {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}


.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
    width: 220px; /* Adjust width as needed */
    text-align: center;
    margin: 10px;
}

.social-button i {
    margin-right: 10px;
    font-size: 22px;
}

/* Hover Effects */
.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.15);
}

/* Pastel Theme Colors */
.mastodon {
    background-color: #ff00a9;
}

.instagram {
    background-color: #f38634;
}

.bluesky {
    background-color: #51d5b0;
}

.tiktok {
    background-color: #9dce49;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
    .social-button {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }

    .social-button i {
        font-size: 20px;
    }
}


.game {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 50px; /* Increased from 35px to 50px for better spacing */
    flex-direction: column;
    height: 100%;
}

.game:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}

.game img {
    width: 100%;
    display: block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.contents {
    padding: 15px;
    text-align: left;
    flex-grow: 1; /* Forces this div to stretch inside the card */
}

.game_name {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.platform-icons {
    margin-top: 10px;
}

.platform-icons a {
    font-size: 22px;
    margin: 0 5px;
    color: black;
    transition: color 0.2s ease;
}

.platform-icons a:hover {
    color: rgba(0, 0, 0, 0.6);
}


/* Responsive Tweaks */
@media (max-width: 768px) {
    .game {
        border-radius: 8px;
    }
    .game img {
        border-radius: 0;
    }
}


/* Ensure equal height within Bootstrap grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.col-lg-4, .col-md-6 {
    display: flex;
}