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

:root {
    --c-header: #054863;
    --c-header-dark: #033a50;
    --c-btn-blue: #00B4FF;
    --c-btn-yellow: #FEE900;
    --c-bg: #252831;
    --c-bg-card: #1e2129;
    --c-bg-card2: #2d3140;
    --c-text: #e8eaf0;
    --c-text-muted: #9ba3b8;
    --c-border: #3a4058;
    --c-accent: #00B4FF;
    --c-gold: #FEE900;
    --c-green: #1fc760;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --font-main: 'Rubik', 'Inter', sans-serif;
    --font-head: 'Fredoka', 'Poppins', sans-serif;
    --transition: .22s ease;
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
}

body {
    font-family: var(--font-main);
    background: var(--c-bg);
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-btn-yellow);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    line-height: 1.25;
    color: #fff;
}

h1 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: .85rem;
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: .85rem;
}

li {
    margin-bottom: .35rem;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 10px 14px;
    border: 1.5px solid var(--c-border);
}

th {
    background: var(--c-header);
    color: #fff;
    font-family: var(--font-head);
}

tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s, filter .18s;
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
}

.btn:active {
    transform: scale(.97);
}

.btn--blue {
    background: var(--c-btn-blue);
    color: #042a3a;
}

.btn--blue:hover {
    background: #29c4ff;
    color: #042a3a;
    filter: brightness(1.08);
}

.btn--yellow {
    background: var(--c-btn-yellow);
    color: #1a1500;
}

.btn--yellow:hover {
    background: #ffe940;
    color: #1a1500;
    filter: brightness(1.07);
}

.btn--green {
    background: var(--c-green);
    color: #0b2a15;
}

.btn--green:hover {
    filter: brightness(1.1);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--c-btn-blue);
    color: var(--c-btn-blue);
}

.btn--outline:hover {
    background: var(--c-btn-blue);
    color: #042a3a;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1.15rem;
    border-radius: 10px;
}

.btn--sm {
    padding: 7px 14px;
    font-size: .88rem;
}

.box {
    background: var(--c-bg-card);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-blue), var(--c-btn-yellow));
    margin: 10px auto 0;
    border-radius: 2px;
}

.header-wrap {
    background: var(--c-header);
    box-shadow: 0 2px 18px rgba(0, 0, 0, .5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-logo img {
    height: 44px;
    width: auto;
}

.header-logo-text {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .88);
    font-size: .92rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(0, 180, 255, .15);
    color: #fff;
}

.header-nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--c-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: .88rem;
    padding: 5px 10px;
    cursor: pointer;
    transition: background var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .2);
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-header-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    min-width: 140px;
    box-shadow: var(--shadow);
    z-index: 999;
}

.lang-menu.open {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--c-text);
    font-size: .88rem;
    transition: background var(--transition);
}

.lang-menu a:hover {
    background: rgba(0, 180, 255, .12);
    color: #fff;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

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

.burger.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav {
    display: none;
    background: var(--c-header-dark);
    padding: 10px 18px 16px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .88);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 1rem;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav svg {
    width: 18px;
    height: 18px;
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #032f44 0%, #054863 40%, #07304a 70%, #0a2035 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-banner.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: .35;
    transition: opacity .6s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 20, 35, .85) 0%, rgba(5, 72, 99, .55) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 180, 255, .18);
    border: 1px solid rgba(0, 180, 255, .4);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: .82rem;
    color: var(--c-accent);
    margin-bottom: 18px;
    animation: fadeInDown .7s ease both;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
    animation: fadeInDown .8s ease .1s both;
}

.hero-title span {
    color: var(--c-btn-yellow);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    animation: fadeInDown .85s ease .2s both;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInDown .9s ease .3s both;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: fadeInDown .95s ease .4s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-val {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-btn-yellow);
}

.hero-stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-18px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

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

.main-content {
    flex: 1;
    padding: 32px 0 0;
}

.section-block {
    margin: 0 16px 32px;
    background: var(--c-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.advantage-card {
    flex: 1 1 200px;
    max-width: 240px;
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 180, 255, .13);
}

.advantage-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 180, 255, .18), rgba(0, 72, 100, .35));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.advantage-icon svg {
    width: 26px;
    height: 26px;
}

.advantage-title {
    font-family: var(--font-head);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}

.advantage-desc {
    font-size: .83rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

.winners-table {
    min-width: 480px;
}

.winners-table thead th {
    background: var(--c-header);
}

.winners-table td .place-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: .88rem;
    background: var(--c-bg-card2);
    color: var(--c-text-muted);
}

.winners-table tr:nth-child(1) .place-badge {
    background: var(--c-gold);
    color: #1a1500;
}

.winners-table tr:nth-child(2) .place-badge {
    background: #c0c0c0;
    color: #111;
}

.winners-table tr:nth-child(3) .place-badge {
    background: #cd7f32;
    color: #fff;
}

.winners-table .win-amount {
    color: var(--c-green);
    font-weight: 700;
    font-family: var(--font-head);
}

.winners-updated {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: 10px;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.video-item {
    flex: 1 1 280px;
}

.video-label {
    font-family: var(--font-head);
    font-size: .95rem;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.video-frame-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #111;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

.demo-section-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.demo-frame-wrap {
    width: 100%;
    max-width: 820px;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .55);
    position: relative;
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--c-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-head);
    font-size: 1rem;
    text-align: left;
    padding: 16px 18px;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--c-accent);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .3s;
    color: var(--c-accent);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease, padding .3s;
    font-size: .95rem;
    color: var(--c-text-muted);
    padding: 0 18px;
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 18px 16px;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.review-card {
    flex: 1 1 260px;
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    transition: transform var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-blue), var(--c-header));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.review-name {
    font-family: var(--font-head);
    font-size: 1rem;
    color: #fff;
}

.review-date {
    font-size: .78rem;
    color: var(--c-text-muted);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

.review-win {
    display: inline-block;
    margin-top: 8px;
    font-size: .82rem;
    color: var(--c-green);
    font-weight: 600;
}

.pros-cons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.pros-block, .cons-block {
    flex: 1 1 240px;
}

.pros-block h3 {
    color: var(--c-green);
    margin-bottom: 12px;
}

.cons-block h3 {
    color: #f06060;
    margin-bottom: 12px;
}

.pros-cons-list {
    list-style: none;
    padding: 0;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: .93rem;
    color: var(--c-text-muted);
}

.pros-cons-list li:last-child {
    border-bottom: none;
}

.pros-cons-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.game-info-table {
    margin-top: 8px;
}

.game-info-table td:first-child {
    color: var(--c-text-muted);
    font-size: .88rem;
    width: 45%;
}

.game-info-table td:last-child {
    font-weight: 600;
    color: #fff;
    font-size: .93rem;
}

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-accent);
    border-radius: var(--radius-md);
    padding: 20px 22px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-blue), #032f44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.author-role {
    font-size: .83rem;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.author-bio {
    font-size: .88rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .83rem;
    margin-top: 8px;
}

.content-review {
    max-width: 100%;
}

.content-review h2 {
    color: #fff;
    font-family: var(--font-head);
    margin: 1.4em 0 .6em;
    font-size: 1.45rem;
}

.content-review h3 {
    color: var(--c-accent);
    font-family: var(--font-head);
    margin: 1.2em 0 .5em;
    font-size: 1.15rem;
}

.content-review p {
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 1em;
}

.content-review ul, .content-review ol {
    color: var(--c-text-muted);
    padding-left: 1.5rem;
    margin-bottom: 1em;
}

.content-review li {
    margin-bottom: .4em;
}

.content-review table {
    margin-bottom: 1.2em;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.content-review a {
    color: var(--c-accent);
}

.content-review strong {
    color: var(--c-text);
}

.content-review blockquote {
    border-left: 4px solid var(--c-accent);
    padding: 12px 18px;
    background: rgba(0, 180, 255, .07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    margin-bottom: 1em;
}

.footer-wrap {
    background: var(--c-header);
    padding: 36px 0 0;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 28px;
}

.footer-col {
    flex: 1 1 190px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 38px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
}

.footer-desc {
    font-size: .83rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.55;
}

.footer-col h4 {
    font-family: var(--font-head);
    color: #fff;
    margin-bottom: 12px;
    font-size: .98rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 7px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--c-btn-yellow);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.footer-payment-badge {
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .15);
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.footer-trust-badge {
    background: rgba(0, 180, 255, .12);
    border: 1px solid rgba(0, 180, 255, .25);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

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

.footer-copyright {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-provider img {
    height: 26px;
    opacity: .7;
}

.footer-18plus {
    width: 28px;
    height: 28px;
    background: #f06060;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}


.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--c-text-muted);
    padding: 10px 0;
}

.breadcrumb a {
    color: var(--c-text-muted);
}

.breadcrumb a:hover {
    color: var(--c-accent);
}

.breadcrumb-sep {
    opacity: .4;
}

.technical-content {
    max-width: 860px;
    margin: 0 auto;
}

.technical-content h1 {
    margin-bottom: 24px;
}

.technical-content h2 {
    margin: 1.5em 0 .6em;
    color: var(--c-accent);
    font-family: var(--font-head);
}

.technical-content h3 {
    margin: 1.3em 0 .5em;
    color: #fff;
    font-family: var(--font-head);
}

.technical-content p {
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: .9em;
}

.technical-content ul, .technical-content ol {
    color: var(--c-text-muted);
    padding-left: 1.5rem;
    margin-bottom: .9em;
}

.technical-content li {
    margin-bottom: .4em;
}

.technical-content a {
    color: var(--c-accent);
}

.x7f2a {
    display: none;
}

.wp-content-placeholder {
    display: none;
}

.elementor-placeholder {
    display: none;
}

@media (max-width: 1023px) {
    .section-block {
        margin: 0 8px 24px;
        padding: 24px 16px;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-logo-text {
        font-size: 1.05rem;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-stats {
        gap: 14px;
    }

    .advantages-grid {
        gap: 12px;
    }

    .advantage-card {
        max-width: 100%;
    }

    .video-grid {
        flex-direction: column;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }

    .widget-title {
        font-size: .9rem;
    }

    .footer-inner {
        gap: 20px;
    }

    .footer-col {
        flex: 1 1 140px;
    }

    .author-block {
        flex-direction: column;
    }

    .section-block {
        margin: 0 0 18px;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 479px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .btn--lg {
        padding: 12px 22px;
        font-size: 1rem;
    }

    .hero-btns {
        gap: 8px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.wp-includes-placeholder {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.yoast-schema-placeholder {
    display: none;
}

.e4b9c1 {
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    left: -9999px;
}

.x9a2b3 {
    display: none;
}

.q7r4s5 {
    display: none;
}

.m2n8p1 {
    display: none;
}

.gdbsv {
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.gdbsv p,
.gdbsv li,
.gdbsv span,
.gdbsv div,
.gdbsv a {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.gdbsv a {
    display: inline-block;
    max-width: 100%;
    color: var(--clr-accent-blue);
    text-decoration: none;
    line-height: 1.6;
}

.gdbsv a:hover {
    color: var(--clr-accent-yellow);
}

.gdbsv img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.gdbsv p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--clr-text);
}

.gdbsv h1,
.gdbsv h2,
.gdbsv h3 {
    line-height: 1.3;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {

    .gdbsv {
        padding-left: 14px;
        padding-right: 14px;
    }

    .gdbsv p,
    .gdbsv li {
        font-size: 15px;
        line-height: 1.75;
    }

    .gdbsv a {
        font-size: 14px;
        max-width: 100%;
    }

    .gdbsv h1 {
        font-size: 28px;
    }

    .gdbsv h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .gdbsv {
        padding-left: 12px;
        padding-right: 12px;
    }

    .gdbsv p,
    .gdbsv li {
        font-size: 14px;
        line-height: 1.7;
    }

    .gdbsv a {
        font-size: 13px;
    }

    .gdbsv h1 {
        font-size: 24px;
    }

    .gdbsv h2 {
        font-size: 20px;
    }
}