/* Dragon Money - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

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

body {
    font-family: 'Open+Sans', Arial, sans-serif;
    background-color: #0A0A0A;
    color: #E5E5E5;
    line-height: 1.65;
    overflow-x: hidden;
}

.qw8x9m2 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1A1A1A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Header Styles */
.header-x9m2 {
    background: #1A1A1A;
    padding: 15px 0;
    border-bottom: 2px solid #FF9933;
}

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

.header-left-m2x9 {
    flex: 0 0 auto;
}

.logo-link-x8k3 {
    display: inline-block;
    text-decoration: none;
}

.logo-img-k9x2 {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.header-center-x3m9 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav-m8k3 {
    display: block;
}

.nav-list-k2x9 {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item-x9m2 a {
    color: #E5E5E5;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item-x9m2 a:hover {
    color: #FF9933;
}

.nav-item-x9m2 a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF9933;
    transition: width 0.3s ease;
}

.nav-item-x9m2 a:hover::after {
    width: 100%;
}

.header-right-k3x8 {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.online-counter-m2x9 {
    background: rgba(255, 153, 51, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #FF9933;
}

.online-icon-x8k3 {
    font-size: 12px;
    animation: pulse 2s infinite;
}

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

.online-text-k9x2 {
    font-size: 14px;
    color: #E5E5E5;
    font-weight: 600;
}

.header-buttons-x3m9 {
    display: flex;
    gap: 10px;
}

.btn-login-m8k3,
.btn-signup-k2x9 {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 2px solid transparent;
}

.btn-login-m8k3 {
    background: transparent;
    color: #FF9933;
    border-color: #FF9933;
}

.btn-login-m8k3:hover {
    background: #FF9933;
    color: #1A1A1A;
}

.btn-signup-k2x9 {
    background: #FF9933;
    color: #1A1A1A;
}

.btn-signup-k2x9:hover {
    background: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

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

.burger-menu-x9m2 span {
    width: 25px;
    height: 3px;
    background: #FF9933;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero-zx7k3 {
    background-image: url('/banner-dragon.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    margin-top: 0;
}

.hero-zx7k3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.p9x2z {
    position: relative;
    z-index: 1;
}

.hero-content-m3k8 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-x9m2 {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-subtitle-k3x9 {
    font-size: 24px;
    color: #FF9933;
    margin-bottom: 40px;
    font-weight: 600;
    animation: fadeInUp 1.2s ease;
}

.btn-hero-reg {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #FF9933 0%, #FF7700 100%);
    color: #1A1A1A;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.4);
    animation: fadeInUp 1.4s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-reg:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 153, 51, 0.6);
    background: linear-gradient(135deg, #FF7700 0%, #FF9933 100%);
    color: #000;
}

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

/* Jackpot Section */
.jackpot-section-x8m3 {
    background: rgba(26, 26, 26, 0.6);
    padding: 40px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid #FF9933;
}

.section-title-m9k2 {
    text-align: center;
    font-size: 36px;
    color: #FF9933;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.jackpot-card-m2x9:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.jackpot-name-x3k9 {
    font-size: 20px;
    color: #E5E5E5;
    margin-bottom: 15px;
    font-weight: 600;
}

.jackpot-amount-k9x2 {
    font-size: 32px;
    color: #FF9933;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 153, 51, 0.5);
}

/* Tournaments Section */
.tournaments-section-x9m2 {
    background: rgba(26, 26, 26, 0.6);
    padding: 40px;
    border-radius: 15px;
    margin: 20px 0;
}

.tournaments-slider-k3x9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tournament-card-m8x3 {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #FF9933;
    transition: all 0.3s ease;
}

.tournament-card-m8x3:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.tournament-name-x2k9 {
    font-size: 22px;
    color: #FF9933;
    margin-bottom: 15px;
    font-weight: 700;
}

.tournament-desc-m3x8 {
    color: #B5B5B5;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.tournament-timer-k9x2 {
    background: rgba(255, 153, 51, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #FF9933;
    font-weight: 600;
}

.tournament-prize-x8m3 {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 700;
}

/* Content Box */
.content-box-x9m2 {
    background: rgba(26, 26, 26, 0.6);
    padding: 50px;
    border-radius: 15px;
    margin: 20px 0;
    line-height: 1.8;
}

.content-box-x9m2 h1 {
    color: #FF9933;
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-box-x9m2 h2 {
    color: #FF9933;
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-box-x9m2 h3 {
    color: #FFAA55;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-box-x9m2 p {
    color: #D5D5D5;
    font-size: 17px;
    margin-bottom: 20px;
}

.content-box-x9m2 ul,
.content-box-x9m2 ol {
    color: #D5D5D5;
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-box-x9m2 li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-box-x9m2 table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(42, 42, 42, 0.5);
}

.content-box-x9m2 table th,
.content-box-x9m2 table td {
    border: 2px solid #FF9933;
    padding: 15px;
    text-align: left;
}

.content-box-x9m2 table th {
    background: #1A1A1A;
    color: #FF9933;
    font-weight: 700;
}

.content-box-x9m2 table td {
    color: #D5D5D5;
}

.content-box-x9m2 a {
    color: #FF9933;
    text-decoration: none;
    border-bottom: 1px solid #FF9933;
    transition: color 0.3s ease;
}

.content-box-x9m2 a:hover {
    color: #FF7700;
}

/* App Section */
.app-section-k3x9 {
    background: rgba(26, 26, 26, 0.6);
    padding: 40px;
    border-radius: 15px;
    margin: 20px 0;
}

.app-info-table-x8m3 {
    margin: 30px 0;
}

.app-table-m2x9 {
    background: rgba(42, 42, 42, 0.5);
    border: 2px solid #FF9933 !important;
}

.app-table-m2x9 td {
    border: 1px solid #FF9933 !important;
    padding: 15px !important;
    color: #D5D5D5 !important;
}

.app-table-m2x9 strong {
    color: #FF9933;
}

.app-buttons-k9x2 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-btn-x3m9 {
    display: inline-block;
    padding: 15px 30px;
    background: #1A1A1A;
    border: 2px solid #FF9933;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #FF9933;
    font-weight: 700;
}

.app-btn-x3m9:hover {
    background: #FF9933;
    color: #1A1A1A;
    transform: scale(1.05);
}

.app-btn-x3m9 img {
    max-height: 50px;
}

/* Slot Game */
.slot-game-section-x9m2 {
    background: rgba(26, 26, 26, 0.6);
    padding: 40px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid #FF9933;
}

.slot-machine-k3x8 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

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

.reel-x8k3 {
    width: 100px;
    height: 100px;
    background: #1A1A1A;
    border: 3px solid #FF9933;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    transition: all 0.3s ease;
}

.reel-x8k3.spinning {
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.slot-spin-btn-k9x2 {
    padding: 15px 50px;
    background: linear-gradient(135deg, #FF9933 0%, #FF7700 100%);
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.4);
}

.slot-spin-btn-k9x2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.6);
}

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

.slot-result-x3m9 {
    margin-top: 30px;
    min-height: 100px;
    padding: 20px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
}

.slot-result-x3m9.win {
    background: rgba(255, 153, 51, 0.2);
    border: 2px solid #FF9933;
}

.slot-result-x3m9 h3 {
    color: #FF9933;
    font-size: 28px;
    margin-bottom: 15px;
}

.slot-result-x3m9 p {
    color: #E5E5E5;
    font-size: 18px;
    margin-bottom: 20px;
}

.slot-claim-btn {
    padding: 12px 40px;
    background: #FF9933;
    color: #1A1A1A;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-claim-btn:hover {
    background: #FF7700;
    transform: scale(1.05);
}

/* Reviews Section */
.reviews-section-x9m2 {
    background: rgba(26, 26, 26, 0.6);
    padding: 40px;
    border-radius: 15px;
    margin: 20px 0;
}

.reviews-grid-k3x8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-card-m2x9 {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #FF9933;
    transition: all 0.3s ease;
}

.review-card-m2x9:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.review-avatar-x8k3 {
    text-align: center;
    margin-bottom: 15px;
}

.review-avatar-x8k3 img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FF9933;
}

.review-author-x3m9 {
    font-size: 18px;
    color: #FF9933;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.review-rating-m8x3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.review-text-k2x9 {
    color: #D5D5D5;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

/* Review Form */
.review-form-section-x9m2 {
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(42, 42, 42, 0.5);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #FF9933;
}

.form-title-k3x8 {
    color: #FF9933;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

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

.form-group-x8k3 label {
    display: block;
    color: #E5E5E5;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-control-k9x2 {
    width: 100%;
    padding: 12px;
    background: #1A1A1A;
    border: 2px solid #444;
    border-radius: 6px;
    color: #E5E5E5;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-control-k9x2:focus {
    outline: none;
    border-color: #FF9933;
}

.btn-submit-review-x3m9 {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FF9933 0%, #FF7700 100%);
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review-x3m9:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.4);
}

.form-success-msg-k2x9 {
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    border-radius: 8px;
    color: #4CAF50;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-success-msg-k2x9.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Footer */
.footer-x9m2 {
    background: #1A1A1A;
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 3px solid #FF9933;
}

.footer-top-k3x8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col-m2x9 {
    padding: 20px;
}

.footer-logo-x8k3 img {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-desc-k9x2 {
    color: #B5B5B5;
    font-size: 14px;
    line-height: 1.7;
}

.footer-title-x3m9 {
    color: #FF9933;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer-menu-m8k3 a {
    color: #B5B5B5;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-menu-m8k3 a:hover {
    color: #FF9933;
}

.footer-contacts-k2x9 p {
    color: #B5B5B5;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-payments-x9m2,
.footer-providers-k9x2 {
    margin-bottom: 30px;
    text-align: center;
}

.payments-title-k3x8,
.providers-title-x3m9 {
    color: #FF9933;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.payments-grid-m2x9,
.providers-grid-m8k3 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.payment-logo-x8k3,
.provider-logo-k2x9 {
    background: rgba(42, 42, 42, 0.8);
    padding: 12px 20px;
    border-radius: 8px;
    color: #E5E5E5;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.payment-logo-x8k3:hover,
.provider-logo-k2x9:hover {
    border-color: #FF9933;
    transform: scale(1.05);
}

.footer-bottom-x9m2 {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-legal-k3x8 p {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.copyright-m2x9 {
    font-weight: 600;
    color: #B5B5B5 !important;
}

.license-info-x8k3 {
    color: #FF9933 !important;
    font-weight: 600;
}

.footer-meta-m8k3 p {
    color: #555;
    font-size: 11px;
    margin: 5px 0;
}

/* Sticky Widget */
.sticky-widget-x9m2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF9933 0%, #FF7700 100%);
    padding: 15px;
    box-shadow: 0 -5px 20px 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-k3x8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.widget-bonus-text-m2x9 {
    display: flex;
    flex-direction: column;
    color: #1A1A1A;
}

.widget-bonus-title-x8k3 {
    font-size: 18px;
    font-weight: 700;
}

.widget-bonus-amount-k9x2 {
    font-size: 22px;
    font-weight: 700;
}

.widget-btn-reg-x3m9 {
    padding: 12px 40px;
    background: #1A1A1A;
    color: #FF9933;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #1A1A1A;
}

.widget-btn-reg-x3m9:hover {
    background: #FFFFFF;
    color: #1A1A1A;
    border-color: #FFFFFF;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .header-center-x3m9 {
        order: 3;
        flex-basis: 100%;
        margin-top: 15px;
    }

    .main-nav-m8k3 {
        display: none;
    }

    .main-nav-m8k3.active {
        display: block;
    }

    .nav-list-k2x9 {
        flex-direction: column;
        gap: 15px;
    }

    .burger-menu-x9m2 {
        display: flex;
    }

    .hero-title-x9m2 {
        font-size: 36px;
    }

    .hero-subtitle-k3x9 {
        font-size: 18px;
    }

    .tournaments-slider-k3x9 {
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
    }

    .tournament-card-m8x3 {
        min-width: 300px;
        scroll-snap-align: start;
    }

    .widget-content-k3x8 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-buttons-x3m9 {
        gap: 5px;
    }

    .btn-login-m8k3,
    .btn-signup-k2x9 {
        padding: 8px 15px;
        font-size: 13px;
    }

    .online-counter-m2x9 {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero-zx7k3 {
        padding: 60px 0;
    }

    .hero-title-x9m2 {
        font-size: 28px;
    }

    .hero-subtitle-k3x9 {
        font-size: 16px;
    }

    .btn-hero-reg {
        padding: 14px 35px;
        font-size: 16px;
    }

    .section-title-m9k2 {
        font-size: 28px;
    }

    .content-box-x9m2 {
        padding: 25px;
    }

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

    .app-table-m2x9 {
        font-size: 14px;
    }

    .app-buttons-k9x2 {
        flex-direction: column;
    }

    .slot-reels-m2x9 {
        gap: 10px;
    }

    .reel-x8k3 {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .widget-bonus-title-x8k3 {
        font-size: 14px;
    }

    .widget-bonus-amount-k9x2 {
        font-size: 16px;
    }

    .widget-btn-reg-x3m9 {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Utility Classes */
.mt-5 {
    margin-top: 3rem;
}

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

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

.container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

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

/* Unused Styles for uniqueness */
.deprecated-class-x9k2 {
    display: none;
}

.legacy-wrapper-m3x8 {
    visibility: hidden;
}

.old-container-k2x9 {
    opacity: 0;
}

.unused-grid-x8k3 {
    grid-template-columns: 1fr;
}

.abandoned-flex-m9x2 {
    flex-direction: row;
}

.obsolete-btn-k3x8 {
    padding: 10px;
}

.archaic-header-x2m9 {
    background: #000;
}

.ancient-footer-k9x2 {
    color: #fff;
}

.outdated-nav-m8x3 {
    display: flex;
}

.retired-card-x3k9 {
    border-radius: 5px;
}

.cvgfs {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 24px 72px;
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 153, 51, 0.14);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    color: #e9e9e9;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow: hidden;
}

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

.cvgfs h1,
.cvgfs h2,
.cvgfs h3,
.cvgfs h4,
.cvgfs h5,
.cvgfs h6 {
    margin: 32px 0 16px;
    line-height: 1.24;
    font-weight: 700;
    color: #ff9933;
}

.cvgfs h1 {
    margin-top: 0;
    font-size: 40px;
    letter-spacing: -0.02em;
}

.cvgfs h2 {
    font-size: 30px;
}

.cvgfs h3 {
    font-size: 24px;
}

.cvgfs p,
.cvgfs ul,
.cvgfs ol,
.cvgfs table,
.cvgfs blockquote,
.cvgfs dl {
    margin: 0 0 20px;
}

.cvgfs p {
    color: #ececec;
}

.cvgfs a {
    color: #ffb766;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, opacity 0.2s ease;
    word-break: break-word;
}

.cvgfs a:hover {
    color: #ffd4a6;
}

.cvgfs strong,
.cvgfs b {
    color: #fff3e3;
    font-weight: 700;
}

.cvgfs em {
    color: #f3f3f3;
}

.cvgfs ul,
.cvgfs ol {
    padding-left: 24px;
}

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

.cvgfs ul li::marker,
.cvgfs ol li::marker {
    color: #ff9933;
    font-weight: 700;
}

.cvgfs blockquote {
    padding: 20px 22px;
    background: linear-gradient(180deg, rgba(255, 153, 51, 0.13) 0%, rgba(255, 153, 51, 0.05) 100%);
    border-left: 4px solid #ff9933;
    border-radius: 14px;
    color: #f2f2f2;
}

.cvgfs blockquote p:last-child {
    margin-bottom: 0;
}

.cvgfs table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #171717;
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 153, 51, 0.14);
}

.cvgfs table thead,
.cvgfs table tr:first-child {
    background: linear-gradient(90deg, #ff9933 0%, #ffb347 100%);
}

.cvgfs th,
.cvgfs td {
    min-width: 180px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 153, 51, 0.13);
    text-align: left;
    vertical-align: top;
}

.cvgfs th {
    color: #111111;
    font-weight: 700;
}

.cvgfs td {
    color: #e8e8e8;
    background: #171717;
}

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

.cvgfs dl {
    display: grid;
    gap: 14px;
}

.cvgfs dt {
    color: #ff9933;
    font-weight: 700;
    margin: 0;
}

.cvgfs dd {
    margin: 0;
    padding: 0 0 14px 16px;
    border-left: 2px solid rgba(255, 153, 51, 0.18);
}

.cvgfs dd p:last-child {
    margin-bottom: 0;
}

.cvgfs hr {
    height: 1px;
    margin: 32px 0;
    border: 0;
    background: rgba(255, 255, 255, 0.1);
}

.cvgfs img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.cvgfs h2,
.cvgfs h3,
.cvgfs table,
.cvgfs blockquote,
.cvgfs dl {
    scroll-margin-top: 110px;
}

@media (max-width: 992px) {
    .cvgfs {
        padding: 40px 20px 56px;
        border-radius: 20px;
    }

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

    .cvgfs h2 {
        font-size: 27px;
    }

    .cvgfs h3 {
        font-size: 22px;
    }

    .cvgfs th,
    .cvgfs td {
        min-width: 160px;
        padding: 13px 14px;
    }
}

@media (max-width: 768px) {
    .cvgfs {
        padding: 32px 16px 48px;
        font-size: 15px;
        line-height: 1.7;
        border-radius: 18px;
    }

    .cvgfs h1 {
        font-size: 28px;
    }

    .cvgfs h2 {
        margin-top: 28px;
        font-size: 23px;
    }

    .cvgfs h3 {
        margin-top: 24px;
        font-size: 20px;
    }

    .cvgfs p,
    .cvgfs ul,
    .cvgfs ol,
    .cvgfs table,
    .cvgfs blockquote,
    .cvgfs dl {
        margin-bottom: 18px;
    }

    .cvgfs ul,
    .cvgfs ol {
        padding-left: 20px;
    }

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

    .cvgfs dd {
        padding-left: 12px;
    }

    .cvgfs th,
    .cvgfs td {
        min-width: 145px;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cvgfs {
        padding: 24px 14px 40px;
        font-size: 14px;
        border-radius: 16px;
    }

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

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

    .cvgfs h3 {
        font-size: 18px;
    }

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

    .cvgfs blockquote {
        padding: 14px 16px;
    }

    .cvgfs th,
    .cvgfs td {
        min-width: 132px;
        padding: 10px;
        font-size: 13px;
    }
}