body {
    margin: 0;
    padding: 0;
}

.navbar {
    display: block;
    position: relative;
    background-color: rgb(50, 54, 109); /* #9b3659; */
    padding-right: 80px;
    padding-left: 80px;
}

body {
    margin: 0;
    padding: 0;
    color: rgb(30, 34, 109);
    font-family: system-ui;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff; /* Ð¦Ð²ÐµÑ‚ Ñ„Ð¾Ð½Ð° Ñ…ÐµÐ´ÐµÑ€Ð° */
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-right: 20px;
    display: list-item;
    text-align: -webkit-match-parent;
}

.nav-menu a {
    color: #fff;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: #8b2649;
}

.div-container {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;

}

.img-container {
    width: 100%;
    text-align: center;
    height: auto;
    padding-top: 100px;
}

.img-container img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.icon-container img:hover {
    transition: transform 0.3s ease-in-out;
    transform: scale(1.2);
}

.icon-container-vert img:hover {
    transition: transform 0.3s ease-in-out;
    transform: scale(1.2);
}

.store-buttons {
    display: flex;
}

.store-buttons img {
    margin-right: 10px;
}

.content {
    margin-top: 80px;
}

section {
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 70px;
    padding-top: 30px;
}

section h1 {
    font-size: 32px;
}

main {
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

#about {
    text-align: center !important;
}

.about-text{
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.game-container {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.icon-container {
    flex: 1;
}

.icon-container img {
    width: 80%;
}

.game-container-vert {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.icon-container-vert {
    display: table-cell;
    vertical-align: middle;
    justify-content: left;
    align-items: center;
    width: 40%;
}

.icon-container-vert img {
    width: 70%;
}

.game-text-container-vert {
    align-self: center;
    text-align: right;
    width: 60%;
}

.game-text-container {
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .nav-menu a {
        font-size: 15px;
    }

    .img-container img {
        width: 100%;
    }

    .game-container {
        display: block;
    }

    .game-container-vert {
        display: table;
        width: 100%;
    }

    .icon-container-vert {
        display: table-header-group;
        width: 100% !important;
    }

    .icon-container-vert img {
        width: 70%;
    }

    .game-text-container-vert {
        display: table-footer-group;
        width: 100%;
        text-align: center;
    }

    .icon-container {
        display: block;
        width: 100%;
    }

    .game-text-container {
        display: block;
        width: 100%;
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }
}

.footer {
    background-color: rgb(50, 54, 109);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.footer a {
    color: #fff;
    text-decoration: underline;
    margin: 0 10px;
    text-decoration: none;
}

.footer a:hover {
    color: #ffcc00; /* Цвет при наведении на ссылку */
}

.footer p {
    margin: 10px 0;
}