/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    color: #EEDE80;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-repeat: repeaty;
    background-image: url('gc_page_background.png');
}

.description p {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    padding-bottom: 20px;
}

.content-wrapper {
    background-image: url(gc_page_background_guard.png);
    background-repeat: repeat-y;
    background-position: 50% 0;
    min-height: 100%;
}

.description p {
    width: 49%;
    display: inline-block;
}

.presskit {
    padding-bottom: 25px;
}

.presskit a {
    color: inherit; /* blue colors for links too */
  }

.banner {
    padding: 10px;
}

.background-image {
    background-repeat:repeat;
    background-image: url('gc_page_background.png');
    z-index: -1;
}

.youtube-video {
    padding-top: 25px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.description {
    margin-bottom: 20px;
}

.youtube-link a {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffcc00;
    text-decoration: none;
    border: 2px solid #ffcc00;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.youtube-link a:hover {
    background-color: #ffcc00;
    color: black;
}

.buttons {
    flex-wrap: wrap;
    justify-content: space-around;
}

.buttons_bottom {
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 20px;
}

/* Base Styles for Buttons */
.button {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    width: 306px; 
    height: 88px; 
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    text-align: center;
    line-height: 88px; 
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.button.discord {
    background-image: url('button_discord.png'); 
}

.button.itchio {
    background-image: url('button_itchio.png'); 
}

.button.google {
    background-image: url('button_googleplay.png'); 
}

.button.apple {
    background-image: url('button_appstore.png'); 
}

.button.steam {
    background-image: url('button_steam.png'); 
}

.button.discord:hover {
    opacity: 0.8; /* Slightly fade image on hover */
}

.button.itchio:hover {
    opacity: 0.8; /* Slightly fade image on hover */
}

img {
    margin-bottom: 25px;
}