@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --color-bg: #0e112b;
    --color-header: #343a6c;
    --color-primary: #1abd8c;
    --color-secondary: #848cc9;
    --color-text: #e8eaf6;
    --color-text-muted: #a8adc8;
    --color-border: rgba(132, 140, 201, 0.25);
    --color-card: rgba(52, 58, 108, 0.55);
    --color-card-hover: rgba(52, 58, 108, 0.85);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    --shadow-card: 0 2px 18px rgba(0, 0, 0, 0.32);
}

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

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

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

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

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

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

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

.container--full {
    max-width: 100%;
    padding: 0;
}

.box {
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.6em;
}

h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

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

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

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1em;
    color: var(--color-text-muted);
}

ul, ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
    color: var(--color-text-muted);
}

li {
    margin-bottom: 0.35em;
}

strong, b {
    color: var(--color-text);
    font-weight: 600;
}

em, i {
    color: var(--color-secondary);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.93rem;
    background: var(--color-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

thead th {
    background: var(--color-header);
    color: #fff;
    font-weight: 700;
    padding: 13px 16px;
    text-align: left;
    border-bottom: 2px solid var(--color-border);
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(26, 189, 140, 0.07);
}

tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    color: var(--color-text-muted);
}

tbody td:first-child {
    color: var(--color-text);
    font-weight: 600;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.93rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26, 189, 140, 0.35);
}

.btn--primary:hover {
    background: #1fd09f;
    box-shadow: 0 6px 24px rgba(26, 189, 140, 0.5);
    color: #fff;
}

.btn--secondary {
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(132, 140, 201, 0.3);
}

.btn--secondary:hover {
    background: #9aa3d4;
    color: #fff;
}

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

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

.btn--lg {
    padding: 15px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

.section {
    padding: 64px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    color: #fff;
    position: relative;
    padding-bottom: 14px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 14px auto 0;
}

.card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    background: var(--color-card-hover);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge--green {
    background: rgba(26, 189, 140, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(26, 189, 140, 0.3);
}

.badge--blue {
    background: rgba(132, 140, 201, 0.15);
    color: var(--color-secondary);
    border: 1px solid rgba(132, 140, 201, 0.3);
}

.divider {
    height: 1px;
    background: var(--color-border);
    margin: 40px 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.fw-bold {
    font-weight: 700;
}

.mt1 {
    margin-top: 1rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.col {
    flex: 1 1 0;
}

.site-header {
    background: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

.header-logo img {
    height: 46px;
    width: auto;
    border-radius: var(--radius-sm);
}

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

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    color: rgba(232, 234, 246, 0.85);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(132, 140, 201, 0.2);
    color: #fff;
}

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

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    background: rgba(26, 189, 140, 0.08);
    border: 1px solid rgba(26, 189, 140, 0.2);
    border-radius: 20px;
    padding: 5px 12px;
    white-space: nowrap;
}

.online-count .dot {
    width: 7px;
    height: 7px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

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

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

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

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

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

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

.mobile-actions {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--color-header);
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 480px;
    align-items: center;
}

.hero-slide.active {
    display: flex;
    animation: fadeInSlide 0.6s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 17, 43, 0.92) 0%, rgba(52, 58, 108, 0.6) 60%, rgba(14, 17, 43, 0.2) 100%);
    z-index: 1;
}

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

.hero-content .badge {
    margin-bottom: 14px;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 1.08rem;
    margin-bottom: 28px;
    color: rgba(232, 234, 246, 0.88);
    line-height: 1.6;
}

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

.hero-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

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

.hero-arrow {
    pointer-events: all;
    background: rgba(52, 58, 108, 0.7);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.hero-arrow:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.section--payments {
    background: rgba(14, 17, 43, 0.6);
}

.section--mirrors {
    background: var(--color-bg);
}

.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.mirrors-timestamp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-primary);
    background: rgba(26, 189, 140, 0.08);
    border: 1px solid rgba(26, 189, 140, 0.2);
    border-radius: 20px;
    padding: 5px 14px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.screenshots-grid img {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    object-fit: cover;
    width: 100%;
    height: 220px;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.screenshots-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.scr-slider {
    display: none;
    position: relative;
    overflow: hidden;
}

.scr-slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.scr-slider-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.scr-slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.scr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    border: none;
    transition: background var(--transition);
}

.scr-dot.active {
    background: var(--color-primary);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: background var(--transition), transform var(--transition);
}

.winner-item:hover {
    background: var(--color-card-hover);
    transform: translateY(-2px);
}

.winner-rank {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-secondary);
    min-width: 30px;
}

.winner-rank.top3 {
    color: #ffd700;
}

.winner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-header), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid var(--color-border);
}

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-name {
    font-weight: 700;
    font-size: 0.93rem;
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.winner-game {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.winner-amount {
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-primary);
    white-space: nowrap;
}

.demo-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    background: #000;
}

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

.demo-cta-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: sticky;
    top: 80px;
}

.demo-cta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.demo-cta-card p {
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.demo-bonus {
    background: rgba(26, 189, 140, 0.1);
    border: 1px solid rgba(26, 189, 140, 0.25);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 22px;
    text-align: center;
}

.demo-bonus .bonus-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.demo-bonus .bonus-label {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.section--review {
    background: linear-gradient(180deg, rgba(52, 58, 108, 0.15) 0%, transparent 100%);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-header), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    border: 3px solid var(--color-primary);
}

.author-info .author-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.author-info .author-bio {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0 0 6px;
}

.author-info a {
    font-size: 0.83rem;
    color: var(--color-secondary);
}

.review-content {
}

.review-content h2 {
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.review-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.review-content p {
    color: var(--color-text-muted);
    line-height: 1.75;
}

.review-content ul {
    color: var(--color-text-muted);
}

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

.review-content table {
    font-size: 0.92rem;
}

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

.review-content a:hover {
    color: var(--color-primary);
}

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

.review-content blockquote {
    border-left: 3px solid var(--color-primary);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(26, 189, 140, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text);
    font-style: italic;
}

.placeholder-block {
    background: rgba(132, 140, 201, 0.08);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.security-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    transition: background var(--transition), transform var(--transition);
}

.security-item:hover {
    background: var(--color-card-hover);
    transform: translateY(-3px);
}

.security-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(26, 189, 140, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(26, 189, 140, 0.2);
}

.security-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-primary);
}

.security-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.security-item p {
    font-size: 0.87rem;
    margin: 0;
    line-height: 1.6;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

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

.faq-item.open {
    border-color: rgba(26, 189, 140, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    list-style: none;
    user-select: none;
    transition: background var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(132, 140, 201, 0.1);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--color-primary);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

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

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.site-footer {
    background: var(--color-header);
    padding: 56px 0 0;
    margin-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.footer-logo img {
    height: 42px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.footer-logo p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.84rem;
    color: var(--color-text-muted);
}

.footer-nav-col h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

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

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

.footer-nav-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-nav-col ul li a:hover {
    color: var(--color-primary);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(132, 140, 201, 0.15);
    border: 1px solid var(--color-border);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.footer-mid {
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
}

.footer-logos-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 20px;
}

.footer-logos-row span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.footer-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    background: rgba(52, 58, 108, 0.8);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.footer-logo-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-logo-badge.trusted {
    border-color: rgba(26, 189, 140, 0.3);
}

.footer-logo-badge.trusted svg {
    color: var(--color-primary);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    font-weight: 800;
    font-size: 0.78rem;
    color: var(--color-secondary);
    margin: 8px;
}

.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1e2250, var(--color-header));
    border-top: 2px solid var(--color-primary);
    padding: 14px 0;
    box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.45);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-widget.visible {
    transform: translateY(0);
}

.promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.promo-text {
}

.promo-text strong {
    color: var(--color-primary);
    font-size: 1rem;
}

.promo-text span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    display: block;
}

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

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(14, 17, 43, 0.7);
    border: 1.5px solid var(--color-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.promo-code-box input {
    background: transparent;
    border: none;
    padding: 9px 16px;
    font-family: 'Montserrat', monospace;
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-secondary);
    letter-spacing: 0.1em;
    width: 140px;
    outline: none;
    cursor: text;
}

.promo-copy-btn {
    background: var(--color-secondary);
    border: none;
    padding: 9px 13px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    transition: background var(--transition);
}

.promo-copy-btn:hover {
    background: var(--color-primary);
}

.promo-copy-btn svg {
    width: 18px;
    height: 18px;
}

.promo-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}

.promo-close:hover {
    color: #fff;
}

.promo-close svg {
    width: 20px;
    height: 20px;
}

.promo-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 9999;
}

.promo-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.section--demo {
    background: rgba(14, 17, 43, 0.5);
}

.payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: rgba(52, 58, 108, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-muted);
    white-space: nowrap;
    height: 32px;
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.mirror-status.online {
    background: rgba(26, 189, 140, 0.12);
    color: var(--color-primary);
}

.mirror-status .dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 1.8s infinite;
}

.info-page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 0 80px;
}

.info-page-content h1 {
    margin-bottom: 28px;
}

.info-page-content h2 {
    margin: 32px 0 14px;
    font-size: 1.3rem;
    color: var(--color-secondary);
}

.info-page-content h3 {
    margin: 24px 0 10px;
    font-size: 1.1rem;
}

.info-page-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.info-page-content ul {
    color: var(--color-text-muted);
}

.info-page-content a {
    color: var(--color-secondary);
}

.info-page-content a:hover {
    color: var(--color-primary);
}

.info-page-content strong {
    color: var(--color-text);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-secondary);
}

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

.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.wp-block-column {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-section {
    display: block;
}

.site-main {
    display: block;
}

#xf2a9, #k8b3m, .bc7d2, .ae4f1 {
    display: none !important;
}

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

    .footer-top > :first-child {
        grid-column: 1 / -1;
    }

    .demo-wrap {
        grid-template-columns: 1fr;
    }

    .demo-cta-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(14, 17, 43, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 4px;
        overflow-y: auto;
        z-index: 999;
    }

    .header-nav.open {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .header-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .burger {
        display: flex;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }


    .mobile-actions {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .online-count {
        display: none;
    }

    .screenshots-grid {
        display: none;
    }

    .scr-slider {
        display: block;
    }

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

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

@media (max-width: 600px) {
    .section {
        padding: 44px 0;
    }

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

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

    .promo-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .promo-code-wrap {
        justify-content: center;
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.skeleton {
    background: linear-gradient(90deg, rgba(52, 58, 108, 0.5) 25%, rgba(132, 140, 201, 0.1) 50%, rgba(52, 58, 108, 0.5) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    from {
        background-position: 200% 0;
    }
    to {
        background-position: -200% 0;
    }
}

.wp-post-image {
    display: block;
}

.attachment-post-thumbnail {
    border-radius: var(--radius-md);
}

.post-thumbnail {
    display: block;
}

.entry-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.post-meta {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

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

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-header);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

::selection {
    background: rgba(26, 189, 140, 0.3);
    color: #fff;
}

@media print {
    .site-header, .promo-widget, .hero-arrows, .hero-controls {
        display: none !important;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

.wrapper,
main,
.content,
.text,
.section,
.container {
    min-width: 0;
    max-width: 100%;
}

img,
video,
iframe,
canvas,
svg {
    max-width: 100%;
}

@media (max-width: 820px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10000;
    }

    body {
        padding-top: 66px;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 66px;
        padding: 8px 0;
        gap: 8px;
    }

    .header-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header-logo img {
        width: auto;
        height: 38px;
        max-width: 112px;
        object-fit: contain;
    }

    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 7px;
        margin-left: auto;
        min-width: 0;
    }

    .online-count {
        display: none;
    }


    .mobile-actions {
        display: none !important;
    }

    .burger {
        position: relative;
        z-index: 10003;
        display: flex !important;
        width: 42px;
        height: 42px;
        min-width: 42px;
        padding: 9px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 10px;
    }

    .burger span {
        width: 22px;
        height: 2px;
    }

    .header-nav {
        position: fixed !important;
        top: 66px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10001;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        height: calc(100dvh - 66px);
        padding: 16px 14px 30px;
        gap: 8px;
        overflow-y: auto;
        background: rgba(14, 17, 43, .99);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .header-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-nav a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 52px;
        padding: 14px 16px;
        color: #fff;
        background: rgba(52, 58, 108, .55);
        border: 1px solid var(--color-border);
        border-radius: 10px;
        font-size: 15px;
        white-space: normal;
    }

    .header-nav a svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .header-nav::after {
        content: "";
        display: block;
        height: 120px;
        flex: 0 0 120px;
    }

    .hero,
    .hero-slider,
    .hero-slide {
        width: 100%;
        max-width: 100%;
    }

    .hero-slide {
        min-height: 430px;
    }

    .hero-bg {
        width: 100%;
        height: 100%;
        object-position: center;
    }

    .hero-overlay {
        background: linear-gradient(
                180deg,
                rgba(14, 17, 43, .45) 0%,
                rgba(14, 17, 43, .88) 60%,
                rgba(14, 17, 43, .98) 100%
        );
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 54px 0 70px;
        text-align: center;
    }

    .hero-content h1,
    .hero-content .h1-style,
    .hero-content h2 {
        font-size: clamp(1.7rem, 8vw, 2.25rem) !important;
        line-height: 1.2;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.65;
        text-align: center;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    .hero-arrows {
        display: none;
    }

    .hero-controls {
        right: auto;
        left: 50%;
        bottom: 22px;
        transform: translateX(-50%);
    }

    .content {
        width: 100%;
        padding: 0;
    }

    .section {
        width: 100%;
        padding: 40px 0;
        overflow: hidden;
    }

    .section-title {
        margin-bottom: 26px;
        text-align: left;
    }

    .section-title h2 {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        font-size: 1.45rem;
        line-height: 1.3;
        text-align: left;
    }

    .section-title h2::after {
        left: 0;
        transform: none;
    }

    .section-title p {
        margin: 12px 0 0;
        font-size: 14px;
        text-align: left;
    }

    .divider {
        margin: 16px 0;
    }

    .table-wrap {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .table-wrap table {
        width: 100%;
        min-width: 680px;
        margin: 0;
    }

    .table-wrap th,
    .table-wrap td {
        padding: 11px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .mirrors-header {
        justify-content: flex-start;
    }

    .mirrors-timestamp {
        max-width: 100%;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .screenshots-grid {
        display: none !important;
    }

    .scr-slider {
        display: block !important;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .scr-slider-track {
        display: flex;
        width: 100%;
        gap: 0;
    }

    .scr-slider-track img {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .winners-grid {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
    }

    .winner-item {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        gap: 10px;
    }

    .winner-rank {
        min-width: 24px;
        font-size: 14px;
    }

    .winner-avatar {
        width: 34px;
        height: 34px;
    }

    .winner-info {
        min-width: 0;
    }

    .winner-name,
    .winner-game {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-amount {
        font-size: 13px;
    }

    .demo-wrap {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 18px;
    }

    .demo-iframe-wrap {
        width: 100%;
        max-width: 100%;
        padding-top: 65%;
        border-radius: 14px;
    }

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

    .demo-cta-card {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
    }

    .demo-bonus .bonus-amount {
        font-size: 1.35rem;
    }

    .review-author {
        display: flex;
        align-items: flex-start;
        width: 100%;
        padding: 16px;
        gap: 12px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

    .author-info {
        min-width: 0;
    }

    .author-info .author-bio {
        overflow-wrap: anywhere;
    }

    .review-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .review-content h1 {
        font-size: 1.7rem;
        overflow-wrap: anywhere;
    }

    .review-content h2 {
        font-size: 1.4rem;
    }

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

    .review-content p,
    .review-content li,
    .review-content a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .review-content img,
    .review-content video,
    .review-content iframe {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .review-content table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 600px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .security-grid {
        display: grid;
        grid-template-columns:1fr;
        gap: 14px;
    }

    .security-item {
        width: 100%;
        padding: 20px 16px;
    }

    .security-icon {
        width: 46px;
        height: 46px;
    }

    .faq-list {
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    .faq-question {
        padding: 15px 14px;
        gap: 10px;
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-answer,
    .faq-item.open .faq-answer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .footer-top {
        display: grid;
        grid-template-columns:1fr;
        gap: 24px;
    }

    .footer-logo,
    .footer-nav-col {
        width: 100%;
        min-width: 0;
    }

    .footer-mid {
        padding: 24px 0;
    }

    .footer-logos-row {
        gap: 8px;
    }

    .footer-logos-row > span {
        width: 100%;
        white-space: normal;
    }

    .footer-logo-badge {
        max-width: 100%;
        white-space: normal;
    }

    .promo-widget {
        padding: 10px 0;
    }

    .promo-inner {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 9px;
        padding-right: 28px;
        text-align: center;
    }

    .promo-text strong {
        display: block;
        font-size: 13px;
    }

    .promo-text span {
        display: none;
    }

    .promo-code-wrap {
        display: grid;
        grid-template-columns:minmax(0, 1fr) auto;
        width: 100%;
        gap: 8px;
    }

    .promo-code-box {
        width: 100%;
        min-width: 0;
    }

    .promo-code-box input {
        width: 100%;
        min-width: 0;
        padding: 9px 10px;
        font-size: 14px;
    }

    .promo-code-wrap .btn {
        padding: 9px 12px;
        font-size: 12px;
    }

    .promo-close {
        position: absolute;
        top: 0;
        right: 0;
    }

    .wp-block-columns {
        grid-template-columns:1fr;
        gap: 16px;
    }

    .row {
        flex-direction: column;
        align-items: stretch;
    }

    .col {
        width: 100%;
        flex: 1 1 100%;
    }

    .card,
    .placeholder-block {
        width: 100%;
        padding: 20px 16px;
    }

    .btn {
        max-width: 100%;
    }

    pre,
    code {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    pre {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {

    body {
        padding-top: 60px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-inner {
        min-height: 60px;
        padding: 7px 0;
    }

    .header-logo img {
        height: 34px;
        max-width: 96px;
    }

    .burger {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .header-nav {
        top: 60px;
        height: calc(100dvh - 60px);
        padding: 12px 10px 28px;
    }

    .hero-slide {
        min-height: 400px;
    }

    .hero-content {
        padding: 42px 0 64px;
    }

    .hero-content h1,
    .hero-content .h1-style,
    .hero-content h2 {
        font-size: 1.65rem !important;
    }

    .hero-content p {
        font-size: 13px;
    }

    .section {
        padding: 32px 0;
    }

    .section-title h2 {
        font-size: 1.28rem;
        gap: 8px;
    }

    .section-title h2 svg {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .table-wrap table {
        min-width: 620px;
    }

    .scr-slider-track img {
        aspect-ratio: 16 / 10;
    }

    .winner-item {
        padding: 10px 9px;
    }

    .winner-avatar {
        display: none;
    }

    .winner-amount {
        font-size: 12px;
    }

    .demo-iframe-wrap {
        padding-top: 72%;
    }

    .review-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .review-content h1 {
        font-size: 1.45rem;
    }

    .review-content h2 {
        font-size: 1.25rem;
    }

    .security-item {
        padding: 18px 14px;
    }

    .faq-question {
        font-size: 13px;
    }

    .promo-code-wrap {
        grid-template-columns:1fr;
    }

    .promo-code-wrap .btn {
        width: 100%;
        justify-content: center;
    }
}

.container {
    width: calc(100% - 48px);
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 820px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.luysf {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 48px auto;
    padding: 34px;
    background: linear-gradient(180deg, rgba(52, 58, 108, .42), rgba(14, 17, 43, .82));
    border: 1px solid rgba(132, 140, 201, .28);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.luysf::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, #1abd8c, #848cc9, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.luysf > *:first-child {
    margin-top: 0;
}

.luysf > *:last-child {
    margin-bottom: 0;
}

.luysf h1,
.luysf h2,
.luysf h3,
.luysf h4,
.luysf h5,
.luysf h6 {
    color: #fff;
    line-height: 1.3;
}

.luysf p,
.luysf li {
    color: #dbe0ff;
    line-height: 1.8;
}

.luysf a {
    color: #1abd8c;
    word-break: break-word;
}

.luysf img,
.luysf video,
.luysf iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.luysf table {
    width: 100%;
    margin: 24px 0;
}

.luysf table th,
.luysf table td {
    padding: 12px 14px;
}

@media (max-width: 820px) {

    .luysf {
        margin: 28px auto;
        padding: 20px 16px;
        border-radius: 18px;
    }

    .luysf h1 {
        font-size: 1.8rem;
    }

    .luysf h2 {
        font-size: 1.45rem;
    }

    .luysf h3 {
        font-size: 1.2rem;
    }

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

    .luysf table {
        display: block;
        width: 100%;
        min-width: 640px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .luysf img,
    .luysf iframe,
    .luysf video {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .luysf {
        margin: 20px auto;
        padding: 16px 12px;
        border-radius: 16px;
    }

    .luysf h1 {
        font-size: 1.55rem;
    }

    .luysf h2 {
        font-size: 1.3rem;
    }

    .luysf h3 {
        font-size: 1.1rem;
    }

    .luysf table {
        min-width: 560px;
    }
}