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

body {
    font-family: Helvetica, Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

body.fixed {
    overflow: hidden;
}

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

.p8n3vls {
    background: #000000;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-wrapper img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-menu a:hover {
    color: #2ecc71;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: bold;
}

.btn-login {
    background: #999999;
    color: #fff;
}

.btn-login:hover {
    background: #7a7a7a;
    transform: translateY(-2px);
}

.btn-signup {
    background: #2ecc71;
    color: #fff;
}

.btn-signup:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.online-counter {
    color: #2ecc71;
    font-size: 13px;
    margin-left: 15px;
}

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

.burger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

.hero-section {
    background: url("/b-cas-dom.png");
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s;
}

.hero-btn {
    background: #2ecc71;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.hero-btn:hover {
    background: #27ae60;
    transform: scale(1.05);
}

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

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }
}

.section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #000;
}

.jackpot-block {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.jackpot-amount {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tournament-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.tournament-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.tournament-desc {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tournament-timer {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #e74c3c;
}

.tournament-prize {
    font-size: 24px;
    color: #2ecc71;
    font-weight: bold;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.game-logo {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    margin-bottom: 15px;
}

.game-name {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
}

.game-btn {
    background: #2ecc71;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.game-btn:hover {
    background: #27ae60;
}

.slot-game {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.reel {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    transition: all 0.3s;
}

.spin-btn {
    background: #2ecc71;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.spin-btn:hover {
    background: #27ae60;
    transform: scale(1.05);
}

.win-message {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 10px;
    color: #fff;
}

.win-message.show {
    display: block;
    animation: fadeInUp 0.5s;
}

.reviews-section {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.review-stars {
    color: #f39c12;
    font-size: 18px;
}

.review-text {
    color: #666;
    line-height: 1.6;
}

.review-form {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #2ecc71;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.footer {
    background: #000000;
    color: #fff;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #2ecc71;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
}

.footer-menu a {
    color: #999999;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #2ecc71;
}

.payment-logos,
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-logo,
.provider-logo {
    width: 60px;
    height: 40px;
    background: #333;
    border-radius: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999999;
    font-size: 13px;
}

.widget-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    padding: 15px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.widget-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.widget-text {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.widget-btn {
    background: #fff;
    color: #2ecc71;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.content-block {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    color: #000;
    margin-bottom: 20px;
    font-size: 28px;
}

.content-block h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 22px;
}

.content-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul,
.content-block ol {
    margin-left: 30px;
    margin-bottom: 15px;
    color: #666;
}

.content-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    max-width: 800px;
}

.content-block table th,
.content-block table td {
    border: 2px solid #ddd;
    padding: 12px;
    text-align: left;
}

.content-block table th {
    background: #f8f8f8;
    font-weight: bold;
}

.content-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.author-info {
    background: #f8f8f8;
    border-left: 4px solid #2ecc71;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.author-name {
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.author-bio {
    color: #666;
    line-height: 1.6;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s;
}

.slider-nav {
    display: none;
}

.wp-block-group {
    margin: 20px 0;
}

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

.yoast-schema {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .burger {
        display: flex;
    }

    .header-content {
        position: relative;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .widget-content {
        flex-direction: column;
        gap: 10px;
    }

    .slider-nav {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        border-radius: 5px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .tournaments-grid.mobile-slider .tournament-card,
    .games-grid.mobile-slider .game-card {
        min-width: 100%;
    }
}

.fade-in {
    animation: fadeIn 1s;
}

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

.wp-site-blocks {
    padding: 0;
}

.has-global-padding {
    padding: 0 20px;
}

.pldndg {
    max-width: 980px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    color: #1f2937;
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.75;
}

.pldndg h1,
.pldndg h2,
.pldndg h3 {
    color: #0f172a;
    line-height: 1.2;
    font-weight: 800;
}

.pldndg h1 {
    margin: 0 0 24px;
    font-size: 42px;
    letter-spacing: -0.02em;
}

.pldndg h2 {
    margin: 40px 0 18px;
    font-size: 28px;
}

.pldndg h3 {
    margin: 28px 0 14px;
    font-size: 22px;
}

.pldndg p {
    margin: 0 0 18px;
    font-size: 17px;
    color: #334155;
}

.pldndg ul,
.pldndg ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.pldndg li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #334155;
}

.pldndg ul li::marker,
.pldndg ol li::marker {
    color: #16a34a;
    font-weight: 700;
}

.pldndg a {
    color: #0f766e;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: color 0.2s ease;
}

.pldndg a:hover {
    color: #115e59;
}

.pldndg strong {
    color: #0f172a;
    font-weight: 700;
}

.pldndg table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    display: table;
}

.pldndg th {
    padding: 16px 18px;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    border: 1px solid #1e293b;
}

.pldndg td {
    padding: 16px 18px;
    font-size: 15px;
    color: #334155;
    border: 1px solid #e5e7eb;
    vertical-align: top;
}

.pldndg tr:nth-child(even) td {
    background: #f8fafc;
}

.pldndg h1 + p {
    font-size: 18px;
    color: #1e293b;
}

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

@media (max-width: 991px) {
    .pldndg {
        margin: 24px auto;
        padding: 32px 24px;
        border-radius: 22px;
    }

    .pldndg h1 {
        font-size: 34px;
    }

    .pldndg h2 {
        margin-top: 34px;
        font-size: 25px;
    }

    .pldndg h3 {
        font-size: 20px;
    }

    .pldndg p,
    .pldndg li {
        font-size: 16px;
    }

    .pldndg th,
    .pldndg td {
        padding: 14px 16px;
        font-size: 14px;
    }

    .pldndg h1 + p {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .pldndg {
        margin: 16px auto;
        padding: 24px 18px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    }

    .pldndg h1 {
        margin-bottom: 18px;
        font-size: 28px;
        line-height: 1.2;
    }

    .pldndg h2 {
        margin: 28px 0 14px;
        font-size: 22px;
        line-height: 1.25;
    }

    .pldndg h3 {
        margin: 22px 0 12px;
        font-size: 18px;
    }

    .pldndg p {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .pldndg li {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .pldndg ul,
    .pldndg ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .pldndg h1 + p {
        font-size: 16px;
    }

    .pldndg table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 14px;
    }

    .pldndg th,
    .pldndg td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pldndg {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .pldndg h1 {
        font-size: 24px;
        line-height: 1.25;
    }

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

    .pldndg h3 {
        font-size: 17px;
    }

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

    .pldndg ul,
    .pldndg ol {
        padding-left: 18px;
    }

    .pldndg th,
    .pldndg td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .pldndg h1 + p {
        font-size: 15px;
    }
}

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

.hero-section {
    position: relative;
    min-height: 560px;
    padding: 90px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #050505 0%, #161616 100%);
}

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

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    text-align: center;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    text-wrap: balance;
}

.hero-content p {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 34px;
    border-radius: 12px;
    background: #2ecc71;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 16px 34px rgba(46, 204, 113, 0.28);
}

.hero-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.section {
    padding: 72px 0;
}

.section-title {
    margin: 0 0 34px;
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    text-wrap: balance;
}

.jackpot-block {
    padding: 42px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 24px 60px rgba(34, 197, 94, 0.22);
}

.jackpot-block p {
    margin: 0;
    font-size: 18px;
    opacity: 0.96;
}

.jackpot-amount {
    margin: 18px 0 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tournament-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.tournament-title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #111827;
}

.tournament-desc {
    margin: 0 0 16px;
    color: #475569;
    line-height: 1.65;
    flex-grow: 1;
}

.tournament-timer {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8fafc;
    color: #dc2626;
    font-weight: 700;
}

.tournament-prize {
    font-size: 28px;
    line-height: 1.2;
    color: #16a34a;
    font-weight: 800;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.game-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.game-logo {
    width: 100%;
    height: 110px;
    border-radius: 14px;
    margin-bottom: 14px;
}

.game-name {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #0f172a;
    flex-grow: 1;
}

.game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    border-radius: 10px;
    background: #2ecc71;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.game-btn:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

.slot-game {
    padding: 36px 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.slot-game p {
    color: #475569;
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 28px 0 22px;
}

.reel {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    font-size: 48px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.spin-btn {
    min-height: 52px;
    padding: 14px 34px;
    border-radius: 12px;
    font-size: 17px;
}

.win-message {
    margin-top: 18px;
    padding: 20px 18px;
    border-radius: 14px;
}

.reviews-section {
    padding: 34px 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 34px;
}

.review-card {
    height: 100%;
    padding: 22px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.review-header {
    align-items: flex-start;
}

.review-text {
    color: #475569;
    line-height: 1.7;
}

.review-form {
    padding: 24px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.form-group input,
.form-group textarea {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 13px 14px;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.14);
}

.submit-btn {
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 10px;
}

.content-block {
    padding: 38px 32px;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.content-block h2 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.2;
    color: #0f172a;
}

.content-block h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
    color: #1f2937;
}

.content-block p {
    color: #475569;
    line-height: 1.8;
}

.content-block ul,
.content-block ol {
    margin-left: 22px;
}

.content-block table {
    width: 100%;
    max-width: 100%;
    display: table;
    margin: 22px 0;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
}

.content-block table th,
.content-block table td {
    padding: 12px 14px;
    border: 1px solid #d1d5db;
}

.content-block table th {
    background: #111827;
    color: #ffffff;
}

.author-info {
    padding: 22px;
    border-radius: 14px;
    background: #f8fafc;
}

.footer {
    padding: 48px 20px 110px;
}

.footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.widget-fixed {
    padding: 14px 16px;
}

.widget-content {
    gap: 16px;
}

.widget-text {
    font-size: 18px;
    line-height: 1.4;
}

.widget-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .xr9k2mz {
        padding: 0 18px;
    }

    .hero-section {
        min-height: 500px;
        padding: 72px 18px;
    }

    .tournaments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .xr9k2mz {
        padding: 0 14px;
    }

    .hero-section {
        min-height: 420px;
        padding: 56px 14px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        min-height: 50px;
        padding: 14px 20px;
        font-size: 15px;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .jackpot-block {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .jackpot-amount {
        font-size: 36px;
    }

    .tournaments-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .tournament-card,
    .slot-game,
    .reviews-section,
    .content-block {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .tournament-title {
        font-size: 20px;
    }

    .tournament-prize {
        font-size: 24px;
    }

    .game-card {
        padding: 14px;
        border-radius: 16px;
    }

    .game-logo {
        height: 90px;
        border-radius: 12px;
    }

    .game-name {
        font-size: 15px;
    }

    .slot-machine {
        gap: 10px;
        margin: 22px 0 18px;
    }

    .reel {
        width: 82px;
        height: 82px;
        font-size: 34px;
        border-radius: 12px;
    }

    .spin-btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 15px;
    }

    .review-card {
        padding: 18px;
        border-radius: 16px;
    }

    .review-form {
        padding: 18px;
        border-radius: 16px;
    }

    .content-block h2 {
        font-size: 24px;
    }

    .content-block h3 {
        font-size: 19px;
    }

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

    .content-block table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 12px;
    }

    .author-info {
        padding: 18px;
    }

    .widget-fixed {
        padding: 12px 14px;
    }

    .widget-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
    }

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

    .widget-btn {
        width: 100%;
        min-height: 46px;
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .xr9k2mz {
        padding: 0 12px;
    }

    .hero-section {
        min-height: 360px;
        padding: 42px 12px;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .section {
        padding: 38px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .jackpot-block {
        padding: 24px 14px;
    }

    .jackpot-block p {
        font-size: 15px;
    }

    .jackpot-amount {
        font-size: 30px;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .tournament-card,
    .slot-game,
    .reviews-section,
    .content-block {
        padding: 18px 14px;
    }

    .tournament-title {
        font-size: 18px;
    }

    .tournament-desc,
    .review-text,
    .author-bio {
        font-size: 14px;
        line-height: 1.65;
    }

    .tournament-timer {
        font-size: 14px;
    }

    .tournament-prize {
        font-size: 22px;
    }

    .game-card {
        padding: 12px;
    }

    .game-logo {
        height: 78px;
    }

    .game-name {
        font-size: 14px;
    }

    .game-btn {
        min-height: 38px;
        font-size: 13px;
    }

    .slot-machine {
        gap: 8px;
    }

    .reel {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .spin-btn,
    .submit-btn {
        min-height: 44px;
        font-size: 14px;
    }

    .review-header {
        gap: 12px;
    }

    .review-avatar {
        width: 42px;
        height: 42px;
    }

    .review-form {
        padding: 16px 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .content-block h2 {
        font-size: 22px;
    }

    .content-block h3 {
        font-size: 18px;
    }

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

    .content-block table th,
    .content-block table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .author-info {
        padding: 16px 14px;
    }

    .author-name {
        font-size: 15px;
    }

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

    .widget-btn {
        font-size: 13px;
    }
}

.game-logo {
    width: 100%;
    height: 110px;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #111;
}

.game-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}