/* style.css */

/* Сброс браузерных стилей */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f6f6;
    color: #242424;
    min-height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}
a:hover {
    color: #259c19;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
}

.main-header {
    background: #19171a;
    border-bottom: 4px solid #259c19;
    padding: 0;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
.logo img {
    display: block;
    height: 38px;
}

.main-nav ul {
    display: flex;
    gap: 16px;
    list-style: none;
}
.main-nav a {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 17px;
    border-radius: 8px;
    background: #29272c;
    color: #fafafa;
    transition: background 0.15s, color 0.15s;
}
.main-nav a.active,
.main-nav a:hover {
    background: linear-gradient(90deg, #23b800 70%, #ff9800 100%);
    color: #fff;
}
.icon-android::before {
    content: "🤖";
    margin-right: 8px;
}
.icon-gamepad::before {
    content: "🎮";
    margin-right: 8px;
}
.icon-cog::before {
    content: "⚙️";
    margin-right: 8px;
}
.icon-star::before {
    content: "⭐";
    margin-right: 8px;
}
.icon-search::before {
    content: "🔍";
}

.header-search {
    display: flex;
    align-items: center;
    background: #2e2c32;
    border-radius: 8px;
    overflow: hidden;
}
.header-search input {
    border: none;
    outline: none;
    padding: 8px 12px;
    background: transparent;
    color: #fafafa;
    font-size: 16px;
    width: 140px;
    transition: width 0.2s;
}
.header-search input:focus {
    width: 180px;
    background: #232128;
}
.header-search button {
    background: #23b800;
    color: #fff;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    font-size: 17px;
    height: 100%;
    border-left: 1px solid #1b9c14;
    transition: background 0.18s;
}
.header-search button:hover {
    background: #189310;
}

/* Адаптивность */
@media (max-width: 900px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        min-height: unset;
    }
    .main-nav ul {
        gap: 10px;
    }
    .header-search {
        margin-top: 7px;
        width: 100%;
    }
    .header-search input {
        width: 100px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 7px;
    }
    .main-header {
        padding-bottom: 5px;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 7px;
    }
    .main-nav a {
        padding: 8px 14px;
        font-size: 15px;
    }
    .logo img {
        height: 28px;
    }
    .header-search input {
        width: 70px;
        font-size: 14px;
    }
}

/* Основное содержимое */
.site-content {
    margin-top: 38px;
    min-height: 500px;
}
.main-footer {
    background: #161418;
    color: #e9e9e9;
    padding: 38px 0 0 0;
    margin-top: 46px;
    font-size: 15px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 26px;
    flex-wrap: wrap;
    padding-bottom: 24px;
}
.footer-left, .footer-center, .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.footer-logo img {
    display: block;
    height: 30px;
}
.footer-nav ul {
    display: flex;
    gap: 16px;
    list-style: none;
    margin-top: 10px;
}
.footer-nav a {
    color: #b5ffb6;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 6px;
    transition: background 0.14s, color 0.14s;
    font-size: 16px;
}
.footer-nav a:hover {
    background: #1b9c14;
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a img {
    border-radius: 50%;
    background: #232228;
    transition: background 0.14s;
}
.footer-socials a:hover img {
    background: #24a700;
}

.footer-btn {
    display: inline-block;
    margin-bottom: 9px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.15s;
    text-align: center;
}
.footer-btn-green {
    background: linear-gradient(90deg, #1fa400 70%, #6cd46d 100%);
    color: #fff;
}
.footer-btn-green:hover {
    background: #1b9c14;
}
.footer-btn-orange {
    background: linear-gradient(90deg, #f7961c 60%, #ffe478 100%);
    color: #39331b;
}
.footer-btn-orange:hover {
    background: #f7961c;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1.5px solid #242228;
    padding: 16px 0 10px 0;
    margin-top: 9px;
    font-size: 14px;
    color: #aaaaaa;
}
.footer-copy {
    opacity: 0.8;
}
.footer-back {
    flex-shrink: 0;
}
.footer-up {
    display: inline-block;
    background: #259c19;
    color: #fff;
    padding: 5px 9px 4px 9px;
    border-radius: 5px;
    font-size: 19px;
    font-weight: bold;
    transition: background 0.12s;
    text-decoration: none;
}
.footer-up:hover {
    background: #23b800;
}

@media (max-width: 900px) {
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
@media (max-width: 600px) {
    .main-footer {
        font-size: 14px;
        padding-top: 25px;
    }
    .footer-nav ul {
        gap: 8px;
    }
    .footer-btn {
        font-size: 15px;
        padding: 7px 12px;
    }
}
.main-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 34px;
    min-height: 1100px;
}
.sidebar {
    flex: 0 0 255px;
    background: #fff;
    border-radius: 18px;
    margin-top: 10px;
    padding: 18px 16px 24px 16px;
    box-shadow: 0 3px 22px 0 #00000009;
    min-height: 780px;
}
.sidebar-block:not(:last-child) {
    margin-bottom: 25px;
}
.sidebar-title {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 11px;
    color: #313d1f;
    letter-spacing: 0.02em;
}
.sidebar-link {
    display: block;
    margin-bottom: 7px;
    border-radius: 6px;
    padding: 7px 13px;
    color: #19171a;
    font-size: 15px;
    font-weight: 500;
    background: #e4ffe7;
    transition: background 0.14s, color 0.14s;
}
.sidebar-link:last-child { margin-bottom: 0; }
.sidebar-link:hover {
    background: #24a700;
    color: #fff;
}
.sidebar-link-green { background: #f6ff7e; }
.sidebar-link-blue { background: #e3f3ff; }
.sidebar-link-purple { background: #f2e5ff; }
.sidebar-link-greenlight { background: #e7ffe6; }
.sidebar-link-yellow { background: #fffac7; }
.sidebar-link-cyan { background: #e9fffb; }

/* Main Content */
.main-content {
    flex: 1 1 0;
    background: #fff;
    border-radius: 18px;
    min-height: 900px;
    padding: 30px 34px 38px 34px;
    box-shadow: 0 3px 22px 0 #00000009;
}
.main-content h1 {
    font-size: 2rem;
    color: #259c19;
    margin-bottom: 19px;
    font-weight: 800;
}
.intro-text {
    font-size: 1.12rem;
    color: #383838;
    margin-bottom: 34px;
    line-height: 1.67;
}
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 42px;
}
.app-card {
    background: #f6f6f6;
    border-radius: 15px;
    box-shadow: 0 1px 9px 0 #24a70010;
    padding: 22px 18px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 286px;
    transition: box-shadow 0.17s, transform 0.13s;
}
.app-card:hover {
    box-shadow: 0 5px 28px 0 #24a70018;
    transform: translateY(-4px) scale(1.013);
}
.app-img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 14px;
    margin-bottom: 11px;
    background: #fff;
}
.app-title {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: center;
    color: #259c19;
}
.app-title a { color: #259c19; }
.app-title a:hover { color: #189310; }
.app-cat {
    font-size: 0.99rem;
    margin-bottom: 9px;
    color: #6ab800;
    background: #e3ffd7;
    border-radius: 5px;
    padding: 2px 10px;
    display: inline-block;
}
.app-desc {
    font-size: 0.98rem;
    text-align: center;
    color: #353535;
    line-height: 1.56;
}
.app-card-fake {
    opacity: 0.88;
}

/* Дополнительные блоки */
.instructions-block, .about-block {
    background: #eaffee;
    border-radius: 15px;
    margin-top: 32px;
    padding: 21px 22px 18px 22px;
    box-shadow: 0 1px 12px 0 #24a7000d;
}
.instructions-block h2, .about-block h2 {
    color: #22a800;
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: bold;
}
.instructions-block ul {
    margin-left: 19px;
    margin-bottom: 11px;
}
.instructions-block li {
    margin-bottom: 5px;
    font-size: 1rem;
}
.instructions-note {
    margin-top: 8px;
    color: #6c9019;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.instructions-note .icon-star::before {
    content: "⭐";
    margin-right: 7px;
    color: #ffc700;
}
.about-block p {
    margin-top: 5px;
    font-size: 1.04rem;
    line-height: 1.58;
}

/* Адаптивность */
@media (max-width: 1150px) {
    .main-wrapper {
        flex-direction: column;
        gap: 0;
    }
    .sidebar {
        width: 98%;
        margin: 0 auto 20px auto;
        min-height: unset;
    }
    .main-content {
        width: 100%;
        padding: 19px 7px 24px 7px;
    }
}
@media (max-width: 800px) {
    .main-content {
        padding: 11px 2vw 16px 2vw;
    }
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 19px;
    }
}
@media (max-width: 540px) {
    .main-content {
        border-radius: 0;
        padding: 6px 1vw 12px 1vw;
    }
    .sidebar {
        border-radius: 0;
        padding: 10px 4px 15px 4px;
    }
}
.section-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 18px 0 #24a70012;
    margin: 0 auto 34px auto;
    padding: 38px 34px 34px 34px;
    max-width: 820px;
    min-height: 470px;
    position: relative;
}

.section-content h1 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #259c19;
    margin-bottom: 22px;
    line-height: 1.16;
}

.page-desc {
    font-size: 1.08rem;
    color: #343b2b;
    line-height: 1.74;
}

.page-desc p,
.page-desc ul,
.page-desc ol {
    margin-bottom: 18px;
}

.page-desc ul {
    padding-left: 24px;
    list-style: disc;
}

.page-desc ol {
    padding-left: 27px;
    list-style: decimal;
}

.page-desc li {
    margin-bottom: 8px;
    font-size: 1.03rem;
}

.page-desc b,
.page-desc strong {
    color: #189310;
    font-weight: 600;
}

.page-desc a {
    color: #1c9b24;
    border-bottom: 1px dashed #23b8007a;
    transition: color 0.12s, border-bottom 0.12s;
    text-decoration: none;
    word-break: break-all;
}
.page-desc a:hover {
    color: #ff9800;
    border-bottom: 1px solid #ff9800;
}

@media (max-width: 900px) {
    .section-content {
        padding: 28px 10px 23px 10px;
        max-width: 97vw;
    }
    .section-content h1 {
        font-size: 1.32rem;
    }
}

@media (max-width: 600px) {
    .section-content {
        border-radius: 0;
        padding: 17px 4vw 17px 4vw;
    }
}
.games-block-title {
    font-size: 1.2rem;
    color: #1fa400;
    font-weight: 700;
    margin: 23px 0 14px 0;
    letter-spacing: 0.01em;
}

.games-top-block {
    margin: 21px 0 12px 0;
    background: #f6fff6;
    border-radius: 11px;
    padding: 15px 20px 9px 15px;
    box-shadow: 0 2px 11px 0 #25c80012;
}

.games-top-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 44px;
    list-style: none;
    margin: 0; padding: 0;
}
.games-top-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 170px;
}
.games-top-list a {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #222;
    text-decoration: none;
    border-radius: 7px;
    padding: 3px 8px 3px 2px;
    transition: background 0.13s;
}
.games-top-list a:hover {
    background: #eaffee;
}
.games-top-img {
    border-radius: 11px;
    box-shadow: 0 2px 10px 0 #0d830014;
    background: #fff;
    width: 56px;
    height: 56px;
    object-fit: cover;
}
.games-top-name {
    font-weight: 600;
    font-size: 1.08em;
    color: #189310;
}
.games-top-rating {
    color: #ffa400;
    font-weight: 600;
    font-size: 1.04em;
    margin-left: 6px;
}

.games-catalog-block {
    margin: 24px 0 7px 0;
}
.games-categories-list {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.games-categories-list li {
    background: #eaffee;
    border-radius: 7px;
    padding: 6px 15px;
    font-weight: 500;
    color: #1c9b24;
    transition: background 0.11s, color 0.11s;
}
.games-categories-list li a {
    color: inherit;
    text-decoration: none;
}
.games-categories-list li:hover {
    background: #22a800;
    color: #fff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
    gap: 19px;
    margin: 25px 0 24px 0;
}
.games-card {
    background: #f6f6f6;
    border-radius: 13px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 13px 14px 13px;
    box-shadow: 0 1px 7px 0 #27bb0012;
}
.games-card-imgwrap {
    flex-shrink: 0;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.games-card-img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 7px 0 #17b30012;
}
.games-card-content {
    flex: 1 1 0;
}
.games-card-title {
    font-size: 1.07rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.games-card-title a {
    color: #1c9b24;
    text-decoration: none;
}
.games-card-title a:hover {
    color: #ffa400;
}
.games-card-desc {
    font-size: 1rem;
    color: #353535;
    line-height: 1.45;
    margin-bottom: 2px;
}

.games-faq-block {
    background: #f7fff4;
    border-radius: 10px;
    padding: 17px 14px 12px 18px;
    margin: 19px 0 23px 0;
    box-shadow: 0 1px 8px 0 #19ac0010;
}
.games-faq-list {
    margin: 0;
}
.games-faq-list dt {
    font-weight: 600;
    margin: 16px 0 5px 0;
    color: #259c19;
    font-size: 1.03rem;
}
.games-faq-list dd {
    margin: 0 0 6px 0;
    color: #434343;
    font-size: 0.99rem;
}

@media (max-width: 900px) {
    .games-top-list { gap: 13px 13px; }
    .games-grid { grid-template-columns: 1fr; }
    .games-card { flex-direction: column; align-items: center; text-align: center; }
    .games-card-imgwrap { margin-bottom: 9px; }
}
/* --- Программы --- */
.apps-block-title {
    font-size: 1.17rem;
    color: #247fcd;
    font-weight: 700;
    margin: 23px 0 14px 0;
    letter-spacing: 0.01em;
}

.apps-top-block {
    margin: 20px 0 18px 0;
    background: #f5f8ff;
    border-radius: 11px;
    padding: 15px 20px 9px 15px;
    box-shadow: 0 2px 11px 0 #1579d012;
}

.apps-top-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 36px;
    list-style: none;
    margin: 0; padding: 0;
}
.apps-top-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 155px;
}
.apps-top-list a {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #192233;
    text-decoration: none;
    border-radius: 7px;
    padding: 3px 8px 3px 2px;
    transition: background 0.13s;
}
.apps-top-list a:hover {
    background: #dbefff;
}
.apps-top-img {
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 #196fbc14;
    background: #fff;
    width: 56px;
    height: 56px;
    object-fit: cover;
}
.apps-top-name {
    font-weight: 600;
    font-size: 1.08em;
    color: #2573d1;
}
.apps-top-rating {
    color: #ff9800;
    font-weight: 600;
    font-size: 1.04em;
    margin-left: 6px;
}

.apps-tags-block {
    margin-bottom: 19px;
    margin-top: 6px;
}
.apps-tag {
    display: inline-block;
    background: #e4f2ff;
    color: #206a98;
    border-radius: 8px;
    padding: 7px 16px 6px 16px;
    font-size: 0.99em;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: background 0.14s, color 0.13s;
    cursor: pointer;
}
.apps-tag:hover {
    background: #247fcd;
    color: #fff;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
    gap: 19px;
    margin: 24px 0 21px 0;
}
.apps-card {
    background: #f7f9fc;
    border-radius: 13px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 13px 14px 13px;
    box-shadow: 0 1px 7px 0 #2179d010;
}
.apps-card-imgwrap {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.apps-card-img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 7px 0 #2179d014;
}
.apps-card-content {
    flex: 1 1 0;
}
.apps-card-title {
    font-size: 1.04rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.apps-card-title a {
    color: #2573d1;
    text-decoration: none;
}
.apps-card-title a:hover {
    color: #ffa400;
}
.apps-card-desc {
    font-size: 0.97rem;
    color: #353535;
    line-height: 1.44;
    margin-bottom: 2px;
}

.apps-instructions-block {
    background: #eaf6ff;
    border-radius: 12px;
    margin: 23px 0 16px 0;
    padding: 17px 17px 12px 19px;
    box-shadow: 0 1px 10px 0 #196fbc10;
}
.apps-instructions-list {
    margin-left: 19px;
    margin-bottom: 8px;
    font-size: 1.01rem;
}
.apps-instructions-list li {
    margin-bottom: 6px;
}

.apps-faq-block {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 17px 14px 12px 18px;
    margin: 18px 0 21px 0;
    box-shadow: 0 1px 8px 0 #1579d014;
}
.apps-faq-list {
    margin: 0;
}
.apps-faq-list dt {
    font-weight: 600;
    margin: 16px 0 5px 0;
    color: #2573d1;
    font-size: 1.02rem;
}
.apps-faq-list dd {
    margin: 0 0 6px 0;
    color: #434343;
    font-size: 0.98rem;
}

.apps-native-link {
    background: #f4ffed;
    border-left: 4px solid #62b208;
    color: #246b18;
    border-radius: 7px;
    margin-top: 30px;
    padding: 12px 17px;
    font-size: 1.03rem;
    opacity: 0.98;
}
.apps-native-link a {
    color: #247fcd;
    border-bottom: 1px dashed #2573d1;
    transition: color 0.12s, border-bottom 0.12s;
}
.apps-native-link a:hover {
    color: #ff9800;
    border-bottom: 1px solid #ff9800;
}

@media (max-width: 900px) {
    .apps-top-list { gap: 13px 13px; }
    .apps-grid { grid-template-columns: 1fr; }
    .apps-card { flex-direction: column; align-items: center; text-align: center; }
    .apps-card-imgwrap { margin-bottom: 9px; }
}
.reviews-stats-block {
    background: #f6f7ff;
    border-radius: 10px;
    padding: 13px 19px;
    margin: 18px 0 30px 0;
    display: flex;
    align-items: center;
    gap: 19px;
    font-size: 1.01em;
    color: #1b3a69;
}
.reviews-stats-num {
    font-size: 1.3em;
    font-weight: bold;
    color: #247fcd;
    margin-right: 7px;
}
.reviews-stats-rating b {
    color: #ffa700;
    font-weight: 600;
}
.reviews-stats-bar {
    display: inline-block;
    width: 22px;
    height: 3px;
    background: #a7ccf8;
    border-radius: 2px;
    margin: 0 13px;
}

.reviews-list {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 31px;
}
.review-item {
    background: #f9fcff;
    border-radius: 13px;
    box-shadow: 0 1px 7px 0 #2179d010;
    padding: 19px 17px 17px 17px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 1.07em;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 7px;
}
.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    background: #e6ecf7;
    font-size: 1.08em;
    font-weight: bold;
    color: #4b73c0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-avatar-text {
    background: #d1e2ff;
    color: #1d3c6c;
    font-size: 1.11em;
    font-weight: 700;
}
.review-name {
    font-weight: 500;
    color: #2879c4;
    margin-right: 10px;
}
.review-rating {
    background: #fff6d1;
    color: #f9a200;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 1.02em;
    font-weight: bold;
    margin-left: 5px;
}
.review-text {
    color: #25282b;
    line-height: 1.64;
    margin-bottom: 2px;
}
.review-date {
    display: inline-block;
    font-size: 0.95em;
    color: #91a2b9;
    margin-top: 4px;
}

.reviews-add-block {
    background: #f3fff0;
    border-radius: 13px;
    box-shadow: 0 1px 7px 0 #19a51a15;
    padding: 21px 17px 18px 17px;
    margin-bottom: 32px;
}
.reviews-add-title {
    font-weight: 600;
    color: #258b1d;
    margin-bottom: 8px;
    font-size: 1.13em;
}
.reviews-add-tip {
    color: #6ca31b;
    font-size: 1em;
    margin-top: 8px;
    margin-bottom: 11px;
}
.reviews-add-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 7px;
}
.reviews-add-form input[type="text"], 
.reviews-add-form textarea, 
.reviews-add-form select {
    border: 1.2px solid #e2e9f2;
    border-radius: 7px;
    padding: 8px 11px;
    font-size: 1em;
    font-family: inherit;
    background: #fff;
    transition: border 0.13s;
    width: 100%;
    resize: none;
}
.reviews-add-form textarea {
    min-height: 62px;
    max-height: 220px;
}
.reviews-add-form input[type="text"]:focus, 
.reviews-add-form textarea:focus, 
.reviews-add-form select:focus {
    border-color: #258b1d;
    outline: none;
}
.reviews-add-form button {
    background: linear-gradient(90deg, #23b800 70%, #ff9800 100%);
    color: #fff;
    border: none;
    padding: 10px 0;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.05em;
    cursor: pointer;
    transition: background 0.16s;
}
.reviews-add-form button:hover {
    background: #23b800;
}

.reviews-faq-block {
    background: #f9fcff;
    border-radius: 10px;
    padding: 17px 14px 12px 18px;
    margin: 18px 0 21px 0;
    box-shadow: 0 1px 8px 0 #1579d014;
}
.reviews-faq-title {
    font-size: 1.08em;
    color: #2879c4;
    font-weight: 700;
    margin-bottom: 8px;
}
.reviews-faq-block dt {
    font-weight: 600;
    margin: 13px 0 4px 0;
    color: #2879c4;
    font-size: 1.02rem;
}
.reviews-faq-block dd {
    margin: 0 0 6px 0;
    color: #434343;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .reviews-list { gap: 18px; }
    .review-item { padding: 14px 7px 14px 7px; }
}
