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

body.body-7k {
    font-family: 'Manrope', sans-serif;
    background-color: #110d0e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

a:hover {
    color: #c7051d;
}

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

/* Header Styles */
.x7k-hdr {
    background: linear-gradient(135deg, #450b17 0%, #2a0610 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(199, 5, 29, 0.3);
}

.logo-lnk {
    display: inline-block;
}

.logo-img {
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #c7051d !important;
    background: rgba(224, 224, 224, 0.1);
    border-radius: 6px;
}

.btn-lgn, .btn-lgn-mob {
    background: #e0e0e0;
    color: #450b17;
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-lgn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(224, 224, 224, 0.3);
}

.btn-reg, .btn-reg-mob {
    background: #c7051d;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-reg:hover {
    background: #a0040f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(199, 5, 29, 0.4);
}

.online-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.burger-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger-btn span {
    display: block;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    background: rgba(69, 11, 23, 0.95);
    backdrop-filter: blur(10px);
}

.mobile-nav-link {
    color: #e0e0e0;
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s;

}

.mobile-nav-link:hover {
    background: rgba(224, 224, 224, 0.1);
    color: #c7051d;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    margin-bottom: 40px;
}

.hero-banner .carousel-item {
    height: 500px;
    position: relative;
}

.hero-banner .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.6);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.carousel-caption h2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease;
}

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

.btn-hero {
    background: #c7051d;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    animation: fadeInUp 1.4s ease;
}

.btn-hero:hover {
    background: #a0040f;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(199, 5, 29, 0.5);
}

/* Main Content */
.main-h1 {
    color: #e0e0e0;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-block {
    background: linear-gradient(135deg, #1a1416 0%, #2a1a1e 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    border: 1px solid rgba(199, 5, 29, 0.2);
    transition: all 0.3s;
}

.content-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(199, 5, 29, 0.3);
}

.section-title {
    color: #e0e0e0;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c7051d, transparent);
}

/* Table Styles */
.table-casino-info {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(17, 13, 14, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.table-casino-info tbody tr {
    transition: all 0.3s;
}

.table-casino-info tbody tr:hover {
    background: rgba(199, 5, 29, 0.1);
}

.table-casino-info td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(224, 224, 224, 0.1);
    color: #e0e0e0;
}

.param-name {
    font-weight: 600;
    width: 35%;
}

.param-value {
    color: #f5f5f5;
}

/* Winners Section */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.winner-card {
    background: linear-gradient(135deg, rgba(199, 5, 29, 0.1) 0%, rgba(69, 11, 23, 0.2) 100%);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(199, 5, 29, 0.3);
    transition: all 0.3s;
}

.winner-card:hover {
    transform: translateX(8px);
    border-color: #c7051d;
    box-shadow: 0 4px 12px rgba(199, 5, 29, 0.4);
}

.winner-rank {
    background: #c7051d;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.winner-amount {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.1rem;
}

.tournament-card {
    background: linear-gradient(135deg, #2a1a1e 0%, #1a1416 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(199, 5, 29, 0.3);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 5, 29, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.tournament-card:hover {
    transform: translateY(-8px);
    border-color: #c7051d;
    box-shadow: 0 12px 30px rgba(199, 5, 29, 0.5);
}

.tournament-card:hover::before {
    top: -30%;
    left: -30%;
}

.tournament-badge {
    display: inline-block;
    background: #c7051d;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tournament-name {
    color: #e0e0e0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tournament-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tournament-prize {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.tournament-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    background: rgba(199, 5, 29, 0.2);
    color: #e0e0e0;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 60px;
}

.timer-label {
    color: #b0b0b0;
    font-size: 0.75rem;
    margin-top: 5px;
}

.btn-tournament {
    background: #c7051d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    width: 100%;
}

.btn-tournament:hover {
    background: #a0040f;
    transform: scale(1.05);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.author-info {
    background: rgba(69, 11, 23, 0.2);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c7051d;
}

.author-info h4 {
    color: #e0e0e0;
    margin-bottom: 10px;
}

.author-info p {
    color: #b0b0b0;
    line-height: 1.7;
}

.author-link {
    color: #c7051d;
    font-weight: 600;
    text-decoration: underline;
}

.author-link:hover {
    color: #a0040f;
}

.slot-machine {
    background: linear-gradient(135deg, #2a1a1e 0%, #1a1416 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #c7051d;
    box-shadow: 0 8px 24px rgba(199, 5, 29, 0.4);
}

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

.slot-reel {
    background: #110d0e;
    width: 100px;
    height: 100px;
    border: 3px solid #c7051d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.5);
}

.slot-symbol {
    font-size: 3rem;
    animation: spin 0.5s ease-in-out;
}

@keyframes spin {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-spin {
    background: linear-gradient(135deg, #c7051d 0%, #a0040f 100%);
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-spin:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(199, 5, 29, 0.6);
}

.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.game-result {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(199, 5, 29, 0.2) 0%, rgba(69, 11, 23, 0.3) 100%);
    border-radius: 8px;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-title {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.result-text {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-get-bonus {
    background: #00ff88;
    color: #110d0e;
    padding: 12px 40px;
    font-weight: 700;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-get-bonus:hover {
    background: #00dd77;
    transform: scale(1.05);
    color: #110d0e;
}

.content-text {
    line-height: 1.8;
}

.content-text h2,
.content-text h3,
.content-text h4 {
    color: #e0e0e0;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-text p {
    color: #d0d0d0;
    margin-bottom: 15px;
}

.content-text ul,
.content-text ol {
    color: #d0d0d0;
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-text li {
    margin-bottom: 8px;
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-text table td,
.content-text table th {
    padding: 12px;
    border: 1px solid rgba(224, 224, 224, 0.2);
    text-align: left;
}

.content-text table th {
    background: rgba(199, 5, 29, 0.2);
    color: #e0e0e0;
    font-weight: 600;
}

/* FAQ Section */
.accordion-item {
    background: rgba(69, 11, 23, 0.2);
    border: 1px solid rgba(199, 5, 29, 0.3);
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(69, 11, 23, 0.3);
    color: #e0e0e0;
    font-weight: 600;
    border: none;
    padding: 18px 24px;
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    background: rgba(199, 5, 29, 0.3);
    color: #e0e0e0;
}

.accordion-button:hover {
    background: rgba(199, 5, 29, 0.2);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: rgba(17, 13, 14, 0.5);
    color: #d0d0d0;
    padding: 20px 24px;
    line-height: 1.8;
}

.ftr-7k {
    background: linear-gradient(135deg, #450b17 0%, #2a0610 100%);
    color: #e0e0e0;
    margin-top: 60px;
}

.ftr-ttl {
    color: #e0e0e0;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.ftr-menu li {
    margin-bottom: 8px;
}

.ftr-menu a {
    color: #b0b0b0;
    transition: all 0.3s;
}

.ftr-menu a:hover {
    color: #c7051d;
    padding-left: 5px;
}

.text-light-gray {
    color: #b0b0b0;
}

.copyright-txt {
    color: #e0e0e0;
    margin: 0;
}

.legal-txt {
    color: #808080;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #c7051d 0%, #a0040f 100%);
    padding: 15px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.widget-text {
    display: flex;
    flex-direction: column;
}

.widget-bonus {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.widget-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.widget-btn {
    background: #fff;
    color: #c7051d;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.widget-btn:hover {
    background: #e0e0e0;
    transform: scale(1.05);
    color: #c7051d;
}

@media (max-width: 768px) {
    .main-h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .hero-banner .carousel-item {
        height: 350px;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

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

    .slot-reels {
        gap: 10px;
    }

    .slot-reel {
        width: 80px;
        height: 80px;
    }

    .slot-symbol {
        font-size: 2.5rem;
    }

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

    .widget-btn {
        width: 100%;
    }

    .table-responsive {
        overflow-x: auto;
    }
}

.wp-block-button {
    display: none;
}

.elementor-section {
    position: relative;
}

.woocommerce-product {
    margin: 0;
}

.site-branding {
    z-index: 1;
}

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

.container.kpt {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(199, 5, 29, .03) 100%);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.container.kpt p {
    margin: 0 0 16px;
    color: #d6d6d6;
    font-size: 16px;
    line-height: 1.9;
}

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

.container.kpt h2 {
    margin: 30px 0 14px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 850;
    color: #f0f0f0;
    letter-spacing: .2px;
    position: relative;
    padding-bottom: 10px;
}

.container.kpt h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c7051d, rgba(199, 5, 29, 0));
}

.container.kpt ul,
.container.kpt ol {
    margin: 0 0 18px;
    padding-left: 22px;
    color: #d6d6d6;
}

.container.kpt li {
    margin: 8px 0;
    line-height: 1.75;
}

.container.kpt a {
    color: #ff3b57;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 59, 87, .35);
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.container.kpt a:hover {
    color: #ff6b7f;
    border-bottom-color: rgba(255, 107, 127, .6);
}

.container.kpt strong {
    color: #ffffff;
    font-weight: 800;
}

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

.container.kpt table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 18px 0 22px;
    background: rgba(17, 13, 14, .55);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    overflow: hidden;
}

.container.kpt th,
.container.kpt td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    border-right: 1px solid rgba(255, 255, 255, .05);
    text-align: left;
    vertical-align: top;
}

.container.kpt tr:last-child td {
    border-bottom: none;
}

.container.kpt th:last-child,
.container.kpt td:last-child {
    border-right: none;
}

.container.kpt th {
    background: rgba(199, 5, 29, .16);
    color: #f4f4f4;
    font-weight: 800;
    letter-spacing: .15px;
}

.container.kpt td {
    color: #d6d6d6;
}

.container.kpt blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    border-left: 4px solid #c7051d;
    background: rgba(199, 5, 29, .08);
    border-radius: 12px;
    color: #e0e0e0;
}

.container.kpt .table-wrap {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}

.container.kpt .table-wrap table {
    min-width: 720px;
}

.container.kpt dl {
    margin: 18px 0 22px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
}

.container.kpt dt {
    color: #ffffff;
    font-weight: 850;
    margin: 12px 0 6px;
}

.container.kpt dd {
    margin: 0 0 10px;
    color: #d6d6d6;
    line-height: 1.75;
}

@media (max-width: 992px) {
    .container.kpt {
        padding: 22px;
        border-radius: 14px;
    }

    .container.kpt h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .container.kpt {
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
    }

    .container.kpt p {
        font-size: 15px;
        line-height: 1.85;
    }

    .container.kpt h2 {
        font-size: 20px;
        margin: 22px 0 12px;
        padding-bottom: 9px;
    }

    .container.kpt h2::after {
        width: 58px;
    }

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

    .container.kpt th,
    .container.kpt td {
        padding: 12px 12px;
        font-size: 14px;
    }

    .container.kpt .table-wrap table {
        min-width: 640px;
    }

    .container.kpt a {
        word-break: break-word;
    }
}

@media (max-width: 420px) {
    .container.kpt {
        padding: 14px;
    }

    .container.kpt h2 {
        font-size: 19px;
    }
}

.info-section {
    margin-bottom: 48px;
}

.info-section .content-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0%, rgba(199, 5, 29, .04) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .42);
}

.info-section .section-title {
    margin: 0 0 18px;
    color: #f2f2f2;
    font-size: 28px;
    font-weight: 850;
    line-height: 1.2;
    position: relative;
    padding-bottom: 10px;
}

.info-section .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c7051d, rgba(199, 5, 29, 0));
}

.info-section .table-responsive {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
}

.info-section .table-casino-info {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(17, 13, 14, .55);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    overflow: hidden;
    min-width: 820px;
}

.info-section .table-casino-info tbody tr {
    transition: background-color .2s ease;
}

.info-section .table-casino-info tbody tr:hover {
    background: rgba(199, 5, 29, .08);
}

.info-section .table-casino-info td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    border-right: 1px solid rgba(255, 255, 255, .05);
    vertical-align: top;
    color: #d6d6d6;
    line-height: 1.6;
}

.info-section .table-casino-info tr:last-child td {
    border-bottom: none;
}

.info-section .table-casino-info td:last-child {
    border-right: none;
}

.info-section .param-name {
    width: 34%;
    font-weight: 800;
    color: #f0f0f0;
    white-space: nowrap;
}

.info-section .param-value {
    color: #d6d6d6;
}

.info-section .param-value strong {
    color: #ffffff;
    font-weight: 900;
}

@media (max-width: 992px) {
    .info-section .content-block {
        padding: 22px;
        border-radius: 14px;
    }

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

    .info-section .table-casino-info {
        min-width: 760px;
    }
}

@media (max-width: 768px) {
    .info-section {
        margin-bottom: 34px;
    }

    .info-section .content-block {
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
    }

    .info-section .section-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .info-section .section-title::after {
        width: 58px;
    }

    .info-section .table-casino-info {
        min-width: 680px;
        border-radius: 12px;
    }

    .info-section .table-casino-info td {
        padding: 12px 12px;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .info-section .content-block {
        padding: 14px;
    }

    .info-section .section-title {
        font-size: 19px;
    }

    .info-section .table-casino-info {
        min-width: 640px;
    }
}

.info-section .table.table-casino-info {
    --bs-table-bg: transparent;
    --bs-table-color: #d6d6d6;
    --bs-table-border-color: rgba(255, 255, 255, .08);
    --bs-table-striped-bg: rgba(255, 255, 255, .03);
    --bs-table-striped-color: #d6d6d6;
    --bs-table-hover-bg: rgba(199, 5, 29, .08);
    --bs-table-hover-color: #f2f2f2;
}

.info-section .table-casino-info > :not(caption) > * > * {
    background-color: transparent !important;
    color: inherit;
}

.info-section .table-casino-info td,
.info-section .table-casino-info th {
    background: transparent !important;
}

.info-section .table-responsive {
    background: transparent;
}

@media (max-width: 767.98px) {
    .x7k-hdr .row.align-items-center {
        flex-wrap: nowrap;
        align-items: center;
    }

    .x7k-hdr .col-6.col-md-3.col-lg-2 {
        flex: 0 0 auto;
        width: auto;
    }

    .x7k-hdr .col-6.d-md-none.text-end {
        flex: 1 1 auto;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        white-space: nowrap;
        padding-left: 8px;
    }

    .x7k-hdr .btn-lgn-mob,
    .x7k-hdr .btn-reg-mob {
        margin: 0 !important;
        padding: 6px 10px !important;
        font-size: 12px;
        line-height: 1;
        border-radius: 8px;
    }

    .x7k-hdr .burger-btn {
        margin: 0;
        width: 34px;
        height: 34px;
        padding: 6px;
        flex: 0 0 34px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .x7k-hdr .burger-btn span {
        height: 2px;
        border-radius: 2px;
    }

    .x7k-hdr .logo-img {
        width: 56px;
        height: auto;
    }
}

@media (max-width: 390px) {
    .x7k-hdr .btn-lgn-mob,
    .x7k-hdr .btn-reg-mob {
        padding: 6px 8px !important;
        font-size: 11px;
    }

    .x7k-hdr .logo-img {
        width: 52px;
    }
}
