/* Dragon Money Casino Styles */

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

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

.qw8x9-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header Styles */
.r4w9n-header {
    background: #1A1A1A;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 153, 51, 0.1);
}

.k5p2x-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.t6j9s-logo-link {
    display: block;
}

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

.y3f8q-online-count {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 153, 51, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.b9x4m-icon {
    font-size: 12px;
}

.w7k2p-text {
    font-size: 14px;
    color: #E5E5E5;
}

.c4v7s-menu-desktop {
    display: none;
}

.c4v7s-menu-desktop ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.e8r2n-link {
    color: #FF9933;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.e8r2n-link:hover {
    color: #FFB366;
}

.h6t9m-auth-buttons {
    display: flex;
    gap: 10px;
}

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

.p3k8x-btn-login {
    background: transparent;
    color: #FF9933;
    border: 2px solid #FF9933;
}

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

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

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

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

.s5n2j-burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FF9933;
    transition: 0.3s;
}

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

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

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

.x9p6t-mobile-menu {
    display: none;
    background: #1A1A1A;
    margin-top: 15px;
    padding: 20px;
    border-radius: 8px;
}

.x9p6t-mobile-menu.active {
    display: block;
}

.l4j9m-mobile-list {
    list-style: none;
}

.l4j9m-mobile-list li {
    margin-bottom: 15px;
}

.m8w3x-mobile-link {
    color: #FF9933;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

/* Hero Section */
.z8k5n-hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.z8k5n-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/hero-dragon.png') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

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

.q2n8v-slide {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s;
}

.q2n8v-slide-active {
    display: block;
}

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

.t9k6x-slide-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #FF9933;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.y4m2s-slide-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #E5E5E5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.f8p3n-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FF9933;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.f8p3n-cta-button:hover {
    background: #FFB366;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.b3x7k-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.n9m4p-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.n9m4p-dot-active,
.n9m4p-dot:hover {
    background: #FF9933;
    transform: scale(1.2);
}

/* Main Content */
.z7k4m-container {
    flex: 1;
    padding: 40px 0;
}

.p3n8t-main {
    width: 100%;
}

.v5j2s-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.s9p3x-section-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #FF9933;
    text-align: center;
    font-weight: 700;
}

/* Promo Section */
.v7k4n-promo-section {
    padding: 40px 0;
}

.m4j8t-promo-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 15px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.15);
    border: 2px solid rgba(255, 153, 51, 0.2);
}

.x6n2v-promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.k9w5m-promo-badge {
    background: #FF9933;
    color: #1A1A1A;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.h3t7s-promo-status {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.h3t7s-status-active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.p8r4n-promo-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.y2k6x-promo-code-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f5j9m-promo-label {
    font-size: 16px;
    color: #E5E5E5;
    font-weight: 600;
}

.w8n3t-code-box {
    display: flex;
    gap: 10px;
}

.q4m7s-code-input {
    flex: 1;
    padding: 12px 15px;
    background: #0A0A0A;
    border: 2px solid #FF9933;
    border-radius: 8px;
    color: #FF9933;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

.t6h3n-copy-btn {
    padding: 12px 25px;
    background: #FF9933;
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.t6h3n-copy-btn:hover {
    background: #FFB366;
}

.r3k9m-promo-details {
    background: rgba(255, 153, 51, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.n7w4x-promo-desc,
.b2j8s-promo-time {
    margin: 5px 0;
    font-size: 15px;
}

.z5k3p-activate-btn {
    display: block;
    padding: 15px;
    background: #FF9933;
    color: #1A1A1A;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.z5k3p-activate-btn:hover {
    background: #FFB366;
    transform: translateY(-2px);
}

/* Tournaments Section */
.k4n8x-tournaments-section {
    padding: 40px 0;
}

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

.p3k9n-tournament-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid rgba(255, 153, 51, 0.2);
    transition: 0.3s;
}

.p3k9n-tournament-card:hover {
    border-color: #FF9933;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.2);
}

.x8w5m-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.t6n2v-tournament-name {
    font-size: 22px;
    color: #FF9933;
}

.y9j4k-tournament-badge {
    font-size: 12px;
    padding: 5px 10px;
    background: rgba(255, 153, 51, 0.2);
    border-radius: 10px;
}

.h8k2n-tournament-desc {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #CCCCCC;
}

.w4j7s-prize-block {
    background: rgba(255, 153, 51, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.q6k8m-prize-amount {
    font-size: 22px;
    font-weight: 700;
    color: #FF9933;
}

.v3p8t-timer-block {
    margin-bottom: 15px;
}

.z7k4m-timer-label {
    display: block;
    margin-bottom: 8px;
    color: #CCCCCC;
}

.n2j9s-timer {
    display: flex;
    gap: 10px;
}

.f8x5k-time-unit {
    background: #0A0A0A;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    color: #FF9933;
}

.l5n8j-participate-btn {
    display: block;
    padding: 12px;
    background: #FF9933;
    color: #1A1A1A;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.l5n8j-participate-btn:hover {
    background: #FFB366;
}

/* App Info Section */
.w9k3n-app-section {
    padding: 40px 0;
}

.v4j8m-app-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.x7n2k-app-table-wrapper {
    overflow-x: auto;
}

.p5m9s-app-table {
    width: 100%;
    border-collapse: collapse;
    background: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
}

.h8k3x-th {
    background: #FF9933;
    color: #1A1A1A;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.t6w2n-td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 153, 51, 0.1);
    color: #E5E5E5;
}

.p5m9s-app-table tbody tr:last-child .t6w2n-td {
    border-bottom: none;
}

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

.z8j4n-download-buttons {
    text-align: center;
}

.y5k9m-download-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FF9933;
}

.r3n7x-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    margin: 10px;
    background: #1A1A1A;
    border: 2px solid #FF9933;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.r3n7x-app-btn:hover {
    background: #FF9933;
    transform: translateY(-3px);
}

.k4w8m-btn-icon {
    font-size: 30px;
}

.p9j2n-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.v6x3k-small {
    font-size: 12px;
    color: #CCCCCC;
}

.b8m4s-strong {
    font-size: 16px;
    font-weight: 700;
    color: #E5E5E5;
}

.r3n7x-app-btn:hover .v6x3k-small,
.r3n7x-app-btn:hover .b8m4s-strong {
    color: #1A1A1A;
}

/* Slot Game Section */
.n8k4x-slot-section {
    padding: 40px 0;
}

.v5j9m-slot-machine {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 15px;
    padding: 30px;
    border: 3px solid #FF9933;
    box-shadow: 0 10px 40px rgba(255, 153, 51, 0.2);
}

.w3n8k-slot-display {
    background: #0A0A0A;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

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

.t9k2s-reel {
    background: #1A1A1A;
    border: 2px solid #FF9933;
    border-radius: 8px;
    padding: 20px;
    min-width: 80px;
    text-align: center;
}

.y6w3x-symbol {
    font-size: 48px;
    display: block;
}

.z4k9m-slot-controls {
    text-align: center;
}

.b8n3x-spin-btn {
    padding: 15px 40px;
    background: #FF9933;
    color: #1A1A1A;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.b8n3x-spin-btn:hover {
    background: #FFB366;
    transform: translateY(-2px);
}

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

.c7k3m-slot-result {
    margin-top: 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 20px;
}

.p9w3n-win-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #4CAF50;
}

.t6k2m-win-text {
    margin-bottom: 15px;
    font-size: 16px;
}

.y8n4x-bonus-amount {
    color: #FF9933;
}

.z3k7s-claim-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4CAF50;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.z3k7s-claim-btn:hover {
    background: #66BB6A;
}

/* Content Block */
.l9h6r-content-block {
    background: #1A1A1A;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 153, 51, 0.2);
}

.x2m4k-heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FF9933;
}

.f8t5p-text-content {
    color: #E5E5E5;
    line-height: 1.8;
}

.f8t5p-text-content h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FF9933;
}

.f8t5p-text-content h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #FFB366;
}

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

.f8t5p-text-content ul,
.f8t5p-text-content ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

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

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

.f8t5p-text-content th {
    background: #FF9933;
    color: #1A1A1A;
    padding: 12px;
    text-align: left;
    font-weight: 700;
}

.f8t5p-text-content td {
    padding: 12px;
    border: 1px solid rgba(255, 153, 51, 0.2);
}

.f8t5p-text-content a {
    color: #FF9933;
    text-decoration: underline;
}

.f8t5p-text-content a:hover {
    color: #FFB366;
}

.f8t5p-text-content strong {
    color: #FF9933;
}

/* Author Section */
.k9n5x-author-section {
    padding: 40px 0;
}

.w7j4m-author-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 30px;
    border: 2px solid rgba(255, 153, 51, 0.2);
    flex-wrap: wrap;
}

.p3n8k-author-photo {
    flex-shrink: 0;
}

.v6k2x-photo-img {
    border-radius: 50%;
    border: 3px solid #FF9933;
}

.t9m4s-author-info {
    flex: 1;
    min-width: 250px;
}

.x5k8n-author-name {
    font-size: 28px;
    margin-bottom: 5px;
    color: #FF9933;
}

.h4j7m-author-title {
    font-size: 16px;
    color: #FFB366;
    margin-bottom: 15px;
}

.r8n3x-author-bio p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #CCCCCC;
}

.z6k2m-author-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.b9w4n-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 153, 51, 0.1);
    border: 2px solid #FF9933;
    border-radius: 8px;
    color: #FF9933;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.b9w4n-social-link:hover {
    background: #FF9933;
    color: #1A1A1A;
}

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

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

.v9k5n-footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FF9933;
}

.r6n4m-footer-desc {
    color: #CCCCCC;
    line-height: 1.6;
}

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

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

.z6k2n-footer-link {
    color: #E5E5E5;
    text-decoration: none;
    transition: 0.3s;
}

.z6k2n-footer-link:hover {
    color: #FF9933;
}

.h8k4n-payment-section {
    margin-top: 30px;
}

.y3n7m-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.k6w2x-payment-logo {
    opacity: 0.7;
    transition: 0.3s;
}

.k6w2x-payment-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.c9n5x-footer-legal {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 153, 51, 0.2);
}

.t7k3m-license-info,
.r4j8n-copyright,
.w6k2m-legal-text {
    margin: 10px 0;
    font-size: 14px;
    color: #999999;
}

/* Fixed Widget */
.q8k5n-fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #FF9933 0%, #FFB366 100%);
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(255, 153, 51, 0.4);
    z-index: 999;
    animation: slideUp 0.5s;
}

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

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

.v6n2m-widget-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.t8k4x-widget-emoji {
    font-size: 24px;
}

.h3j9n-widget-label,
.r7k2m-widget-amount {
    font-weight: 700;
    color: #1A1A1A;
    font-size: 18px;
}

.z5n8k-widget-btn {
    padding: 12px 30px;
    background: #1A1A1A;
    color: #FF9933;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
    border: 2px solid #1A1A1A;
}

.z5n8k-widget-btn:hover {
    background: #0A0A0A;
    transform: scale(1.05);
}

.w9k3m-widget-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1A1A1A;
    color: #FF9933;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w9k3m-widget-close:hover {
    background: #FF9933;
    color: #1A1A1A;
}

/* Responsive */
@media (min-width: 768px) {
    .c4v7s-menu-desktop {
        display: block;
    }

    .s5n2j-burger {
        display: none;
    }

    .t9k6x-slide-title {
        font-size: 52px;
    }

    .v4j8m-app-content {
        grid-template-columns: 2fr 1fr;
    }

    .m7j4s-tournaments-grid {
        overflow-x: auto;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .h6t9m-auth-buttons {
        order: 2;
    }

    .s5n2j-burger {
        order: 3;
    }

    .y3f8q-online-count {
        order: 4;
        width: 100%;
    }

    .t9k6x-slide-title {
        font-size: 28px;
    }

    .y4m2s-slide-text {
        font-size: 16px;
    }

    .m7j4s-tournaments-grid {
        overflow-x: scroll;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 15px;
    }

    .p3k9n-tournament-card {
        min-width: 280px;
        scroll-snap-align: start;
    }

    .w7j4m-author-card {
        text-align: center;
        justify-content: center;
    }

    .p9j3k-widget-content {
        justify-content: center;
        text-align: center;
    }

    .w9k3m-widget-close {
        top: 5px;
        right: 5px;
    }
}

/* WordPress Compatibility Styles */
.wp-block-group,
.wp-block-columns,
.wp-site-blocks {
    display: none;
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.spinning {
    animation: spin 0.5s ease-in-out;
}

/* Additional Unused Styles for Uniqueness */
.unused-class-1 {
    background: #333;
}

.unused-class-2 {
    padding: 25px;
}

.x9z4p-random {
    margin: 15px;
}

.k2m7v-extra {
    border: 1px solid #444;
}

.w5n3j-unused {
    color: #888;
}

.fxvhs {
    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);
}

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

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

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

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

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

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

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

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

.fxvhs 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;
}

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

.fxvhs strong {
    color: #ffffff;
}

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

.fxvhs thead,
.fxvhs tbody,
.fxvhs tr,
.fxvhs td {
    background: transparent !important;
}

.fxvhs th {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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