/* Dragon Money Casino - Main Styles */

:root {
    --color-header: #1A1A1A;
    --color-footer: #1A1A1A;
    --color-bg: #0A0A0A;
    --color-login: #FF9933;
    --color-signup: #FF9933;
    --color-accent: #FF9933;
    --color-text-light: #FFFFFF;
    --color-text-gray: #CCCCCC;
    --font-primary: 'Open Sans', Arial, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.q2ms7kl-header-main {
    background: linear-gradient(135deg, var(--color-header) 0%, #2A2A2A 100%);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.n4hp8ks-navbar {
    padding: 0;
}

.z7lm3ns-brand {
    display: flex;
    align-items: center;
}

.l9sk4md-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.p7km4ls-nav-menu .nav-link {
    color: var(--color-text-light) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.p7km4ls-nav-menu .nav-link:hover {
    color: var(--color-accent) !important;
}

.p7km4ls-nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.p7km4ls-nav-menu .nav-link:hover::after {
    width: 100%;
}

.v9lk2ms-online-counter {
    background: rgba(255, 153, 51, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 0 15px;
    font-size: 14px;
}

.s3nm8kl-counter-icon {
    margin-right: 5px;
}

.c4hp7ls-counter-text {
    color: var(--color-text-light);
}

.h6ls9km-header-buttons {
    gap: 10px;
}

.k5ns8pl-btn-login {
    background: transparent;
    border: 2px solid var(--color-login);
    color: var(--color-login) !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.k5ns8pl-btn-login:hover {
    background: var(--color-login);
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

.m2lp7ks-btn-signup {
    background: linear-gradient(135deg, var(--color-signup) 0%, #FF7700 100%);
    border: none;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.m2lp7ks-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.6);
}

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

.b4nj9ls-burger {
    border-color: var(--color-accent);
}

/* Hero Section */
.h4ms9kl-hero-section {
    position: relative;
    margin-bottom: 50px;
}

.c8nk2ls-hero-carousel {
    max-height: 600px;
    overflow: hidden;
}

.b7ms3kl-banner-img {
    object-fit: cover;
    height: 600px;
    filter: brightness(0.7);
}

.d9km4ls-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px 20px;
    bottom: 0;
    left: 0;
    right: 0;
}

.t5np8ks-caption-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.w3ls7km-caption-text {
    font-size: 1.3rem;
    color: var(--color-text-gray);
    margin-bottom: 25px;
}

.p6kl9ms-cta-button {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FF7700 100%);
    border: none;
    color: #000 !important;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.p6kl9ms-cta-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.6);
}

/* Advantages Section */
.a5ms8kl-advantages-wrapper {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
}

.h7ls4km-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-text-light);
    position: relative;
    padding-bottom: 15px;
}

.h7ls4km-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #FF7700);
    border-radius: 2px;
}

.g4nk9ls-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.v2ms7kl-advantage-card {
    background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.v2ms7kl-advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.3);
}

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

.t4np9ks-card-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.v2ms7kl-advantage-card .card-text {
    color: var(--color-text-gray);
    line-height: 1.5;
}

/* Tournaments Section */
.t8ms4kl-tournaments-wrapper {
    padding: 60px 0;
    background: var(--color-bg);
}

.n5km9ls-tournaments-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.m3ls7kp-tournament-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    border: 2px solid rgba(255, 153, 51, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.m3ls7kp-tournament-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 153, 51, 0.4);
}

.w8km2ls-tournament-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.p4ls9km-timer-wrapper {
    background: rgba(255, 153, 51, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.b6ms3kl-timer-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin-bottom: 5px;
}

.t9km4ls-timer-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.h5ls8km-prize-amount {
    font-size: 1.2rem;
    margin: 15px 0;
    color: var(--color-text-light);
}

.v7km3ls-participate-btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FF7700 100%);
    border: none;
    color: #000 !important;
    font-weight: 700;
    padding: 12px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.v7km3ls-participate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.5);
}

/* App Info Section */
.d6ms9kl-app-info-wrapper {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
}

.s4km8ls-table-container {
    margin-top: 40px;
}

.n7ls3km-app-table {
    background: #1F1F1F;
    border-color: rgba(255, 153, 51, 0.3);
    color: var(--color-text-light);
}

.n7ls3km-app-table th {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FF7700 100%);
    color: #000;
    font-weight: 700;
    padding: 15px;
}

.n7ls3km-app-table td {
    padding: 12px;
    border-color: rgba(255, 153, 51, 0.2);
}

.l4ms9kp-table-label {
    font-weight: 600;
    width: 40%;
}

.k6ls9ms-download-buttons {
    margin-top: 40px;
}

.t8km3ls-download-title {
    color: var(--color-text-light);
    font-weight: 700;
}

.w7ms2kl-store-badge {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.p9km4ls-download-btn {
    background: transparent;
    border: none;
    padding: 0;
}

.p9km4ls-download-btn:hover .w7ms2kl-store-badge {
    transform: scale(1.1);
}

.m5ls8km-apk-button {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FF7700 100%);
    border: none;
    color: #000 !important;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.m5ls8km-apk-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.5);
}

/* Video Section */
.v3ms7kl-video-wrapper {
    padding: 60px 0;
    background: var(--color-bg);
}

.h4km9ls-video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
}

.b8ms3kl-video-iframe {
    border: none;
}

.p7km4ls-author-info {
    background: rgba(255, 153, 51, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--color-accent);
}

.a9km2ls-author-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.a9km2ls-author-link:hover {
    color: #FF7700;
    text-decoration: underline;
}

/* Slot Game Section */
.s9ms6kl-slot-game-wrapper {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
}

.g3ls8km-game-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    border: 2px solid rgba(255, 153, 51, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.m7km4ls-slot-machine {
    background: #000;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--color-accent);
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.3);
}

.r5ms9kl-reels-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.k2ls7mp-reel {
    background: linear-gradient(135deg, #1F1F1F 0%, #2A2A2A 100%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid rgba(255, 153, 51, 0.5);
    font-size: 3rem;
    transition: transform 0.1s ease;
}

.k2ls7mp-reel.spinning {
    animation: spin 0.1s infinite;
}

@keyframes spin {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.w8km5ls-spin-button {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FF7700 100%);
    border: none;
    color: #000 !important;
    padding: 15px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.w8km5ls-spin-button:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.6);
}

.w8km5ls-spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.p6ms3kl-result-message {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(255, 119, 0, 0.2) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--color-accent);
}

.t4km9ls-win-title {
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.w7ls2km-win-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.m9km3ls-claim-button {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FF7700 100%);
    border: none;
    color: #000 !important;
    padding: 12px 40px;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.m9km3ls-claim-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.5);
}

/* Content Section */
.c4hj7mx-content-wrapper {
    padding: 60px 0;
    background: var(--color-bg);
}

.w9ls2kd-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.h3mz8kp-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.b7pk4ns-text-content {
    color: var(--color-text-gray);
    line-height: 1.8;
}

.b7pk4ns-text-content h2,
.b7pk4ns-text-content h3,
.b7pk4ns-text-content h4 {
    color: var(--color-text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.b7pk4ns-text-content p {
    margin-bottom: 15px;
}

.b7pk4ns-text-content ul,
.b7pk4ns-text-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

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

.b7pk4ns-text-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.b7pk4ns-text-content a:hover {
    color: #FF7700;
    text-decoration: underline;
}

.b7pk4ns-text-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: #1F1F1F;
}

.b7pk4ns-text-content table th,
.b7pk4ns-text-content table td {
    padding: 12px;
    border: 1px solid rgba(255, 153, 51, 0.3);
    text-align: left;
}

.b7pk4ns-text-content table th {
    background: rgba(255, 153, 51, 0.2);
    font-weight: 700;
}

/* FAQ Section */
.f4ms8kl-faq-wrapper {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
}

.n5km7ls-faq-accordion {
    margin-top: 40px;
}

.n5km7ls-faq-accordion .accordion-item {
    background: #1F1F1F;
    border: 1px solid rgba(255, 153, 51, 0.2);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.h8ms4kl-accordion-btn {
    background: #1F1F1F;
    color: var(--color-text-light);
    font-weight: 600;
    padding: 15px 20px;
    border: none;
    transition: all 0.3s ease;
}

.h8ms4kl-accordion-btn:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.3) 0%, rgba(255, 119, 0, 0.3) 100%);
    color: var(--color-text-light);
}

.h8ms4kl-accordion-btn:hover {
    background: rgba(255, 153, 51, 0.2);
}

.p7km3ls-accordion-body {
    background: #1A1A1A;
    color: var(--color-text-gray);
    padding: 20px;
    line-height: 1.8;
}

/* Footer */
.f7ms3kl-footer-main {
    background: linear-gradient(135deg, var(--color-footer) 0%, #252525 100%);
    padding: 50px 0 20px;
    border-top: 3px solid var(--color-accent);
}

.l9km4ls-footer-logo .w4ms7kl-logo-footer {
    height: 60px;
    width: auto;
}

.p2km9ls-footer-text {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.h6ms8kl-footer-heading {
    color: var(--color-text-light);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.u3ls7km-footer-menu {
    list-style: none;
    padding: 0;
}

.u3ls7km-footer-menu li {
    margin-bottom: 10px;
}

.a5km9ls-footer-link {
    color: var(--color-text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.a5km9ls-footer-link:hover {
    color: var(--color-accent);
}

.h8km2ls-providers-title {
    color: var(--color-text-light);
    font-weight: 700;
    margin-bottom: 20px;
}

.p5ms9kl-payments-logos,
.p9ms4kl-providers-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.i2km7ls-payment-logo,
.i6km3ls-provider-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.i2km7ls-payment-logo:hover,
.i6km3ls-provider-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.c8ms7kl-copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 153, 51, 0.2);
}

.l3km9ls-legal-text {
    color: var(--color-text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Bonus Widget */
.w5ms8kl-bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #FF7700 100%);
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

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

.g4km7ls-widget-inner {
    align-items: center;
    gap: 15px;
}

.p7ms3kl-widget-text {
    color: #000;
}

.t9km2ls-widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.s4km8ls-widget-subtitle {
    font-size: 0.95rem;
}

.m6km4ls-widget-button {
    background: #000 !important;
    color: var(--color-accent) !important;
    border: none;
    padding: 12px 40px;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.m6km4ls-widget-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .t5np8ks-caption-title {
        font-size: 2rem;
    }

    .w3ls7km-caption-text {
        font-size: 1rem;
    }

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

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

@media (max-width: 768px) {
    .b7ms3kl-banner-img {
        height: 400px;
    }

    .t5np8ks-caption-title {
        font-size: 1.5rem;
    }

    .p6kl9ms-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .g4nk9ls-advantages-grid {
        grid-template-columns: 1fr;
    }

    .t9km2ls-widget-title {
        font-size: 1rem;
    }

    .s4km8ls-widget-subtitle {
        display: none !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

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

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

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.daghd {
    max-width: 960px;
    margin: 48px auto;
    padding: 40px;
    background: #141414;
    border: 1px solid rgba(255, 153, 51, 0.18);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.daghd h1,
.daghd h2,
.daghd h3 {
    color: #ffffff;
    line-height: 1.2;
    font-weight: 700;
}

.daghd h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.daghd h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 153, 51, 0.2);
}

.daghd h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.daghd p,
.daghd li,
.daghd td,
.daghd th,
.daghd blockquote {
    font-size: 17px;
    line-height: 1.75;
    color: #d7d7d7;
}

.daghd p {
    margin-bottom: 18px;
}

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

.daghd li {
    margin-bottom: 10px;
}

.daghd a {
    color: #ff9933;
    text-decoration: underline;
    text-decoration-color: rgba(255, 153, 51, 0.4);
    text-underline-offset: 3px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.daghd a:hover {
    color: #ffb366;
    text-decoration-color: rgba(255, 179, 102, 0.75);
}

.daghd strong {
    color: #ffffff;
}

.daghd table {
    width: 100%;
    margin: 24px 0 28px;
    border-collapse: collapse;
    background: #101010;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.daghd thead {
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
}

.daghd th {
    color: #ffffff;
    font-weight: 700;
}

.daghd th,
.daghd td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 153, 51, 0.14);
    text-align: left;
}

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

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

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

.daghd blockquote p {
    margin-bottom: 0;
}

.daghd img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 28px auto;
}

.daghd hr {
    border: 0;
    height: 1px;
    background: rgba(255, 153, 51, 0.16);
    margin: 32px 0;
}

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

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

@media (max-width: 1024px) {
    .daghd {
        margin: 32px auto;
        padding: 32px 24px;
        border-radius: 20px;
    }

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

    .daghd h2 {
        font-size: 25px;
    }

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

    .daghd p,
    .daghd li,
    .daghd td,
    .daghd th,
    .daghd blockquote {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .daghd {
        margin: 20px auto;
        padding: 24px 16px;
        border-radius: 16px;
    }

    .daghd h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .daghd h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .daghd h3 {
        font-size: 18px;
        margin-top: 22px;
        margin-bottom: 10px;
    }

    .daghd p,
    .daghd li,
    .daghd td,
    .daghd th,
    .daghd blockquote {
        font-size: 15px;
        line-height: 1.65;
    }

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

    .daghd li {
        margin-bottom: 8px;
    }

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

    .daghd blockquote {
        padding: 16px;
        border-radius: 12px;
    }
}

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

    .daghd h1 {
        font-size: 24px;
    }

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

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

    .daghd p,
    .daghd li,
    .daghd td,
    .daghd th,
    .daghd blockquote {
        font-size: 14px;
    }

    .daghd table {
        margin: 20px 0 24px;
    }

    .daghd th,
    .daghd td {
        padding: 12px;
    }
}

.q2ms7kl-header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 153, 51, 0.14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.n4hp8ks-navbar {
    padding: 14px 0;
}

.z7lm3ns-brand {
    display: inline-flex;
    align-items: center;
}

.l9sk4md-logo-img {
    display: block;
    width: auto;
    height: 48px;
}

.p7km4ls-nav-menu {
    align-items: center;
    gap: 8px;
}

.p7km4ls-nav-menu .nav-link {
    color: #f4f4f4 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 14px !important;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.p7km4ls-nav-menu .nav-link:hover,
.p7km4ls-nav-menu .nav-link:focus {
    color: #ff9933 !important;
    background: rgba(255, 153, 51, 0.1);
    transform: translateY(-1px);
}

.v9lk2ms-online-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    margin-right: 16px;
    padding: 10px 14px;
    background: rgba(255, 153, 51, 0.12);
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 999px;
    color: #f3f3f3;
    font-size: 14px;
    white-space: nowrap;
}

.s3nm8kl-counter-icon {
    font-size: 15px;
}

.c4hp7ls-counter-text strong {
    color: #ffb366;
}

.h6ls9km-header-buttons,
.d8km2ls-header-actions {
    align-items: center;
    gap: 10px;
}

.k5ns8pl-btn-login,
.m2lp7ks-btn-signup,
.m5ls8km-apk-button,
.v7km3ls-participate-btn,
.w8km5ls-spin-button,
.m9km3ls-claim-button {
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.k5ns8pl-btn-login {
    background: transparent;
    border: 1px solid #ff9933;
    color: #ff9933 !important;
    box-shadow: none;
}

.k5ns8pl-btn-login:hover,
.k5ns8pl-btn-login:focus {
    background: rgba(255, 153, 51, 0.12);
    color: #ffb366 !important;
    border-color: #ffb366;
    transform: translateY(-1px);
}

.m2lp7ks-btn-signup,
.m5ls8km-apk-button,
.v7km3ls-participate-btn,
.w8km5ls-spin-button,
.m9km3ls-claim-button {
    border: 0;
    color: #111 !important;
    background: linear-gradient(135deg, #ffb14d 0%, #ff8a00 100%);
    box-shadow: 0 12px 24px rgba(255, 138, 0, 0.24);
}

.m2lp7ks-btn-signup:hover,
.m5ls8km-apk-button:hover,
.v7km3ls-participate-btn:hover,
.w8km5ls-spin-button:hover,
.m9km3ls-claim-button:hover {
    color: #111 !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 138, 0, 0.34);
}

.b4nj9ls-burger {
    padding: 8px 10px;
    border: 1px solid rgba(255, 153, 51, 0.35);
    border-radius: 12px;
    background: rgba(255, 153, 51, 0.08);
}

.b4nj9ls-burger:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 51, 0.18);
}

.navbar-toggler-icon {
    filter: invert(78%) sepia(58%) saturate(1581%) hue-rotate(343deg) brightness(102%) contrast(102%);
}

.a5ms8kl-advantages-wrapper,
.d6ms9kl-app-info-wrapper,
.s9ms6kl-slot-game-wrapper,
.t8ms4kl-tournaments-wrapper,
.v3ms7kl-video-wrapper {
    padding: 72px 0;
}

.a5ms8kl-advantages-wrapper,
.s9ms6kl-slot-game-wrapper {
    background: linear-gradient(180deg, #101010 0%, #151515 100%);
}

.d6ms9kl-app-info-wrapper,
.v3ms7kl-video-wrapper {
    background: linear-gradient(180deg, #0d0d0d 0%, #131313 100%);
}

.t8ms4kl-tournaments-wrapper {
    background: #101010;
}

.h7ls4km-section-title {
    margin-bottom: 36px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.g4nk9ls-advantages-grid,
.n5km9ls-tournaments-grid {
    row-gap: 24px;
}

.v2ms7kl-advantage-card,
.m3ls7kp-tournament-card,
.g3ls8km-game-card {
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(255, 153, 51, 0.14);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.v2ms7kl-advantage-card:hover,
.m3ls7kp-tournament-card:hover,
.g3ls8km-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 153, 51, 0.32);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.v2ms7kl-advantage-card .card-body,
.m3ls7kp-tournament-card .card-body,
.g3ls8km-game-card .card-body {
    padding: 28px;
}

.i8km3ls-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.22) 0%, rgba(255, 119, 0, 0.12) 100%);
    font-size: 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 153, 51, 0.14);
}

.t4np9ks-card-heading,
.w8km2ls-tournament-title,
.t8km3ls-download-title,
.t4km9ls-win-title {
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
}

.t4np9ks-card-heading {
    font-size: 22px;
}

.w8km2ls-tournament-title {
    font-size: 24px;
}

.t8km3ls-download-title {
    font-size: 28px;
}

.v2ms7kl-advantage-card .card-text,
.m3ls7kp-tournament-card .card-text,
.w7ls2km-win-text {
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.s4km8ls-table-container {
    margin-top: 12px;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.98) 0%, rgba(14, 14, 14, 0.98) 100%);
    border: 1px solid rgba(255, 153, 51, 0.14);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.n7ls3km-app-table {
    width: 100%;
    margin: 0;
    background: #111111 !important;
    color: #f2f2f2;
    border-color: rgba(255, 153, 51, 0.16) !important;
    overflow: hidden;
    border-radius: 18px;
}

.n7ls3km-app-table thead,
.n7ls3km-app-table tbody,
.n7ls3km-app-table tr,
.n7ls3km-app-table th,
.n7ls3km-app-table td {
    background: transparent !important;
}

.n7ls3km-app-table thead tr {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.22) 0%, rgba(255, 119, 0, 0.18) 100%) !important;
}

.n7ls3km-app-table th,
.n7ls3km-app-table td {
    padding: 16px 18px;
    border-color: rgba(255, 153, 51, 0.14) !important;
    vertical-align: middle;
}

.n7ls3km-app-table th {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.n7ls3km-app-table td {
    color: #dadada;
    font-size: 15px;
}

.n7ls3km-app-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02) !important;
}

.n7ls3km-app-table tbody tr:hover {
    background: rgba(255, 153, 51, 0.06) !important;
}

.h9km2ls-table-header {
    text-align: center;
}

.l4ms9kp-table-label {
    width: 42%;
    color: #ffffff !important;
    font-weight: 700;
}

.k6ls9ms-download-buttons {
    margin-top: 28px;
}

.k6ls9ms-download-buttons .d-flex {
    gap: 14px !important;
}

.k6ls9ms-download-buttons .btn {
    min-width: 220px;
}

.m7km4ls-slot-machine {
    padding: 28px;
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(255, 153, 51, 0.08) 0%, rgba(0, 0, 0, 0) 55%), #0b0b0b;
    border: 1px solid rgba(255, 153, 51, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 153, 51, 0.05);
}

.r5ms9kl-reels-container {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.k2ls7mp-reel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    border-radius: 20px;
    background: linear-gradient(180deg, #232323 0%, #121212 100%);
    border: 1px solid rgba(255, 153, 51, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.k2ls7mp-reel .symbol {
    font-size: 42px;
    line-height: 1;
}

.p6ms3kl-result-message {
    margin-top: 24px !important;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 153, 51, 0.12) 0%, rgba(255, 119, 0, 0.08) 100%);
    border: 1px solid rgba(255, 153, 51, 0.18);
}

.p4ls9km-timer-wrapper {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 153, 51, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.12);
}

.b6ms3kl-timer-label {
    display: block;
    margin-bottom: 6px;
    color: #c8c8c8;
    font-size: 14px;
}

.t9km4ls-timer-value {
    color: #ffb366;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.h5ls8km-prize-amount {
    margin-bottom: 18px;
    color: #e8e8e8;
    font-size: 16px;
    line-height: 1.6;
}

.h5ls8km-prize-amount strong {
    color: #ffffff;
}

.h4km9ls-video-container {
    overflow: hidden;
    border-radius: 24px;
    background: #101010;
    border: 1px solid rgba(255, 153, 51, 0.14);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.b8ms3kl-video-iframe {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

@media (max-width: 1199px) {
    .h7ls4km-section-title {
        font-size: 34px;
    }

    .p7km4ls-nav-menu .nav-link {
        padding: 10px 12px !important;
        font-size: 14px;
    }

    .v2ms7kl-advantage-card .card-body,
    .m3ls7kp-tournament-card .card-body,
    .g3ls8km-game-card .card-body {
        padding: 24px;
    }
}

@media (max-width: 991px) {
    .q2ms7kl-header-main {
        background: rgba(10, 10, 10, 0.96);
    }

    .n4hp8ks-navbar {
        padding: 10px 0;
    }

    .l9sk4md-logo-img {
        height: 42px;
    }

    .d8km2ls-header-actions {
        display: flex;
        gap: 8px;
    }

    .d8km2ls-header-actions .btn {
        min-height: 42px;
        padding: 10px 16px;
        font-size: 14px;
    }

    #navbarNav {
        margin-top: 14px;
        padding: 16px;
        background: #141414;
        border: 1px solid rgba(255, 153, 51, 0.14);
        border-radius: 20px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
    }

    .p7km4ls-nav-menu {
        gap: 6px;
    }

    .p7km4ls-nav-menu .nav-link {
        display: block;
        padding: 12px 14px !important;
        border-radius: 14px;
    }

    .a5ms8kl-advantages-wrapper,
    .d6ms9kl-app-info-wrapper,
    .s9ms6kl-slot-game-wrapper,
    .t8ms4kl-tournaments-wrapper,
    .v3ms7kl-video-wrapper {
        padding: 56px 0;
    }

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

    .k6ls9ms-download-buttons .d-flex {
        justify-content: center;
    }

    .k6ls9ms-download-buttons .btn {
        min-width: 0;
        width: calc(50% - 7px);
    }

    .k2ls7mp-reel {
        width: 96px;
        height: 96px;
    }

    .k2ls7mp-reel .symbol {
        font-size: 38px;
    }

    .t9km4ls-timer-value {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .n4hp8ks-navbar .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .d8km2ls-header-actions {
        flex-wrap: nowrap;
    }

    .d8km2ls-header-actions .btn {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 12px;
    }

    .a5ms8kl-advantages-wrapper,
    .d6ms9kl-app-info-wrapper,
    .s9ms6kl-slot-game-wrapper,
    .t8ms4kl-tournaments-wrapper,
    .v3ms7kl-video-wrapper {
        padding: 48px 0;
    }

    .h7ls4km-section-title {
        font-size: 26px;
    }

    .v2ms7kl-advantage-card .card-body,
    .m3ls7kp-tournament-card .card-body,
    .g3ls8km-game-card .card-body {
        padding: 20px;
    }

    .t4np9ks-card-heading,
    .w8km2ls-tournament-title {
        font-size: 20px;
    }

    .v2ms7kl-advantage-card .card-text,
    .m3ls7kp-tournament-card .card-text,
    .w7ls2km-win-text,
    .n7ls3km-app-table td,
    .n7ls3km-app-table th {
        font-size: 14px;
    }

    .s4km8ls-table-container {
        padding: 10px;
        border-radius: 18px;
    }

    .n7ls3km-app-table {
        border-radius: 14px;
    }

    .n7ls3km-app-table th,
    .n7ls3km-app-table td {
        padding: 13px 12px;
        white-space: nowrap;
    }

    .k6ls9ms-download-buttons .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .k6ls9ms-download-buttons .btn {
        width: 100%;
    }

    .m7km4ls-slot-machine {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .r5ms9kl-reels-container {
        gap: 10px;
    }

    .k2ls7mp-reel {
        width: 78px;
        height: 78px;
        border-radius: 16px;
    }

    .k2ls7mp-reel .symbol {
        font-size: 32px;
    }

    .w8km5ls-spin-button,
    .m9km3ls-claim-button {
        width: 100%;
    }

    .p6ms3kl-result-message {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .t9km4ls-timer-value {
        font-size: 20px;
    }

    .h4km9ls-video-container {
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .l9sk4md-logo-img {
        height: 36px;
    }

    .d8km2ls-header-actions {
        gap: 6px;
    }

    .d8km2ls-header-actions .btn {
        min-height: 38px;
        padding: 9px 10px;
        font-size: 12px;
    }

    .b4nj9ls-burger {
        padding: 7px 9px;
        border-radius: 10px;
    }

    .h7ls4km-section-title {
        font-size: 22px;
    }

    .i8km3ls-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
        font-size: 24px;
        border-radius: 16px;
    }

    .t4np9ks-card-heading,
    .w8km2ls-tournament-title,
    .t8km3ls-download-title {
        font-size: 18px;
    }

    .k5ns8pl-btn-login,
    .m2lp7ks-btn-signup,
    .m5ls8km-apk-button,
    .v7km3ls-participate-btn,
    .w8km5ls-spin-button,
    .m9km3ls-claim-button {
        min-height: 44px;
        padding: 11px 16px;
        font-size: 14px;
        border-radius: 12px;
    }

    .k2ls7mp-reel {
        width: 68px;
        height: 68px;
    }

    .k2ls7mp-reel .symbol {
        font-size: 28px;
    }

    .b6ms3kl-timer-label {
        font-size: 13px;
    }

    .t9km4ls-timer-value {
        font-size: 18px;
    }

    .n7ls3km-app-table th,
    .n7ls3km-app-table td {
        padding: 12px 10px;
    }
}

.a5ms8kl-advantages-wrapper {
    padding: 72px 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
}

.a5ms8kl-advantages-wrapper .container {
    max-width: 1280px;
}

.h7ls4km-section-title {
    margin-bottom: 40px;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
}

.g4nk9ls-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
}

.g4nk9ls-advantages-grid > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 0;
}

.v2ms7kl-advantage-card {
    height: 100%;
    min-height: 100%;
    background: linear-gradient(180deg, #1b1b1b 0%, #121212 100%);
    border: 1px solid rgba(255, 153, 51, 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.v2ms7kl-advantage-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.v2ms7kl-advantage-card .card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.i8km3ls-icon-wrapper {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2) 0%, rgba(255, 119, 0, 0.12) 100%);
    font-size: 32px;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 153, 51, 0.12);
}

.t4np9ks-card-heading {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    color: #ffffff;
    word-break: normal;
    overflow-wrap: normal;
}

.v2ms7kl-advantage-card .card-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #d5d5d5;
    word-break: normal;
    overflow-wrap: break-word;
}

@media (max-width: 1199px) {
    .g4nk9ls-advantages-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .h7ls4km-section-title {
        font-size: 38px;
    }

    .t4np9ks-card-heading {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .a5ms8kl-advantages-wrapper {
        padding: 56px 0;
    }

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

    .h7ls4km-section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .v2ms7kl-advantage-card .card-body {
        padding: 22px 20px;
    }
}

@media (max-width: 575px) {
    .a5ms8kl-advantages-wrapper {
        padding: 44px 0;
    }

    .g4nk9ls-advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .i8km3ls-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        border-radius: 16px;
        font-size: 28px;
    }

    .t4np9ks-card-heading {
        font-size: 20px;
    }

    .v2ms7kl-advantage-card .card-text {
        font-size: 15px;
        line-height: 1.65;
    }
}

.t8ms4kl-tournaments-wrapper {
    padding: 72px 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
}

.t8ms4kl-tournaments-wrapper .container {
    max-width: 1280px;
}

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

.t8ms4kl-tournaments-wrapper .row.n5km9ls-tournaments-grid > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 0;
}

.m3ls7kp-tournament-card {
    height: 100%;
    background: linear-gradient(180deg, #1b1b1b 0%, #121212 100%);
    border: 1px solid rgba(255, 153, 51, 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.m3ls7kp-tournament-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 153, 51, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.m3ls7kp-tournament-card .card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.w8km2ls-tournament-title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    word-break: normal;
    overflow-wrap: normal;
}

.m3ls7kp-tournament-card .card-text {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #d5d5d5;
    word-break: normal;
    overflow-wrap: break-word;
}

.p4ls9km-timer-wrapper {
    margin: 0 0 18px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 153, 51, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.14);
}

.b6ms3kl-timer-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #cfcfcf;
}

.t9km4ls-timer-value {
    display: block;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffb366;
}

.h5ls8km-prize-amount {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #e1e1e1;
}

.h5ls8km-prize-amount strong {
    color: #ffffff;
}

.v7km3ls-participate-btn {
    margin-top: auto;
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffb14d 0%, #ff8a00 100%);
    color: #111111 !important;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(255, 138, 0, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v7km3ls-participate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 138, 0, 0.34);
    color: #111111 !important;
}

@media (max-width: 1199px) {
    .t8ms4kl-tournaments-wrapper .row.n5km9ls-tournaments-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .w8km2ls-tournament-title {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .t8ms4kl-tournaments-wrapper {
        padding: 56px 0;
    }

    .t8ms4kl-tournaments-wrapper .row.n5km9ls-tournaments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .m3ls7kp-tournament-card .card-body {
        padding: 22px 20px;
    }

    .w8km2ls-tournament-title {
        font-size: 22px;
    }

    .m3ls7kp-tournament-card .card-text,
    .h5ls8km-prize-amount {
        font-size: 15px;
    }

    .t9km4ls-timer-value {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .t8ms4kl-tournaments-wrapper {
        padding: 44px 0;
    }

    .t8ms4kl-tournaments-wrapper .row.n5km9ls-tournaments-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .m3ls7kp-tournament-card {
        border-radius: 20px;
    }

    .m3ls7kp-tournament-card .card-body {
        padding: 20px 16px;
    }

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

    .m3ls7kp-tournament-card .card-text,
    .h5ls8km-prize-amount {
        font-size: 14px;
        line-height: 1.65;
    }

    .p4ls9km-timer-wrapper {
        padding: 14px;
        border-radius: 16px;
    }

    .t9km4ls-timer-value {
        font-size: 20px;
    }

    .v7km3ls-participate-btn {
        width: 100%;
        min-height: 46px;
        font-size: 14px;
    }
}