*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    background: #252831;
    color: #e8ecf0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: #00B4FF;
    text-decoration: none;
    transition: color .2s ease
}

a:hover {
    color: #33c7ff
}

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input, textarea, select {
    font-family: inherit
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.site-main {
    flex: 1
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: all .22s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent
}

.btn--blue {
    background: #00B4FF;
    color: #fff;
    border-color: #00B4FF
}

.btn--blue:hover {
    background: #009de0;
    border-color: #009de0;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0, 180, 255, .35)
}

.btn--yellow {
    background: #FEE900;
    color: #1a1a1a;
    border-color: #FEE900
}

.btn--yellow:hover {
    background: #e6d200;
    border-color: #e6d200;
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(254, 233, 0, .35)
}

.btn--sm {
    padding: 8px 16px;
    font-size: .82rem
}

.btn--lg {
    padding: 14px 30px;
    font-size: 1rem
}

.hdr-wrap {
    background: #054863;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

.hdr-box {
    padding: 0 0
}

.hdr-x9k2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    position: relative;
    flex-wrap: nowrap
}

.hdr-logo-link {
    flex-shrink: 0;
    display: block
}

.hdr-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.hdr-online-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #a8d8ec;
    white-space: nowrap;
    flex-shrink: 0
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, .5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(0, 255, 136, 0)
    }
}

.hdr-online-count {
    color: #00ff88;
    font-weight: 700
}

.hdr-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center
}

.hdr-nav-list {
    display: flex;
    align-items: center;
    gap: 4px
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #d0e8f5;
    font-size: .85rem;
    font-weight: 500;
    transition: all .2s ease;
    white-space: nowrap
}

.hdr-nav-link:hover, .hdr-nav-link:focus-visible {
    background: rgba(0, 180, 255, .15);
    color: #00B4FF
}

.hdr-nav-icon {
    flex-shrink: 0;
    opacity: .75
}

.hdr-nav-link:hover .hdr-nav-icon {
    opacity: 1
}

.hdr-lang-wrap {
    position: relative;
    flex-shrink: 0
}

.hdr-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    color: #d0e8f5;
    font-size: .82rem;
    font-weight: 500;
    transition: background .2s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .12)
}

.hdr-lang-btn:hover {
    background: rgba(255, 255, 255, .15)
}

.hdr-flag {
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0
}

.hdr-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #054863;
    border: 1px solid rgba(0, 180, 255, .2);
    border-radius: 8px;
    min-width: 140px;
    padding: 6px;
    z-index: 300;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    display: none
}

.hdr-lang-dropdown.open {
    display: block;
    animation: fadeDown .18s ease
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hdr-lang-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 5px;
    color: #d0e8f5;
    font-size: .83rem;
    transition: background .15s
}

.hdr-lang-opt:hover, .hdr-lang-opt.active {
    background: rgba(0, 180, 255, .15);
    color: #00B4FF
}

.hdr-btns-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    transition: background .2s;
    flex-shrink: 0
}

.hdr-burger:hover {
    background: rgba(255, 255, 255, .15)
}

.hdr-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #d0e8f5;
    border-radius: 2px;
    transition: all .25s ease
}

.hdr-burger.active .hdr-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hdr-burger.active .hdr-burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hdr-burger.active .hdr-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.hdr-mobile-overlay {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 34, 50, .97);
    z-index: 190;
    overflow-y: auto
}

.hdr-mobile-overlay.open {
    display: block;
    animation: fadeIn .22s ease
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.hdr-mobile-menu {
    padding: 24px 20px;
    max-width: 480px;
    margin: 0 auto
}

.hdr-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.hdr-mobile-link {
    display: block;
    padding: 14px 16px;
    border-radius: 8px;
    color: #d0e8f5;
    font-size: 1rem;
    font-weight: 500;
    transition: background .15s
}

.hdr-mobile-link:hover {
    background: rgba(0, 180, 255, .12);
    color: #00B4FF
}

.hdr-mobile-langs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.hdr-mobile-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    color: #d0e8f5;
    font-size: .83rem
}

.hdr-mobile-lang.active {
    background: rgba(0, 180, 255, .18);
    color: #00B4FF
}

.gm-block-r8x3 {
}

.gm-hero-section {
    position: relative;
    overflow: hidden
}

.gm-hero-bg {
    min-height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative
}

.gm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 34, 50, .92) 0%, rgba(5, 72, 99, .75) 50%, rgba(37, 40, 49, .85) 100%)
}

.gm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 40px;
    margin-left: max(40px, calc((100vw - 1200px) / 2 + 20px))
}

.gm-hero-badge {
    display: inline-block;
    background: rgba(0, 180, 255, .18);
    border: 1px solid rgba(0, 180, 255, .4);
    color: #00B4FF;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px
}

.gm-hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.gm-hero-sub {
    font-size: 1.05rem;
    color: #b8d8ec;
    margin-bottom: 28px;
    line-height: 1.6
}

.gm-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(0, 180, 255, .15);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content
}

.gm-hero-stat {
    padding: 12px 24px;
    text-align: center
}

.gm-hero-stat-val {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #00B4FF
}

.gm-hero-stat-lbl {
    display: block;
    font-size: .72rem;
    color: #7ba8c0;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 2px
}

.gm-hero-stat-sep {
    width: 1px;
    background: rgba(0, 180, 255, .2);
    align-self: stretch
}

.gm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.gm-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 10px
}

.gm-section-sub {
    text-align: center;
    color: #8aacbf;
    font-size: .95rem;
    margin-bottom: 36px
}

.gm-features-section {
    padding: 70px 0
}

.gm-features-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

.gm-feature-card {
    background: #0d3044;
    border: 1px solid rgba(0, 180, 255, .12);
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease
}

.gm-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
    border-color: rgba(0, 180, 255, .35)
}

.gm-feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(0, 180, 255, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.gm-feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.gm-feature-text {
    font-size: .88rem;
    color: #8aacbf;
    line-height: 1.6
}

.gm-winners-section {
    padding: 70px 0;
    background: #0a1e2c
}

.gm-winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px
}

.gm-winners-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #0d3044;
    border: 2px solid rgba(0, 180, 255, .18);
    border-radius: 12px;
    overflow: hidden
}

.gm-winners-table th {
    background: #054863;
    color: #00B4FF;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(0, 180, 255, .2)
}

.gm-winners-table td {
    padding: 12px 16px;
    font-size: .88rem;
    color: #c8dde9;
    border-bottom: 1px solid rgba(0, 180, 255, .08)
}

.gm-winners-table tr:last-child td {
    border-bottom: none
}

.gm-winners-table tr:hover td {
    background: rgba(0, 180, 255, .05)
}

.gm-winners-table .w-rank {
    font-weight: 700;
    color: #00B4FF;
    font-size: .9rem
}

.gm-winners-table .w-rank.gold {
    color: #FEE900
}

.gm-winners-table .w-rank.silver {
    color: #c0c8d0
}

.gm-winners-table .w-rank.bronze {
    color: #cd7f32
}

.gm-winners-table .w-amount {
    font-weight: 700;
    color: #00ff88
}

.gm-winners-table .w-mult {
    color: #FEE900;
    font-weight: 600
}

.gm-demo-section {
    padding: 70px 0
}

.gm-demo-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center
}

.gm-demo-frame-container {
    width: 100%;
    max-width: 900px;
    position: relative;
    border-radius: 16px;
    border: 2px solid rgba(0, 180, 255, .2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5)
}

.gm-demo-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
    background: #0d1520
}

.gm-demo-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.gm-demo-note {
    font-size: .78rem;
    color: #6a8ea0;
    text-align: center
}

.gm-app-section {
    padding: 70px 0;
    background: #0a1e2c
}

.gm-app-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    align-items: start
}

.gm-app-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px
}

.gm-app-table {
    width: 100%;
    min-width: 300px;
    border-collapse: collapse;
    border: 2px solid rgba(0, 180, 255, .18);
    border-radius: 12px;
    overflow: hidden
}

.gm-app-table td {
    padding: 11px 16px;
    font-size: .88rem;
    border-bottom: 1px solid rgba(0, 180, 255, .08);
    vertical-align: top
}

.gm-app-table td:first-child {
    color: #7ba8c0;
    font-weight: 600;
    font-size: .82rem;
    white-space: nowrap;
    width: 45%;
    background: #054863
}

.gm-app-table td:last-child {
    color: #c8dde9;
    background: #0d3044
}

.gm-app-table tr:last-child td {
    border-bottom: none
}

.gm-app-dl-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px
}

.gm-app-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px
}

.gm-app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s ease;
    border: 2px solid;
    font-family: inherit
}

.gm-app-dl-ios {
    background: #1c1c1e;
    border-color: rgba(255, 255, 255, .15);
    color: #fff
}

.gm-app-dl-ios:hover {
    border-color: #00B4FF;
    background: #0d2030;
    color: #fff
}

.gm-app-dl-android {
    background: #1c2a1c;
    border-color: rgba(0, 200, 80, .2);
    color: #fff
}

.gm-app-dl-android:hover {
    border-color: #00c850;
    background: #0d1e0d;
    color: #fff
}

.gm-app-dl-apk {
    background: #1c1a14;
    border-color: rgba(254, 233, 0, .2);
    color: #fff
}

.gm-app-dl-apk:hover {
    border-color: #FEE900;
    background: #1a1800;
    color: #fff
}

.gm-app-dl-text {
    display: flex;
    flex-direction: column
}

.gm-app-dl-sub {
    font-size: .72rem;
    color: #8aacbf;
    line-height: 1
}

.gm-app-dl-store {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.4
}

.gm-app-pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.gm-pros, .gm-cons {
    background: #0d2030;
    border-radius: 10px;
    padding: 16px
}

.gm-pros {
    border-left: 3px solid #00ff88
}

.gm-cons {
    border-left: 3px solid #ff4d4d
}

.gm-pros-title, .gm-cons-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 10px
}

.gm-pros-title {
    color: #00ff88
}

.gm-cons-title {
    color: #ff4d4d
}

.gm-pros ul li, .gm-cons ul li {
    font-size: .82rem;
    color: #9ab8c6;
    padding: 4px 0 4px 14px;
    position: relative;
    line-height: 1.5
}

.gm-pros ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88
}

.gm-cons ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4d4d
}

.gm-reviews-section {
    padding: 70px 0
}

.gm-reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin-bottom: 48px
}

.gm-review-card {
    background: #0d3044;
    border: 1px solid rgba(0, 180, 255, .12);
    border-radius: 14px;
    padding: 24px;
    transition: transform .2s, box-shadow .2s
}

.gm-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

.gm-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.gm-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #054863, #00B4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0
}

.gm-review-author {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
    margin-bottom: 4px
}

.gm-review-stars {
    display: flex;
    gap: 2px
}

.gm-review-text {
    font-size: .87rem;
    color: #9ab8c6;
    line-height: 1.65
}

.gm-review-form-wrap {
    background: #0d2030;
    border: 1px solid rgba(0, 180, 255, .15);
    border-radius: 16px;
    padding: 36px;
    max-width: 620px;
    margin: 0 auto
}

.gm-review-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

.gm-review-form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.gm-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.gm-form-label {
    font-size: .85rem;
    font-weight: 600;
    color: #8aacbf
}

.gm-form-label span {
    color: #ff6b6b
}

.gm-form-input, .gm-form-textarea {
    background: #0a1e2c;
    border: 1.5px solid rgba(0, 180, 255, .2);
    border-radius: 8px;
    color: #e8ecf0;
    font-size: .9rem;
    padding: 12px 14px;
    transition: border-color .2s, box-shadow .2s;
    width: 100%
}

.gm-form-input:focus, .gm-form-textarea:focus {
    outline: none;
    border-color: #00B4FF;
    box-shadow: 0 0 0 3px rgba(0, 180, 255, .12)
}

.gm-form-input::placeholder, .gm-form-textarea::placeholder {
    color: #4a6070
}

.gm-form-textarea {
    resize: vertical;
    min-height: 110px
}

.gm-form-stars {
    display: flex;
    gap: 6px
}

.gm-form-star {
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: #4a6070;
    transition: color .15s, transform .15s
}

.gm-form-star:hover, .gm-form-star.active {
    color: #FEE900;
    transform: scale(1.1)
}

.gm-review-submit-btn {
    align-self: flex-start
}

.gm-review-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 180, 255, .1);
    border: 1px solid rgba(0, 180, 255, .3);
    border-radius: 8px;
    padding: 14px 18px;
    color: #00B4FF;
    font-size: .9rem;
    font-weight: 500
}

.gm-faq-section {
    padding: 70px 0;
    background: #0a1e2c
}

.gm-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.gm-faq-item {
    background: #0d3044;
    border: 1px solid rgba(0, 180, 255, .12);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s
}

.gm-faq-item.open {
    border-color: rgba(0, 180, 255, .3)
}

.gm-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    text-align: left;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: color .2s
}

.gm-faq-btn:hover {
    color: #00B4FF
}

.gm-faq-arrow {
    flex-shrink: 0;
    transition: transform .25s ease
}

.gm-faq-item.open .gm-faq-arrow {
    transform: rotate(180deg)
}

.gm-faq-answer {
    padding: 0 22px 18px;
    color: #8aacbf;
    font-size: .88rem;
    line-height: 1.7
}

.gm-faq-answer[hidden] {
    display: none
}

.gm-author-section {
    padding: 40px 0;
    background: #054863
}

.gm-author-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(0, 180, 255, .15);
    border-radius: 14px;
    padding: 24px 28px;
    max-width: 800px;
    margin: 0 auto;
    position: relative
}

.gm-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d3044, #00B4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0
}

.gm-author-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6a8ea0;
    margin-bottom: 4px
}

.gm-author-name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #00B4FF;
    margin-bottom: 2px
}

.gm-author-title {
    font-size: .82rem;
    color: #7ba8c0;
    margin-bottom: 8px
}

.gm-author-bio {
    font-size: .82rem;
    color: #8aacbf;
    line-height: 1.6
}

.gm-author-updated {
    position: absolute;
    top: 24px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: #6a8ea0
}

.content-box {
    padding: 40px 0 60px
}

.entry-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3
}

.text-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 12px
}

.text-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c8dde9;
    margin: 24px 0 10px
}

.text-content p {
    font-size: .93rem;
    color: #8aacbf;
    line-height: 1.7;
    margin-bottom: 14px
}

.text-content ul, .text-content ol {
    padding-left: 20px;
    margin-bottom: 14px
}

.text-content ul {
    list-style: disc
}

.text-content ol {
    list-style: decimal
}

.text-content li {
    font-size: .93rem;
    color: #8aacbf;
    line-height: 1.7;
    margin-bottom: 6px
}

.text-content strong {
    color: #c8dde9;
    font-weight: 700
}

.text-content a {
    color: #00B4FF;
    text-decoration: underline
}

.text-content a:hover {
    color: #33c7ff
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 2px solid rgba(0, 180, 255, .18);
    border-radius: 8px;
    overflow: hidden;
    font-size: .87rem
}

.text-content th {
    background: #054863;
    color: #00B4FF;
    padding: 12px 14px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 180, 255, .2)
}

.text-content td {
    padding: 10px 14px;
    color: #c8dde9;
    border-bottom: 1px solid rgba(0, 180, 255, .08)
}

.text-content tr:last-child td {
    border-bottom: none
}

.text-content tr:hover td {
    background: rgba(0, 180, 255, .04)
}

.technical-content {
    max-width: 820px
}

.site-main--technical .content-box {
    padding: 40px 0 80px
}

.breadcrumb-nav {
    padding: 16px 0;
    margin-bottom: 4px
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.breadcrumb-item {
    font-size: .82rem;
    color: #6a8ea0
}

.breadcrumb-item a {
    color: #00B4FF
}

.breadcrumb-item a:hover {
    color: #33c7ff
}

.breadcrumb-item--current {
    color: #8aacbf
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #4a6070
}

.ftr-x4m1 {
    background: #054863;
    padding: 56px 0 24px;
    margin-top: auto
}

.ftr-top-row {
    display: grid;
    grid-template-columns:1.4fr 1fr 1fr 1.4fr;
    gap: 32px;
    margin-bottom: 40px
}

.ftr-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 12px
}

.ftr-tagline {
    font-size: .82rem;
    color: #7ba8c0;
    line-height: 1.6;
    max-width: 240px
}

.ftr-nav-title {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #00B4FF;
    font-weight: 700;
    margin-bottom: 12px
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.ftr-nav-list a {
    font-size: .85rem;
    color: #7ba8c0;
    transition: color .15s
}

.ftr-nav-list a:hover {
    color: #00B4FF
}

.ftr-provider-link {
    display: inline-block;
    margin-bottom: 6px
}

.ftr-provider-logo {
    height: 36px;
    width: auto;
    filter: brightness(.9) contrast(1.05);
    transition: filter .2s
}

.ftr-provider-link:hover .ftr-provider-logo {
    filter: brightness(1.1) contrast(1.1)
}

.ftr-badges-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px
}

.ftr-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(0, 180, 255, .15);
    border-radius: 8px;
    padding: 8px 10px;
    min-width: 54px
}

.ftr-badge span {
    font-size: .65rem;
    color: #7ba8c0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em
}

.ftr-payments-row {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 28px 0;
    text-align: center
}

.ftr-payments-title {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6a8ea0;
    margin-bottom: 14px
}

.ftr-payments-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
}

.ftr-payment-item {
    background: rgba(255, 255, 255, .06);
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s
}

.ftr-payment-item:hover {
    background: rgba(0, 180, 255, .1)
}

.ftr-disclaimer-row {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.ftr-disclaimer-text {
    font-size: .75rem;
    color: #4a6070;
    line-height: 1.6;
    text-align: center;
    max-width: 780px;
    margin: 0 auto
}

.ftr-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    flex-wrap: wrap
}

.ftr-copyright {
    font-size: .8rem;
    color: #4a6070
}

.ftr-age-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 900;
    color: #e8ecf0;
    flex-shrink: 0
}

body {
    padding-bottom: 70px
}

.wp-content-themes-stub, .wp-compat-layer {
    display: none;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0
}

.x3f7a, .v8qp2, .n1ks6, .m4tr9 {
    display: none
}

@media (max-width: 1024px) {
    .hdr-nav-wrap {
        display: none
    }

    .hdr-burger {
        display: flex
    }

    .ftr-top-row {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 768px) {
    .hdr-x9k2 {
        flex-wrap: wrap;
        gap: 10px
    }

    .hdr-online-wrap {
        font-size: .72rem
    }

    .gm-hero-content {
        padding: 40px 20px;
        margin-left: 0
    }

    .gm-hero-bg {
        min-height: auto
    }

    .gm-hero-stats {
        flex-wrap: wrap;
        width: 100%
    }

    .gm-hero-stat-sep {
        display: none
    }

    .gm-hero-stat {
        flex: 1;
        min-width: 80px
    }

    .gm-app-grid {
        grid-template-columns:1fr
    }

    .gm-app-pros-cons {
        grid-template-columns:1fr
    }

    .ftr-top-row {
        grid-template-columns:1fr
    }

    .gm-author-card {
        flex-direction: column
    }

    .gm-author-updated {
        position: static;
        margin-top: 10px
    }

    .widget-bonus-msg {
        font-size: .8rem
    }

    .gm-review-form-wrap {
        padding: 24px
    }

    .ftr-bottom-row {
        justify-content: center;
        text-align: center
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px
    }

    .gm-hero-title {
        font-size: 1.8rem
    }

    .gm-hero-actions {
        flex-direction: column
    }

    .gm-hero-actions .btn {
        width: 100%;
        justify-content: center
    }

    .hdr-btns-wrap .btn--sm {
        padding: 7px 12px;
        font-size: .78rem
    }

    .widget-bonus-inner {
        flex-wrap: wrap;
        gap: 10px
    }

    .widget-bonus-btn {
        width: 100%;
        text-align: center
    }
}

.wp-content-themes-stub {
    background: 0 0;
    border: 0;
    color: transparent;
    content-visibility: hidden
}

#wpadminbar {
    display: none !important
}

.hsgfsv {
    max-width: 920px;
    margin: 48px auto;
    padding: 36px 32px;
    background: linear-gradient(180deg, #0d3044, #0a1e2c);
    border: 1px solid rgba(0, 180, 255, 0.18);
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.hsgfsv p,
.hsgfsv li {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.hsgfsv a {
    color: #00B4FF;
    font-weight: 600;
    word-break: break-all;
    overflow-wrap: anywhere;
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hsgfsv {
        margin: 26px 12px;
        padding: 20px 16px;
    }

    .hsgfsv p,
    .hsgfsv li {
        font-size: 14px;
        line-height: 1.65;
    }

    .hsgfsv a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hsgfsv {
        margin: 20px 10px;
        padding: 16px 14px;
    }

    .hsgfsv a {
        font-size: 13.5px;
    }
}