/* Dragon Money Casino Styles */
:root {
    --color-header: #1A1A1A;
    --color-primary: #FF9933;
    --color-secondary: #FF9933;
    --color-bg: #0A0A0A;
    --color-text: #E8E8E8;
    --color-text-muted: #B0B0B0;
    --spacing: 8px;
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Unused styles for uniqueness */
.unused-class-x9k4m {
    display: none;
}

.deprecated-wrapper-v3n7p {
    visibility: hidden;
}

.legacy-container-q2w8r {
    opacity: 0;
}

/* Header Styles */
.site-header {
    background: var(--color-header);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.site-logo {
    max-width: 40px;
    height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--color-text);
    padding: 8px 16px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.online-counter {
    background: rgba(255, 153, 51, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.online-icon {
    color: #00ff00;
    animation: pulse 2s infinite;
}

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

.btn-header-login,
.btn-login-mobile {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-header-login:hover,
.btn-login-mobile:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-header-signup,
.btn-signup-mobile {
    background: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-header-signup:hover,
.btn-signup-mobile:hover {
    background: #e68a2e;
    border-color: #e68a2e;
    transform: scale(1.05);
}

.header-buttons-mobile {
    gap: 8px;
}

.hero-banner-section {
    min-height: 500px;
    background: url('/hero-drag.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 153, 51, 0.1), rgba(255, 153, 51, 0.05));
    pointer-events: none;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    line-height: 1.5;
}

.btn-hero-primary {
    background: var(--color-secondary);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.btn-hero-primary:hover {
    background: #e68a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
    color: #fff;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-primary);
    padding: 14px 32px;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin: 16px auto 0;
}

/* Jackpots Section */
.jackpots-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #1A1A1A 100%);
}

.jackpot-card {
    background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.jackpot-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.2);
}

.jackpot-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.jackpot-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Courier New', monospace;
}

/* Winners Section */
.winners-section {
    background: var(--color-bg);
}

.winners-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    background: #1A1A1A;
    padding: 20px;
}

.winners-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.winners-table thead {
    background: #2A2A2A;
}

.winners-table th {
    padding: 15px;
    text-align: left;
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--color-primary);
}

.winners-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #2A2A2A;
    color: var(--color-text);
}

.winners-table tbody tr {
    transition: background 0.2s ease;
}

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

/* Video Section */
.video-section {
    background: linear-gradient(180deg, #1A1A1A 0%, var(--color-bg) 100%);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

/* Games Section */
.games-section {
    background: var(--color-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.game-card {
    background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.2);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 15px;
}

.game-btn {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.game-btn:hover {
    background: #e68a2e;
    transform: scale(1.05);
    color: #fff;
}

/* Wheel Section */
.wheel-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #1A1A1A 100%);
}

.wheel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

#wheel-canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--color-primary);
    z-index: 10;
}

.btn-spin-wheel {
    background: var(--color-secondary);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-spin-wheel:hover:not(:disabled) {
    background: #e68a2e;
    transform: scale(1.05);
}

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

.wheel-result {
    background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--color-primary);
}

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

.btn-claim-bonus {
    background: var(--color-primary);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-claim-bonus:hover {
    background: #e68a2e;
    transform: scale(1.05);
    color: #fff;
}

/* Content Section */
.content-section {
    background: var(--color-bg);
}

.main-content-article {
    background: #1A1A1A;
    padding: 40px;
    border-radius: 10px;
    line-height: 1.8;
}

.main-content-article h1,
.main-content-article h2,
.main-content-article h3 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.main-content-article h1 {
    font-size: 2.5rem;
}

.main-content-article h2 {
    font-size: 2rem;
}

.main-content-article h3 {
    font-size: 1.5rem;
}

.main-content-article p {
    margin-bottom: 20px;
    color: var(--color-text);
}

.main-content-article ul,
.main-content-article ol {
    margin: 20px 0 20px 30px;
    color: var(--color-text);
}

.main-content-article li {
    margin-bottom: 10px;
}

.main-content-article a {
    color: var(--color-primary);
    text-decoration: underline;
}

.main-content-article a:hover {
    color: #e68a2e;
}

.main-content-article table {
    width: 100%;
    margin: 30px auto;
    border-collapse: collapse;
    background: #2A2A2A;
    border-radius: 8px;
    overflow: hidden;
}

.main-content-article table th,
.main-content-article table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #3A3A3A;
}

.main-content-article table th {
    background: #3A3A3A;
    color: var(--color-primary);
    font-weight: 600;
}

.main-content-article table td {
    color: var(--color-text);
}

/* Author Section */
.author-section {
    background: linear-gradient(180deg, #1A1A1A 0%, var(--color-bg) 100%);
}

.author-card {
    background: #1A1A1A;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #2A2A2A;
}

.author-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.author-name {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 15px;
}

.author-bio {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-social-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.author-social-link:hover {
    color: #e68a2e;
}

.author-social-link img {
    width: 20px;
    height: 20px;
}

/* Footer */
.site-footer {
    background: var(--color-header);
    color: var(--color-text);
}

.footer-heading {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-menu a,
.footer-contacts a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-menu a:hover,
.footer-contacts a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    padding: 8px 15px;
    background: #2A2A2A;
    color: var(--color-text);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-primary);
    color: #fff;
}

.payment-methods,
.game-providers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.payment-methods img {
    height: 30px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.payment-methods img:hover {
    filter: grayscale(0%);
}

.provider-badge {
    background: #2A2A2A;
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin: 5px;
    transition: all 0.3s ease;
}

.provider-badge:hover {
    background: var(--color-primary);
    color: #fff;
}

.footer-bottom {
    background: #0A0A0A;
    border-top: 1px solid #2A2A2A;
}

.legal-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.separator {
    color: #2A2A2A;
    margin: 0 8px;
}

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

/* Sticky Widget */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-primary), #e68a2e);
    padding: 15px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

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

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

.widget-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.widget-btn {
    background: #fff;
    color: var(--color-primary);
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.widget-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    color: var(--color-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

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

    .widget-text {
        font-size: 0.95rem;
    }

    .main-content-article {
        padding: 20px;
    }

    .author-card {
        padding: 20px;
    }

    #wheel-canvas {
        width: 300px;
        height: 300px;
    }
}

.cffsgdv {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 72px;
    background: linear-gradient(180deg, #161616 0%, #101010 100%);
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #e6e6e6;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.72;
}

.cffsgdv * {
    box-sizing: border-box;
}

.cffsgdv h1,
.cffsgdv h2,
.cffsgdv h3,
.cffsgdv h4,
.cffsgdv h5,
.cffsgdv h6 {
    margin: 0 0 18px;
    line-height: 1.24;
    color: #ffffff;
}

.cffsgdv h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.cffsgdv h2 {
    font-size: clamp(1.42rem, 2.7vw, 2rem);
    font-weight: 800;
    margin-top: 42px;
    padding-left: 16px;
    border-left: 4px solid #ff9933;
}

.cffsgdv h3 {
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    font-weight: 700;
    margin-top: 28px;
    color: #ffb347;
}

.cffsgdv p {
    margin: 0 0 18px;
    font-size: 1rem;
    color: #d5d5d5;
}

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

.cffsgdv a:hover {
    color: #ffb347;
}

.cffsgdv strong {
    color: #ffffff;
}

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

.cffsgdv ul li,
.cffsgdv ol li {
    margin-bottom: 12px;
    color: #d9d9d9;
}

.cffsgdv ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.cffsgdv ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.12);
}

.cffsgdv ol {
    counter-reset: cffsgdv-counter;
}

.cffsgdv ol li {
    list-style: none;
    position: relative;
    padding-left: 46px;
    counter-increment: cffsgdv-counter;
}

.cffsgdv ol li::before {
    content: counter(cffsgdv-counter);
    position: absolute;
    left: 0;
    top: -1px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    color: #111111;
    font-size: 0.88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cffsgdv li p {
    margin-bottom: 0;
}

.cffsgdv table {
    width: 100%;
    margin: 24px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    overflow: hidden;
}

.cffsgdv th {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
}

.cffsgdv td {
    padding: 15px 18px;
    font-size: 0.96rem;
    color: #d8d8d8;
    border-top: 1px solid #2a2a2a;
    vertical-align: top;
}

.cffsgdv tbody tr:nth-child(even) td,
.cffsgdv table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.cffsgdv blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(255, 153, 51, 0.08);
    border-left: 4px solid #ff9933;
    border-radius: 0 14px 14px 0;
    color: #dedede;
}

.cffsgdv hr {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 32px 0;
}

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

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

@media (max-width: 991px) {
    .cffsgdv {
        padding: 32px 20px 60px;
        border-radius: 20px;
    }

    .cffsgdv h2 {
        margin-top: 34px;
    }

    .cffsgdv table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .cffsgdv {
        padding: 24px 16px 48px;
        border-radius: 18px;
        line-height: 1.62;
    }

    .cffsgdv h1 {
        margin-bottom: 20px;
    }

    .cffsgdv h2 {
        margin-top: 28px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .cffsgdv p,
    .cffsgdv li,
    .cffsgdv td,
    .cffsgdv th {
        font-size: 0.95rem;
    }

    .cffsgdv th,
    .cffsgdv td {
        padding: 13px 14px;
    }

    .cffsgdv ol li {
        padding-left: 40px;
    }

    .cffsgdv ol li::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cffsgdv {
        padding: 20px 12px 40px;
        border-radius: 16px;
    }

    .cffsgdv h1 {
        font-size: 1.72rem;
    }

    .cffsgdv h2 {
        font-size: 1.22rem;
    }

    .cffsgdv h3 {
        font-size: 1.02rem;
    }

    .cffsgdv p {
        font-size: 0.93rem;
        margin-bottom: 16px;
    }

    .cffsgdv ul li {
        padding-left: 18px;
    }

    .cffsgdv ul li::before {
        width: 7px;
        height: 7px;
        top: 10px;
    }

    .cffsgdv table {
        border-radius: 14px;
    }

    .cffsgdv th,
    .cffsgdv td {
        padding: 12px;
        font-size: 0.9rem;
    }
}

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

.entry-content {
    line-height: 1.6;
}

.post-thumbnail {
    display: block;
}

.site-content {
    min-height: 100vh;
}

/* Elementor obfuscation */
.elementor-widget-container {
    display: block;
}

.elementor-section {
    width: 100%;
}

/* Additional unused styles */
.legacy-button-m4k9x {
    background: #000;
}

.deprecated-nav-w2p7q {
    display: none;
}

.old-header-r8n3v {
    visibility: hidden;
}

.unused-footer-t6m2k {
    opacity: 0;
}

html,
body,
.xr9k2-body,
.dm-wrapper,
#wp-page-wrapper,
.site-wrapper,
.content-section,
main {
    background: #0a0a0a !important;
    color: #e8e8e8;
}

.xr9k2-body {
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

#wp-page-wrapper {
    min-height: 100vh;
}

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

section,
main {
    position: relative;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff9933 0%, #ff7700 100%);
}

.hero-banner-section {
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 100px 0 84px;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.72) 45%, rgba(8, 8, 8, 0.44) 100%),
    url("/hero-drag.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 153, 51, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 153, 51, 0.03), rgba(0, 0, 0, 0.06));
    pointer-events: none;
}

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

.hero-text-block {
    max-width: 720px;
}

.hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5.5vw, 4.3rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-wrap: balance;
}

.hero-subtitle {
    margin: 0;
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.75;
    color: #d2d2d2;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 26px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-hero-primary,
.btn-claim-bonus,
.widget-btn,
.btn-spin-wheel {
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    color: #111111;
    box-shadow: 0 14px 32px rgba(255, 119, 0, 0.25);
}

.btn-hero-primary:hover,
.btn-claim-bonus:hover,
.widget-btn:hover,
.btn-spin-wheel:hover {
    color: #111111;
    box-shadow: 0 18px 38px rgba(255, 119, 0, 0.32);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border-color: rgba(255, 153, 51, 0.28);
}

.btn-hero-secondary:hover {
    color: #ffffff;
    background: rgba(255, 153, 51, 0.08);
    border-color: rgba(255, 153, 51, 0.52);
}

.jackpots-section,
.video-section,
.wheel-section {
    background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
}

.winners-section,
.games-section,
.content-section {
    background: #0a0a0a;
}

.jackpots-grid {
    row-gap: 0;
}

.jackpot-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid rgba(255, 153, 51, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    text-align: center;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.jackpot-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.24);
}

.jackpot-icon {
    margin-bottom: 14px;
    font-size: 3rem;
    line-height: 1;
}

.jackpot-name {
    margin: 0 0 12px;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.jackpot-amount {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1;
    font-weight: 800;
    color: #ff9933;
    font-variant-numeric: tabular-nums;
}

.winners-table-wrapper {
    border-radius: 22px;
    overflow-x: auto;
    background: linear-gradient(180deg, #171717 0%, #101010 100%);
    border: 1px solid rgba(255, 153, 51, 0.1);
    padding: 0;
}

.winners-table {
    width: 100%;
    min-width: 680px;
    margin: 0;
    border-collapse: collapse;
    background: transparent !important;
    color: #e8e8e8;
}

.winners-table thead,
.winners-table thead tr,
.winners-table thead th {
    background: rgba(255, 153, 51, 0.1) !important;
}

.winners-table th {
    padding: 18px 16px;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(255, 153, 51, 0.14);
    color: #ffb347;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.winners-table td {
    padding: 15px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent !important;
    color: #dddddd;
    font-size: 0.96rem;
    vertical-align: middle;
}

.winners-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015) !important;
}

.winners-table tbody tr:hover td {
    background: rgba(255, 153, 51, 0.05) !important;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #111111;
    border: 1px solid rgba(255, 153, 51, 0.1);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.video-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

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

.games-grid {
    row-gap: 24px;
}

.game-card,
.games-grid > div,
.games-grid > article {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
    border: 1px solid rgba(255, 153, 51, 0.1);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.game-card:hover,
.games-grid > div:hover,
.games-grid > article:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 153, 51, 0.28);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
}

.game-image,
.games-grid img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.game-info,
.games-grid .game-info {
    padding: 18px 18px 20px;
}

.game-title,
.games-grid .game-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
}

.game-btn,
.games-grid .game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-btn:hover,
.games-grid .game-btn:hover {
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 119, 0, 0.24);
}

.wheel-container {
    position: relative;
    width: min(100%, 420px);
    margin: 0 auto;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid rgba(255, 153, 51, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

#wheel-canvas {
    width: 100%;
    height: auto;
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.9rem;
    color: #ff9933;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
    z-index: 3;
}

.btn-spin-wheel {
    min-width: 220px;
}

.wheel-result {
    max-width: 420px;
    margin: 20px auto 0;
    padding: 22px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid rgba(255, 153, 51, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.result-text {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.35;
    font-weight: 700;
}

.main-content-article {
    padding: 34px 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, #161616 0%, #101010 100%);
    border: 1px solid rgba(255, 153, 51, 0.1);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.main-content-article h1,
.main-content-article h2,
.main-content-article h3,
.main-content-article h4,
.main-content-article h5,
.main-content-article h6 {
    margin: 0 0 18px;
    line-height: 1.24;
    color: #ffffff;
}

.main-content-article h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.main-content-article h2 {
    font-size: clamp(1.42rem, 2.7vw, 2rem);
    font-weight: 800;
    margin-top: 42px;
    padding-left: 16px;
    border-left: 4px solid #ff9933;
}

.main-content-article h3 {
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    font-weight: 700;
    margin-top: 28px;
    color: #ffb347;
}

.main-content-article p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.75;
    color: #d5d5d5;
}

.main-content-article a {
    color: #ff9933;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

.main-content-article a:hover {
    color: #ffb347;
}

.main-content-article strong {
    color: #ffffff;
}

.main-content-article ul,
.main-content-article ol {
    margin: 0 0 24px;
    padding-left: 0;
}

.main-content-article ul li,
.main-content-article ol li {
    margin-bottom: 12px;
    color: #d8d8d8;
}

.main-content-article ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.main-content-article ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.12);
}

.main-content-article ol {
    counter-reset: article-counter;
}

.main-content-article ol li {
    list-style: none;
    position: relative;
    padding-left: 46px;
    counter-increment: article-counter;
}

.main-content-article ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: -1px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    color: #111111;
    font-size: 0.88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content-article li p {
    margin-bottom: 0;
}

.main-content-article table {
    width: 100%;
    margin: 24px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    background: #181818 !important;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    overflow: hidden;
}

.main-content-article th {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%) !important;
    border: 0;
}

.main-content-article td {
    padding: 15px 18px;
    font-size: 0.96rem;
    color: #d8d8d8;
    border: 0;
    border-top: 1px solid #2a2a2a;
    vertical-align: top;
    background: transparent !important;
}

.main-content-article tbody tr:nth-child(even) td,
.main-content-article table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02) !important;
}

.main-content-article blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(255, 153, 51, 0.08);
    border-left: 4px solid #ff9933;
    border-radius: 0 14px 14px 0;
    color: #dedede;
}

.main-content-article hr {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 32px 0;
}

.sticky-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: auto;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
    box-shadow: 0 18px 36px rgba(255, 119, 0, 0.28);
    z-index: 999;
}

.widget-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.widget-text {
    color: #111111;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.widget-btn {
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    box-shadow: none;
}

.widget-btn:hover {
    color: #ffffff;
    background: #1c1c1c;
}

@media (max-width: 991px) {
    .hero-banner-section {
        min-height: 560px;
        padding: 84px 0 68px;
        background-position: center;
    }

    .hero-title {
        font-size: 2.9rem;
    }

    .hero-text-block {
        max-width: 100%;
    }

    .winners-table-wrapper {
        border-radius: 18px;
    }

    .main-content-article {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .main-content-article h2 {
        margin-top: 34px;
    }

    .main-content-article table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

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

    .hero-banner-section {
        min-height: auto;
        padding: 72px 0 56px;
        text-align: left;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
    }

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

    .section-title::after {
        width: 60px;
        margin-top: 12px;
    }

    .jackpot-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .jackpot-name {
        font-size: 1.25rem;
    }

    .winners-table th,
    .winners-table td {
        padding: 13px 12px;
        font-size: 0.9rem;
    }

    .video-wrapper {
        border-radius: 18px;
    }

    .wheel-container {
        padding: 14px;
        border-radius: 22px;
    }

    .btn-spin-wheel {
        min-width: 0;
        width: 100%;
    }

    .wheel-result {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .result-text {
        font-size: 1.15rem;
    }

    .main-content-article {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .main-content-article h1 {
        margin-bottom: 20px;
    }

    .main-content-article h2 {
        margin-top: 28px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .main-content-article p,
    .main-content-article li,
    .main-content-article td,
    .main-content-article th {
        font-size: 0.95rem;
    }

    .main-content-article th,
    .main-content-article td {
        padding: 13px 14px;
    }

    .main-content-article ol li {
        padding-left: 40px;
    }

    .main-content-article ol li::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .sticky-widget {
        left: 12px;
        right: 12px;
        bottom: 12px;
        border-radius: 22px;
        padding: 14px 14px;
    }

    .widget-content {
        justify-content: space-between;
        gap: 12px;
    }

    .widget-text {
        white-space: normal;
        font-size: 0.92rem;
    }

    .widget-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 575px) {
    .hero-banner-section {
        padding: 64px 0 48px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

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

    .jackpot-icon {
        font-size: 2.5rem;
    }

    .jackpot-amount {
        font-size: 1.75rem;
    }

    .wheel-pointer {
        font-size: 1.55rem;
        top: 0;
    }

    .main-content-article {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .main-content-article h1 {
        font-size: 1.72rem;
    }

    .main-content-article h2 {
        font-size: 1.22rem;
    }

    .main-content-article h3 {
        font-size: 1.02rem;
    }

    .main-content-article p {
        font-size: 0.93rem;
        margin-bottom: 16px;
    }

    .main-content-article ul li {
        padding-left: 18px;
    }

    .main-content-article ul li::before {
        width: 7px;
        height: 7px;
        top: 10px;
    }

    .main-content-article table {
        border-radius: 14px;
    }

    .main-content-article th,
    .main-content-article td {
        padding: 12px;
        font-size: 0.9rem;
    }

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

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

    .widget-btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-banner-section {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 100px 0 84px;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/herobanner-drag.jpg") center center / cover no-repeat;
    z-index: 0;
}

.hero-banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.65) 0%, rgba(8, 8, 8, 0.45) 45%, rgba(8, 8, 8, 0.3) 100%);
    z-index: 1;
}

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

@media (max-width: 991px) {
    .header-main-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .logo-link {
        flex: 0 0 auto;
    }

    .site-logo {
        width: 68px;
        height: auto;
        display: block;
    }

    .header-right-section {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        margin-left: auto;
    }

    .header-buttons-mobile {
        display: flex !important;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        margin-right: 0 !important;
    }

    .header-buttons-mobile .btn {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .burger-menu {
        flex: 0 0 auto;
        margin: 0;
        padding: 6px 10px;
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 153, 51, 0.35);
        box-shadow: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

@media (max-width: 575px) {
    .header-main-row {
        gap: 6px;
    }

    .site-logo {
        width: 58px;
    }

    .header-right-section {
        gap: 6px;
    }

    .header-buttons-mobile {
        gap: 6px;
    }

    .header-buttons-mobile .btn {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
        border-radius: 8px;
    }

    .burger-menu {
        padding: 5px 8px;
    }
}