
:root {
    --c-bg: #121724;
    --c-header: #191F2D;
    --c-btn-dark: #191F2D;
    --c-btn-green: #1AE5A1;
    --c-text: #e8eaf0;
    --c-text-muted: #9aa0b4;
    --c-border: #2a3148;
    --c-card: #1a2035;
    --c-card2: #1e2640;
    --c-accent: #1AE5A1;
    --c-accent2: #16c98e;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.25s ease;
}

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

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

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 0.8rem;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 0.9rem;
    color: var(--c-text);
}

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

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

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

/* ---- LAYOUT ---- */
.wrap-site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container-fluid {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.section-wrap {
    padding: 56px 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* ---- HEADER ---- */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.header-nav a {
    color: #c8cedd;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--c-accent);
    background: rgba(26, 229, 161, 0.08);
}

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

.header-online {
    font-size: 11px;
    color: var(--c-accent);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.header-online .dot {
    width: 7px;
    height: 7px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

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

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

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

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

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

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

.mobile-menu {
    display: none;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 16px;
    flex-direction: column;
    gap: 8px;
}

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

.mobile-menu a {
    color: #c8cedd;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
    background: rgba(26, 229, 161, 0.08);
    color: var(--c-accent);
}

/* ---- BUTTONS ---- */
.btn-sol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn-sol:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

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

.btn-dark {
    background: var(--c-btn-dark);
    color: #fff;
    border: 1px solid var(--c-border);
}

.btn-dark:hover {
    color: #fff;
    background: #222c40;
}

.btn-green {
    background: var(--c-btn-green);
    color: #0a1018;
    font-weight: 700;
}

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

.btn-lg {
    padding: 13px 32px;
    font-size: 15px;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
}

/* ---- HERO SLIDER ---- */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #0d1420;
}

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

.hero-slide {
    display: none;
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    display: flex;
    align-items: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 16, 28, 0.88) 40%, rgba(10, 16, 28, 0.3) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 32px;
    width: 100%;
}

.hero-slide-content h1,
.hero-slide-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    max-width: 560px;
}

.hero-slide-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #c0cade;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.hero-badge {
    display: inline-block;
    background: rgba(26, 229, 161, 0.15);
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

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

.hero-arrow {
    pointer-events: all;
    background: rgba(25, 31, 45, 0.7);
    border: 1px solid var(--c-border);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    font-size: 18px;
}

.hero-arrow:hover {
    background: var(--c-accent);
    color: #0a1018;
    transform: scale(1.1);
}

/* ---- CONTENT AREA ---- */
.content-section {
    background: var(--c-bg);
}

/* Casino info table */
.casino-info-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.casino-info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
}

.casino-info-table tr:nth-child(odd) {
    background: var(--c-card);
}

.casino-info-table tr:nth-child(even) {
    background: var(--c-card2);
}

.casino-info-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
    text-align: left;
    vertical-align: top;
}

.casino-info-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 40%;
    white-space: nowrap;
}

.casino-info-table td:last-child {
    color: var(--c-text);
}

.casino-info-table .val-accent {
    color: var(--c-accent);
    font-weight: 600;
}

/* Mirror block */
.mirror-block {
    background: var(--c-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 28px;
    box-shadow: var(--shadow);
}

.mirror-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.mirror-datetime {
    font-size: 13px;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mirror-live-badge {
    background: rgba(26, 229, 161, 0.12);
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mirror-table-wrap {
    overflow-x: auto;
}

.mirror-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 380px;
}

.mirror-table thead th {
    background: #151d30;
    color: var(--c-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--c-border);
}

.mirror-table tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background 0.2s;
}

.mirror-table tbody tr:hover {
    background: rgba(26, 229, 161, 0.04);
}

.mirror-table td {
    padding: 12px 14px;
    font-size: 14px;
    text-align: left;
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-accent);
}

.mirror-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    display: inline-block;
}

.mirror-link {
    color: var(--c-accent);
    font-weight: 600;
    font-size: 13px;
    padding: 5px 14px;
    background: rgba(26, 229, 161, 0.1);
    border-radius: 6px;
    transition: background var(--transition);
}

.mirror-link:hover {
    background: rgba(26, 229, 161, 0.2);
    color: var(--c-accent);
}

/* ---- TOURNAMENTS ---- */
.tournaments-section {
    background: var(--c-bg);
}

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

.tournament-card {
    flex: 1;
    min-width: 260px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.tournament-card-header {
    background: linear-gradient(135deg, #192038, #1e2d4a);
    padding: 20px;
    border-bottom: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
}

.tournament-card-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(26, 229, 161, 0.07);
    border-radius: 50%;
}

.tournament-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 10px;
    display: inline-block;
}

.badge-live {
    background: rgba(229, 62, 62, 0.15);
    border: 1px solid #e53e3e;
    color: #fc8181;
}

.badge-hot {
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid #ff8c00;
    color: #ffa830;
}

.badge-new {
    background: rgba(26, 229, 161, 0.15);
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
}

.tournament-prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent);
    text-shadow: 0 0 20px rgba(26, 229, 161, 0.3);
}

.tournament-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tournament-card-body p {
    font-size: 13px;
    color: var(--c-text-muted);
    margin: 0;
}

.tournament-timer-label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.tournament-timer {
    display: flex;
    gap: 6px;
}

.timer-unit {
    background: var(--c-btn-dark);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 44px;
}

.timer-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.timer-lbl {
    display: block;
    font-size: 10px;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.tournament-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--c-border);
}

/* ---- APP SECTION ---- */
.app-section {
    background: var(--c-card);
}

.app-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-info {
    flex: 1;
    min-width: 260px;
}

.app-table-wrap {
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 300px;
}

.app-table tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

.app-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
    text-align: left;
}

.app-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 50%;
}

.app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    background: var(--c-btn-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition), transform 0.2s;
    text-decoration: none;
}

.app-btn:hover {
    background: var(--c-card2);
    border-color: var(--c-accent);
    color: #fff;
    transform: translateY(-2px);
}

.app-btn svg {
    flex-shrink: 0;
}

.app-mockup {
    flex: 0 0 auto;
    text-align: center;
}

.app-mockup img {
    max-width: 220px;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ---- WHEEL OF FORTUNE ---- */
.wheel-section {
    background: var(--c-bg);
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.wheel-canvas-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(26, 229, 161, 0.25), 0 8px 32px rgba(0, 0, 0, 0.6);
    max-width: 340px;
    width: 100%;
    height: auto;
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--c-accent);
    filter: drop-shadow(0 2px 8px rgba(26, 229, 161, 0.6));
}

.wheel-result {
    display: none;
    background: var(--c-card);
    border: 1px solid var(--c-accent);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 0 30px rgba(26, 229, 161, 0.2);
    max-width: 360px;
    width: 100%;
}

.wheel-result.show {
    display: block;
}

.wheel-result h3 {
    color: var(--c-accent);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.wheel-result p {
    color: var(--c-text);
    margin: 0 0 14px;
    font-size: 15px;
}

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

/* ---- FAQ ---- */
.faq-section {
    background: var(--c-card);
}

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

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

.faq-item:hover {
    border-color: rgba(26, 229, 161, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    gap: 12px;
    user-select: none;
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(26, 229, 161, 0.12);
    border: 1px solid var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--c-accent);
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--c-accent);
    color: #0a1018;
}

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

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

.faq-answer p {
    color: var(--c-text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-border);
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.footer-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #8a91a8;
    font-size: 13px;
    transition: color var(--transition);
}

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

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

.payment-badge, .provider-badge {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: var(--c-text-muted);
}

.footer-legal {
    font-size: 11px;
    color: #5a6278;
    max-width: 900px;
    line-height: 1.6;
}

.footer-legal a {
    color: #5a6278;
}

/* ---- STICKY WIDGET ---- */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #10192a, #161f35);
    border-top: 2px solid var(--c-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.widget-text {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.widget-text span {
    color: var(--c-accent);
}

.widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

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

/* ---- CONTENT AREA (голые теги без классов) ---- */
.content-raw {
    line-height: 1.75;
    font-size: 15px;
    color: var(--c-text);
}

.content-raw h1, .content-raw h2, .content-raw h3,
.content-raw h4, .content-raw h5, .content-raw h6 {
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    color: #fff;
}

.content-raw p {
    margin-bottom: 1em;
}

.content-raw ul, .content-raw ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
}

.content-raw li {
    margin-bottom: 0.4em;
}

.content-raw table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2em;
    overflow-x: auto;
    display: block;
}

.content-raw table th {
    background: var(--c-card2);
    color: var(--c-accent);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--c-border);
    font-size: 13px;
}

.content-raw table td {
    padding: 9px 14px;
    border: 1px solid var(--c-border);
    font-size: 14px;
    background: var(--c-card);
}

.content-raw table tr:hover td {
    background: var(--c-card2);
}

.content-raw a {
    color: var(--c-accent);
    text-decoration: underline;
}

.content-raw a:hover {
    color: var(--c-accent2);
}

.content-raw img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    height: auto;
}

.content-raw blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 18px;
    background: var(--c-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1em 0;
    font-style: italic;
    color: var(--c-text-muted);
}

.content-raw code {
    background: var(--c-card2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

.content-raw hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 1.5em 0;
}

/* ---- UTILITIES ---- */
.mb-0 {
    margin-bottom: 0 !important;
}

.mt-4 {
    margin-top: 1.5rem;
}

.text-accent {
    color: var(--c-accent);
}

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

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

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

.justify-between {
    justify-content: space-between;
}

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

/* WP-like unused stubs for fingerprint uniqueness */
.wp-block-sol-casino {
    display: block;
}

.elementor-section-sol {
    position: relative;
}

.wp-content-sol {
    overflow: hidden;
}

#wp-sol-id-98f2k {
    display: none;
}

.entry-content-sol {
    display: block;
}

.post-sol-3kd9 {
    visibility: visible;
}

.wpcf7-sol-f2m {
    display: block;
}

.yoast-hidden-sol {
    display: none;
}

#qm8x72-hidden {
    display: none;
}

.sol-b3r-x82 {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    position: absolute;
}

/* ---- ANIMATIONS ---- */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .app-grid {
        gap: 24px;
    }

    .app-mockup {
        display: none;
    }
}

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

    .burger-btn {
        display: flex;
    }

    .header-online {
        display: none;
    }

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

    .hero-slide-content {
        padding: 40px 20px;
    }

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

    .footer-top {
        gap: 24px;
    }

    .section-wrap {
        padding: 36px 0;
    }

    .mirror-block {
        padding: 18px;
    }

    .sticky-widget {
        padding: 10px 40px 10px 16px;
    }

    .widget-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        min-height: 280px;
    }

    .btn-lg {
        padding: 11px 22px;
        font-size: 14px;
    }

    .tournament-prize {
        font-size: 1.2rem;
    }

    .footer-col {
        min-width: 100%;
    }
}

.jhgfd {
    background: linear-gradient(145deg, #1a2035, #1e2640);
    border: 1px solid #2a3148;
    border-radius: 16px;
    padding: 28px 32px;
    color: #e8eaf0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    max-width: 1100px;
    margin: 0 auto;
}

.jhgfd h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.jhgfd h2 {
    font-size: 1.4rem;
    margin-top: 24px;
    margin-bottom: 10px;
}

.jhgfd p {
    font-size: 15px;
    line-height: 1.7;
    color: #c8cedd;
}

.jhgfd a {
    color: #1AE5A1;
    font-weight: 600;
}

.jhgfd a:hover {
    color: #16c98e;
}

@media (max-width: 768px) {
    .jhgfd {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .jhgfd h1 {
        font-size: 1.4rem;
    }

    .jhgfd h2 {
        font-size: 1.2rem;
        margin-top: 18px;
    }

    .jhgfd p {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .jhgfd {
        padding: 16px 14px;
    }

    .jhgfd h1 {
        font-size: 1.25rem;
    }

    .jhgfd h2 {
        font-size: 1.05rem;
    }

    .jhgfd p {
        font-size: 13.5px;
    }
}