body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    font-family: "Open Sans", sans-serif;
    font-size: 19px;
    color: #353535;
}
a img {
    border: 0;
}
img {
    display: block;
}
h1, h2 {
    padding: 0;
    border: 0;
    margin: 0;
}
p {
    padding: 0;
    border: 0;
    margin: 0;
}
li, ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #fff;
}
a:hover {
    text-decoration: underline;
    cursor: pointer;
}
/* GAME */
#app {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
#game-container {
    width: 100%;
    height: 100vh;
}
/* TOP BAR & SUB BAR COMMON STYLES */
.top-bar, .sub_bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    color: #fff;
}
.top-bar {
    position: absolute;
    top: 0;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
}
.sub_bar {
    background-color: #417652;
    padding: 10px 10px 14px 10px;
}
.title, .sub_bar_title a {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    text-decoration: none;
}
.title {
    font-size: 18px;
    font-weight: 600;
    margin-left: 8px;
}
.sub_bar_title a {
    font-size: 28px;
    font-weight: 700;
    margin-left: 10px;
}
.game-links, .sub_bar_links {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.top-bar .game-links .game-link {
    color: #fff;
    font-size: 17px;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    margin-right: 4px;
    margin-left: 4px;
}
.sub_bar_links a {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 500;
    font-size: 20px;
}
.top-bar .game-links .game-link:hover, .sub_bar_links a:hover {
    text-decoration: underline;
}
.sub_bar_links span {
    color: #fff;
    padding: 0 0 0 8px;
    font-size: 17px;
}
.separator {
    color: #fff;
    padding: 0 8px;
    font-size: 17px;
}
.hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    margin-right: 10px;
    user-select: none;
}
.dropdown-menu .separator {
    display: none;
}
.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 10px;
    background-color: #20422b;
    width: 150px;
    display: none;
    flex-direction: column;
    z-index: 20;
    padding: 15px 10px 15px 15px;
    border-radius: 10px;
    gap: 10px;
}
.dropdown-item {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    display: block;
    user-select: none;
}
.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
/* ARTICLE */
.post_section {
    background-color: #fefdfc;
    width: 100%;
    padding-bottom: 90px;
}
.post_section a {
    color: #568ae8;
    text-decoration: none;
}
.post_section a:hover {
    transition: color 0.2s;
    text-decoration: underline;
    cursor: pointer;
}
.post_content {
    max-width: 880px;
    margin: 0 auto;
}
/* INDEX ARTICLE HEADER*/
h1.post_title_index {
    padding-top: 30px;
    color: #578767;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}
h2.post_title_index {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 6px;
    font-size: 19px;
    font-weight: 400;
}
.post_divider_index {
    display: block;
    padding-top: 15px;
    width: 288px;
    margin: 0 auto;
}
/* REGULAR ARTICLE*/
h1.post_title {
    font-size: 36px;
    font-weight: 700;
    padding-top: 24px;
}
h2.post_sub_title {
    padding-top: 12px;
    font-size: 30px;
    font-weight: 700;
}
.post_details {
    padding-top: 12px;
}
.post_divider {
    border: none;
    border-top: 1px solid #d1d1d1;
    margin-top: 19px;
}
.post_divider_guides {
    border: none;
    border-top: 1px solid #d1d1d1;
    margin-top: 12px;
}
.post_text {
    padding-top: 14px;
    text-align: justify;
    line-height: 32px;
}

.post_li {
    margin-top: 14px;
    position: relative;
    padding-left: 20px;
    text-align: justify;
    line-height: 30px;
    list-style-type: none;
}
.post_li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(13px);
    width: 6px;
    height: 6px;
    background-color: #38383b;
    border-radius: 50%;
}
.post_image {
    margin: 0 auto;
    margin-top: 26px;
    width: 100%;
    border-radius: 20px;
}
.post_video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 26px;
    border-radius: 20px;
}
/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, auto));
    gap: 20px 20px; /* vertical / horizontal */
    margin: 20px 0 0 0;
    text-align: center;
}
.grid_thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.grid_thumbnail img {
    max-width: 100%;
    border-radius: 20px;
}
.grid_thumbnail img:hover {
    transition: .2s ease-in-out;
    filter: brightness(115%);
}
.grid_title {
    width: 280px;
    font-weight: 700;
    padding-left: 3px;
    box-sizing: border-box;
    line-height: 30px;
    margin-top: 10px;
    text-align: left;
}
.grid_title_centered {
    width: 280px;
    margin-top: 14px;
    margin-bottom: 7px;
    text-align: center;
}
.grid_details {
    color: #706f6f;
    font-size: 15px;
    width: 280px;
    padding-left: 3px;
    padding-top: 8px;
    text-align: left;
    box-sizing: border-box;
    margin-top: 4px;
}
.grid_text {
    width: 280px;
    padding-left: 3px;
    text-align: left;
    line-height: 30px;
    box-sizing: border-box;
    margin-top: 4px;
}
/* ALL MINIGAMES CSS IS INDEPENDENT, NO OUTSIDE CSS APPLIES */
.grid_thumbnail_minigames {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.grid_thumbnail_minigames img {
    max-width: 100%;
}
.grid_thumbnail_minigames img:hover {
    transition: .2s ease-in-out;
    filter: brightness(115%);
}
.minigames_section {
    background-color: #fefdfc;
    width: 100%;
    padding-bottom: 90px;
    padding-top: 25px;
}
.minigames_container {
    width: 100%;
    max-width: 942px;
    padding: 25px;
    margin: 0 auto;
    background-color: #f7f0e9;
    border: 1px solid #f3eae1;
    border-radius: 20px;
    box-sizing: border-box;
}
.minigames_play_button {
    display: none;
}
.minigames_880 {
    position: relative;
    overflow: hidden;
    padding-top: 68%;
    margin: 0 auto;
}
.minigames_800 {
    position: relative;
    overflow: hidden;
    padding-top: 75.05%;
    margin: 0 auto;
}
.minigames_iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.minigames_info_container {
    max-width: 942px;
    margin: 25px auto 0 auto;
    background-color: #f7f0e9;
    border: 1px solid #f3eae1;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 30px;
}
h1.minigames_info_title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}
.minigames_info_text {
    padding-top: 14px;
    line-height: 32px;
}
/* CONTACT FORM */
.contact_wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 880px;
    background-color: #f7f0e9;
    border-radius: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}
.contact_form_container {
    margin: 34px 34px 0px 34px;
    flex: 2;
}
.contact_image_container {
    flex: 1;
    position: relative;
}
.contact_image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 293px;
    height: 374px;
    object-fit: contain;
    border-bottom-right-radius: 20px;
    opacity: 0.95;
}
/* FOOTER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.footer {
    background-color: #417652;
    padding: 55px 0 34px 80px;
    color: #fff;
    width: 100%;
}
.footer_container {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
}
.footer_logo {
    width: 155px;
    flex: 1;
    position: relative;
    padding-right: 20px;
}
.footer_logo img {
    margin-bottom: 8px;
}
.footer_social_icons {
    margin-top: 34px;
    display: flex;
    justify-content: flex-start;
    gap: 9px;
}
.footer_social_icons img {
    width: 32px;
    height: 32px;
}
.footer_logo::before {
    content: '';
    position: absolute;
    top: 0%;
    bottom: 11%;
    right: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}
.footer_list {
    flex: 1;
    min-width: 200px;
    margin: 0 17px;
    text-align: left;
    position: relative;
    padding: 0 20px;
}
.footer_list::before {
    content: '';
    position: absolute;
    top: 0%;
    bottom: 11%;
    right: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}
.footer_list:last-child::before {
    display: none;
}
.footer_list_title {
    margin-bottom: 15px;
    font-weight: 700;
}
.footer_list_items {
    line-height: 36px;
    margin-bottom: 14px;
}
.footer a {
    color: #fff;
    text-decoration: none;
}
.footer a:hover {
    color: #ff9945;
    transition: color 0.2s;
}
.subfooter {
    background-color: #376446;
    padding: 26px;
    color: #fff;
    text-align: center;
}
@media (max-width: 1080px) {
    .footer {
        padding: 55px 0 34px 0;
    }
    .footer_container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer_logo::before, .footer_list::before {
        display: none;
    }
    .footer_logo, .footer_list {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    .footer_list_items {
        line-height: 30px;
    }
    .footer_list_title {
        margin-top: 10px;
    }
}
@media (max-width: 963px) {
    h2.post_sub_title, h1.post_title, .post_details {
        text-align: center;
    }
    .post_content {
        padding: 0 20px;
    }
    .minigames_container, .minigames_info_container {
        border-radius: 0;
    }
}
@media (max-width: 750px) {
    .game-link:last-child {
        display: inline;
    }
}
@media (max-width: 680px) {
    .grid {
        grid-template-columns: auto;
        justify-items: center;
    }
    .grid_title, .grid_text, .grid_details {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .contact_image_container {
        display: none;
    }
    .contact_form_container {
        margin: 20px 20px 0px 20px;
        flex: 2;
    }
}
@media (min-width: 643px) and (max-width: 963px) {
    .grid {
        grid-template-columns: repeat(2, 280px);
        justify-content: center;
        gap: 21px 21px;
    }
    .grid_title, .grid_text, .grid_details {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}
/*top bar lentgh index */
@media (max-width: 980px) {
    .game-links, .sub_bar_links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}
@media (max-width: 568px) {
    .minigames_880, .minigames_800, .minigames_iframe {
        display: none;
    }
    .minigames_play_button {
        display: block;
        max-width: 100%;
        width: 100%;
        padding-top: 1px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .minigames_play_button img {
        width: 100%;
        height: auto;
    }
}