@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --c-primary: #081259;
    --c-primary-dark: #050d42;
    --c-primary-light: #0d1c80;
    --c-btn-secondary: #e09f46;
    --c-btn-secondary-hover: #c98a30;
    --c-btn-primary: #079bfa;
    --c-btn-primary-hover: #0582d4;
    --c-bg: #ffffff;
    --c-bg-alt: #f4f6fb;
    --c-bg-card: #f9faff;
    --c-text: #1a1f3d;
    --c-text-light: #5a607a;
    --c-text-muted: #8890ab;
    --c-border: #dde3f5;
    --c-pros: #1bbc6e;
    --c-cons: #f04545;
    --c-gold: #e09f46;
    --c-gold-light: #f5c96e;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 10px rgba(8, 18, 89, 0.07);
    --shadow-md: 0 6px 28px rgba(8, 18, 89, 0.12);
    --shadow-lg: 0 16px 60px rgba(8, 18, 89, 0.18);
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    padding: 0;
    list-style: none;
}

.x3k9f-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.x3k9f-section {
    padding: 64px 0;
}

.x3k9f-section-sm {
    padding: 40px 0;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    padding: 11px 24px;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.btn-primary {
    background: var(--c-btn-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--c-btn-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7, 155, 250, 0.35);
}

.btn-secondary {
    background: var(--c-btn-secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--c-btn-secondary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 159, 70, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}

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

.btn-ghost:hover {
    background: var(--c-btn-secondary);
    color: #fff;
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 7px 16px;
    font-size: 0.82rem;
}

/* ─── HEADER ─── */
.a7b2-header {
    background: var(--c-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(8, 18, 89, 0.25);
}

.a7b2-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    max-width: 1240px;
    margin: 0 auto;
    height: 72px;
}

.a7b2-logo img {
    height: 46px;
    width: auto;
}

.a7b2-logo {
    display: flex;
    align-items: center;
}

.a7b2-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.a7b2-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.a7b2-nav a:hover, .a7b2-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

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

.a7b2-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.a7b2-online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
}

.a7b2-online-dot {
    width: 7px;
    height: 7px;
    background: #1bbc6e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.a7b2-lang {
    position: relative;
}

.a7b2-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

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

.a7b2-lang-btn svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.a7b2-lang-btn.open svg {
    transform: rotate(180deg);
}

.a7b2-lang-drop {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-border);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}

.a7b2-lang-drop.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.a7b2-lang-drop a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--c-text);
    font-size: 0.87rem;
    border-bottom: 1px solid var(--c-border);
}

.a7b2-lang-drop a:last-child {
    border-bottom: none;
}

.a7b2-lang-drop a:hover {
    background: var(--c-bg-alt);
    color: var(--c-primary);
}

.a7b2-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.a7b2-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.a7b2-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-primary-dark);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: 20px;
}

.a7b2-mobile-menu.open {
    display: flex;
}

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

.a7b2-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.a7b2-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

.a7b2-mobile-btns {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.a7b2-mobile-btns .btn {
    flex: 1;
    justify-content: center;
}

.a7b2-mobile-lang {
    margin-top: 16px;
}

/* ─── HERO SLIDER ─── */
.m9x4-hero {
    position: relative;
    overflow: hidden;
}

.m9x4-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.m9x4-slide.active {
    opacity: 1;
    position: relative;
}

.m9x4-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.m9x4-slide-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 18, 89, 0.88) 0%, rgba(8, 18, 89, 0.55) 55%, rgba(8, 18, 89, 0.2) 100%);
}

.m9x4-slide-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.m9x4-slide-inner {
    max-width: 600px;
}

.m9x4-badge {
    display: inline-block;
    background: var(--c-gold);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.m9x4-slide h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.m9x4-slide p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.65;
}

.m9x4-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.m9x4-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.m9x4-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.m9x4-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

.m9x4-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10;
    pointer-events: none;
}

.m9x4-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    pointer-events: all;
    backdrop-filter: blur(6px);
}

.m9x4-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: #fff;
}

.m9x4-arrow svg {
    width: 20px;
    height: 20px;
}

/* ─── PROS & CONS ─── */
.p5c8-block {
    background: var(--c-bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 0 16px;
}

.p5c8-header {
    background: var(--c-primary);
    color: #fff;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p5c8-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.p5c8-header-icon {
    width: 32px;
    height: 32px;
}

.p5c8-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.p5c8-col {
    padding: 28px 32px;
}

.p5c8-col:first-child {
    border-right: 1px solid var(--c-border);
}

.p5c8-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid;
}

.p5c8-pros .p5c8-col-title {
    color: var(--c-pros);
    border-color: var(--c-pros);
}

.p5c8-cons .p5c8-col-title {
    color: var(--c-cons);
    border-color: var(--c-cons);
}

.p5c8-col-title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.p5c8-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 12px;
    color: var(--c-text);
}

.p5c8-list li:last-child {
    margin-bottom: 0;
}

.p5c8-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.p5c8-pros .p5c8-list li::before {
    background-color: var(--c-pros);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='white' d='M1 5l3 3 7-7'/%3E%3C/svg%3E");
    background-size: 9px;
}

.p5c8-cons .p5c8-list li::before {
    background-color: var(--c-cons);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath fill='white' d='M1 1l8 8M9 1L1 9' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

/* ─── RATING WINNERS ─── */
.r7w2-block {
    background: var(--c-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 16px;
}

.r7w2-header {
    padding: 28px 32px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.r7w2-header h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

.r7w2-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(27, 188, 110, 0.2);
    border: 1px solid var(--c-pros);
    color: var(--c-pros);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
}

.r7w2-live-badge span {
    width: 7px;
    height: 7px;
    background: var(--c-pros);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.r7w2-table {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

.r7w2-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 400px;
}

.r7w2-table thead th {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 20px;
    text-align: left;
}

.r7w2-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--transition);
}

.r7w2-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.r7w2-table tbody td {
    padding: 11px 20px;
    color: rgba(255, 255, 255, 0.88);
}

.r7w2-rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.r7w2-rank-1 {
    background: #f5c96e;
    color: var(--c-primary);
}

.r7w2-rank-2 {
    background: #c0c8d8;
    color: var(--c-primary);
}

.r7w2-rank-3 {
    background: #c87941;
    color: #fff;
}

.r7w2-rank-other {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.r7w2-amount {
    color: var(--c-gold-light);
    font-weight: 700;
}

.r7w2-game {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

/* ─── TOURNAMENTS ─── */
.t4n1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 16px;
}

.t4n1-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.t4n1-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.t4n1-card-top {
    background: var(--c-primary);
    padding: 24px 24px 20px;
    position: relative;
    overflow: hidden;
}

.t4n1-card-top::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.t4n1-card-badge {
    display: inline-block;
    background: var(--c-btn-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.t4n1-card-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.t4n1-card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.87rem;
    line-height: 1.55;
}

.t4n1-card-body {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.t4n1-prize {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-bg-alt);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 16px;
}

.t4n1-prize-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.t4n1-prize-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-primary);
}

.t4n1-timer-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.t4n1-timer {
    display: flex;
    gap: 8px;
}

.t4n1-timer-unit {
    flex: 1;
    background: var(--c-primary);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
    text-align: center;
}

.t4n1-timer-num {
    display: block;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.t4n1-timer-text {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.t4n1-card-cta {
    margin-top: auto;
    padding-top: 16px;
}

.t4n1-card-cta .btn {
    width: 100%;
}

.t4n1-slider-wrap {
    display: none;
}

/* ─── VIDEO ─── */
.v6f3-block {
    background: var(--c-bg-alt);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    margin: 0 16px;
}

.v6f3-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 8px;
    text-align: center;
}

.v6f3-block p {
    color: var(--c-text-light);
    text-align: center;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.v6f3-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.v6f3-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ─── FORTUNE WHEEL ─── */
.w8k5-block {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin: 0 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.w8k5-block h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.w8k5-block > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.w8k5-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.w8k5-canvas-wrap {
    position: relative;
}

.w8k5-canvas-wrap canvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15), 0 0 0 12px rgba(255, 255, 255, 0.07);
}

.w8k5-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--c-gold);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.w8k5-controls {
    max-width: 320px;
    width: 100%;
    text-align: center;
}

.w8k5-controls h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.w8k5-controls p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.w8k5-result {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
    display: none;
}

.w8k5-result.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.w8k5-result.win {
    background: rgba(27, 188, 110, 0.2);
    border: 1px solid var(--c-pros);
}

.w8k5-result.lose {
    background: rgba(240, 69, 69, 0.15);
    border: 1px solid var(--c-cons);
}

.w8k5-result h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.w8k5-result p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ─── CONTENT (Review) ─── */
.c2r9-block {
    margin: 0 16px;
}

.c2r9-header {
    margin-bottom: 32px;
}

.c2r9-header h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-primary);
    margin-bottom: 10px;
}

.c2r9-rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.c2r9-stars {
    display: flex;
    gap: 4px;
}

.c2r9-star {
    width: 22px;
    height: 22px;
    color: var(--c-gold);
}

.c2r9-score {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
}

.c2r9-score-label {
    font-size: 0.85rem;
    color: var(--c-text-light);
}

.c2r9-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--c-bg-alt);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--c-btn-primary);
    margin-bottom: 28px;
}

.c2r9-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.c2r9-author-name {
    font-weight: 700;
    color: var(--c-primary);
    font-size: 0.95rem;
}

.c2r9-author-bio {
    font-size: 0.82rem;
    color: var(--c-text-light);
    margin-top: 3px;
}

.c2r9-author-link {
    font-size: 0.82rem;
    color: var(--c-btn-primary);
}

.c2r9-author-link:hover {
    text-decoration: underline;
}

.c2r9-content {
    line-height: 1.75;
    color: var(--c-text);
}

.c2r9-content h1, .c2r9-content h2, .c2r9-content h3, .c2r9-content h4, .c2r9-content h5, .c2r9-content h6 {
    color: var(--c-primary);
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.c2r9-content h1 {
    font-size: 1.6rem;
}

.c2r9-content h2 {
    font-size: 1.35rem;
}

.c2r9-content h3 {
    font-size: 1.15rem;
}

.c2r9-content h4 {
    font-size: 1rem;
}

.c2r9-content p {
    margin-bottom: 16px;
}

.c2r9-content a {
    color: var(--c-btn-primary);
    text-decoration: underline;
}

.c2r9-content a:hover {
    color: var(--c-btn-primary-hover);
}

.c2r9-content ul, .c2r9-content ol {
    margin-bottom: 16px;
    padding-left: 0;
}

.c2r9-content ul li, .c2r9-content ol li {
    padding-left: 22px;
    margin-bottom: 8px;
    position: relative;
}

.c2r9-content ul li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--c-btn-primary);
    font-weight: 700;
}

.c2r9-content ol {
    counter-reset: ol-counter;
}

.c2r9-content ol li {
    counter-increment: ol-counter;
}

.c2r9-content ol li::before {
    content: counter(ol-counter) '.';
    position: absolute;
    left: 0;
    color: var(--c-btn-primary);
    font-weight: 700;
}

.c2r9-content strong, .c2r9-content b {
    font-weight: 700;
    color: var(--c-primary);
}

.c2r9-content em, .c2r9-content i {
    font-style: italic;
}

.c2r9-content blockquote {
    border-left: 4px solid var(--c-btn-primary);
    background: var(--c-bg-alt);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--c-text-light);
    font-style: italic;
}

.c2r9-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.c2r9-content table th {
    background: var(--c-primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.c2r9-content table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.9rem;
}

.c2r9-content table tr:nth-child(even) td {
    background: var(--c-bg-alt);
}

.c2r9-content img {
    border-radius: var(--radius-md);
    margin: 16px 0;
    max-width: 100%;
}

.c2r9-content hr {
    border: none;
    border-top: 2px solid var(--c-border);
    margin: 28px 0;
}

/* ─── COMMENTS ─── */
.cm6v1-block {
    margin: 0 16px;
}

.cm6v1-block h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 24px;
}

.cm6v1-comments {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.cm6v1-comment {
    background: var(--c-bg-alt);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    border: 1px solid var(--c-border);
}

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

.cm6v1-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cm6v1-user {
    font-weight: 700;
    color: var(--c-primary);
    font-size: 0.9rem;
}

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

.cm6v1-stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.cm6v1-star {
    width: 14px;
    height: 14px;
    color: var(--c-gold);
}

.cm6v1-text {
    font-size: 0.9rem;
    color: var(--c-text);
    line-height: 1.6;
}

.cm6v1-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 18px;
}

.cm6v1-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 600px;
}

.cm6v1-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 4px;
    display: block;
}

.cm6v1-form input,
.cm6v1-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.92rem;
    color: var(--c-text);
    background: #fff;
    transition: border-color var(--transition);
    outline: none;
}

.cm6v1-form input:focus,
.cm6v1-form textarea:focus {
    border-color: var(--c-btn-primary);
}

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

.cm6v1-star-row {
    display: flex;
    gap: 6px;
    margin-bottom: 4px;
}

.cm6v1-star-input {
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: #ccc;
    transition: color var(--transition);
}

.cm6v1-star-input.active {
    color: var(--c-gold);
}

.cm6v1-form-success {
    display: none;
    background: rgba(27, 188, 110, 0.12);
    border: 1.5px solid var(--c-pros);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--c-pros);
    font-weight: 600;
    align-items: center;
    gap: 10px;
}

.cm6v1-form-success.show {
    display: flex;
    animation: fadeInUp 0.4s ease;
}

/* ─── SECTION HEADINGS ─── */
.x3k9f-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.x3k9f-section-head h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--c-primary);
    margin-bottom: 10px;
}

.x3k9f-section-head p {
    font-size: 1rem;
    color: var(--c-text-light);
    max-width: 560px;
    margin: 0 auto;
}

.x3k9f-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px auto 0;
    max-width: 100px;
}

.x3k9f-divider span {
    flex: 1;
    height: 2px;
    background: var(--c-btn-primary);
    border-radius: 2px;
}

.x3k9f-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-btn-primary);
    flex-shrink: 0;
}

/* ─── FOOTER ─── */
.f1o8-footer {
    background: var(--c-primary);
    padding: 56px 0 0;
}

.f1o8-footer-top {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.f1o8-footer-grid {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.f1o8-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.f1o8-brand img {
    height: 44px;
    width: auto;
}

.f1o8-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.65;
}

.f1o8-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.f1o8-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.f1o8-social:hover {
    background: var(--c-btn-primary);
    color: #fff;
    transform: translateY(-3px);
}

.f1o8-social svg {
    width: 18px;
    height: 18px;
}

.f1o8-footer-col h4 {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.f1o8-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.f1o8-footer-col ul a:hover {
    color: var(--c-gold-light);
}

.f1o8-footer-col ul li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.f1o8-flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.f1o8-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

.f1o8-footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 20px 36px;
}

.f1o8-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.f1o8-badge-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.f1o8-badge-group-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.f1o8-badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.f1o8-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.f1o8-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.f1o8-18-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--c-cons);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.f1o8-payments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
}

.f1o8-pay-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.f1o8-providers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
}

.f1o8-provider-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 500;
}

.f1o8-legal {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    line-height: 1.65;
}

.f1o8-legal a {
    color: rgba(255, 255, 255, 0.55);
}

.f1o8-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.f1o8-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    margin-top: 16px;
}

/* ─── PROMO WIDGET ─── */
.pw3x7-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--c-primary);
    border-top: 3px solid var(--c-gold);
    box-shadow: 0 -8px 32px rgba(8, 18, 89, 0.3);
    transform: translateY(0);
    transition: transform var(--transition);
}

.pw3x7-widget.hidden {
    transform: translateY(100%);
}

.pw3x7-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pw3x7-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pw3x7-code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pw3x7-code {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px dashed var(--c-gold);
    color: var(--c-gold-light);
    font-weight: 800;
    font-size: 1rem;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.12em;
}

.pw3x7-copy {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 9px 14px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.pw3x7-copy:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pw3x7-copy svg {
    width: 16px;
    height: 16px;
}

.pw3x7-cta-wrap {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pw3x7-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.pw3x7-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.pw3x7-close svg {
    width: 18px;
    height: 18px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.anim-fade-up {
    animation: fadeInUp 0.6s ease both;
}

.x3k9f-section > * {
    animation: fadeInUp 0.6s ease both;
}

/* ─── WP COMPAT ELEMENTS (structural) ─── */
.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wp-block-column {
    flex: 1;
    min-width: 240px;
}

.entry-content {
    display: block;
}

.site-main {
    display: block;
}

.elementor-section {
    display: block;
}

.elementor-widget {
    display: block;
}

/* ─── INFO PAGE CONTENT ─── */
.info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.info-content h1 {
    color: var(--c-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.info-content h2 {
    color: var(--c-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 28px 0 12px;
}

.info-content p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: var(--c-text);
}

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

.info-content li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.info-content a {
    color: var(--c-btn-primary);
}

.info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.info-content table th {
    background: var(--c-primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.info-content table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.9rem;
}

.info-content table tr:nth-child(even) td {
    background: var(--c-bg-alt);
}

.info-content h3 {
    color: var(--c-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 22px 0 10px;
}

.info-content strong {
    font-weight: 700;
    color: var(--c-primary);
}

.contact-form-wrap {
    max-width: 600px;
}

.cm6v1-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.92rem;
    color: var(--c-text);
    background: #fff;
    transition: border-color var(--transition);
    outline: none;
    appearance: none;
    cursor: pointer;
}

.cm6v1-form select:focus {
    border-color: var(--c-btn-primary);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--c-text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--c-btn-primary);
}

/* ─── BREADCRUMB ─── */
.x3k9f-breadcrumb {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.x3k9f-breadcrumb a, .x3k9f-breadcrumb span {
    font-size: 0.82rem;
    color: var(--c-text-light);
}

.x3k9f-breadcrumb a:hover {
    color: var(--c-btn-primary);
}

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

.x3k9f-breadcrumb .current {
    color: var(--c-primary);
    font-weight: 600;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .f1o8-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .t4n1-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .a7b2-header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

    .a7b2-nav {
        display: none;
    }

    .a7b2-lang {
        display: none;
    }

    .a7b2-online {
        display: none;
    }

    .a7b2-burger {
        display: flex;
    }

    .m9x4-slide-content {
        padding: 60px 20px;
    }

    .p5c8-grid {
        grid-template-columns: 1fr;
    }

    .p5c8-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--c-border);
    }

    .t4n1-grid {
        display: none;
    }

    .t4n1-slider-wrap {
        display: block;
        overflow: hidden;
        margin: 0 16px;
        position: relative;
    }

    .t4n1-slider-track {
        display: flex;
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .t4n1-slider-track .t4n1-card {
        flex: 0 0 calc(100% - 0px);
        width: calc(100% - 0px);
    }

    .t4n1-slider-nav {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .t4n1-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--c-border);
        border: none;
        cursor: pointer;
        transition: all var(--transition);
    }

    .t4n1-slider-dot.active {
        background: var(--c-primary);
        width: 22px;
        border-radius: 4px;
    }

    .f1o8-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pw3x7-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .pw3x7-cta-wrap {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .v6f3-block {
        padding: 24px 16px;
    }

    .w8k5-inner {
        flex-direction: column;
    }

    .w8k5-canvas-wrap canvas {
        width: 240px !important;
        height: 240px !important;
    }

    .x3k9f-section {
        padding: 40px 0;
    }

    .r7w2-table {
        padding: 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .f1o8-footer-grid {
        grid-template-columns: 1fr;
    }

    .m9x4-btns {
        flex-direction: column;
    }

    .m9x4-btns .btn {
        width: 100%;
    }

    .p5c8-col {
        padding: 20px 18px;
    }

    .w8k5-block {
        padding: 28px 16px;
    }

    .c2r9-block, .cm6v1-block, .p5c8-block, .r7w2-block, .t4n1-grid, .v6f3-block, .w8k5-block {
        margin: 0 8px;
    }
}

.gfdaaw {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 10px 35px rgba(8, 18, 89, .08);
    overflow: hidden;
    position: relative;
}

.gfdaaw *,
.gfdaaw *::before,
.gfdaaw *::after {
    box-sizing: border-box;
    max-width: 100%;
}

.gfdaaw h1,
.gfdaaw h2,
.gfdaaw h3,
.gfdaaw h4,
.gfdaaw h5,
.gfdaaw h6 {
    overflow-wrap: anywhere;
}

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

.gfdaaw img,
.gfdaaw svg,
.gfdaaw video,
.gfdaaw canvas {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.gfdaaw iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 16px;
}

.gfdaaw table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-collapse: collapse;
}

.gfdaaw table tbody,
.gfdaaw table thead {
    width: 100%;
}

.gfdaaw th,
.gfdaaw td {
    white-space: normal;
    min-width: 150px;
}

.gfdaaw pre,
.gfdaaw code {
    white-space: pre-wrap;
    word-break: break-word;
}

.gfdaaw blockquote {
    overflow: hidden;
}

.gfdaaw a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {

    .gfdaaw {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .gfdaaw h1 {
        font-size: 30px;
    }

    .gfdaaw h2 {
        font-size: 25px;
    }

    .gfdaaw h3 {
        font-size: 21px;
    }

    .gfdaaw p,
    .gfdaaw li {
        font-size: 15px;
        line-height: 1.7;
    }

    .gfdaaw table {
        min-width: 520px;
    }

    .gfdaaw img {
        border-radius: 12px;
    }

}

@media (max-width: 480px) {

    .gfdaaw {
        padding: 16px 12px;
        border-radius: 16px;
    }

    .gfdaaw h1 {
        font-size: 26px;
    }

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

    .gfdaaw h3 {
        font-size: 19px;
    }

    .gfdaaw p,
    .gfdaaw li {
        font-size: 14px;
    }

    .gfdaaw iframe {
        min-height: 220px;
    }

}