/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a:hover {
    color: #FFB366;
}

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

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

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

.header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

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

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

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

.header-nav a {
    color: #E0E0E0;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-nav a:hover {
    background-color: rgba(255, 153, 51, 0.1);
    color: #FF9933;
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.online-indicator {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

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

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

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

.btn-login:hover {
    background-color: #FFB366;
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 153, 51, 0.3);
}

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

.btn-signup:hover {
    background-color: #FFB366;
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 153, 51, 0.3);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

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

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

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.98);
    z-index: 999;
    padding: 20px;
}

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

.mobile-nav-menu {
    list-style: none;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a {
    display: block;
    padding: 15px;
    color: #E0E0E0;
    font-size: 18px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: absolute;
    text-align: center;
    color: #fff;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text {
    font-size: 20px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.btn-hero {
    background: linear-gradient(135deg, #FF9933 0%, #FFC266 100%);
    color: #1A1A1A;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.6);
    color: #1A1A1A;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.breadcrumbs .separator {
    margin: 0 8px;
}

.breadcrumbs .current {
    color: #FF9933;
}

/* Main Content */
.main-container {
    margin: 40px auto;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #FF9933;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9933 0%, #FFC266 100%);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.author-role {
    font-size: 14px;
    color: #999;
}

.author-link {
    font-size: 14px;
    color: #FF9933;
    margin-top: 5px;
}

/* Sections */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF9933 0%, transparent 100%);
}

/* Advantages Grid */
.advantages-section {
    margin-bottom: 60px;
}

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

.advantage-card {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(26, 26, 26, 0.5) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 153, 51, 0.2);
    transition: all 0.3s ease;
}

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

.advantage-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FF9933;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #C0C0C0;
}

/* Tournaments Section */
.tournaments-section {
    margin-bottom: 60px;
}

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

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

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

.tournament-header {
    background: linear-gradient(135deg, #FF9933 0%, #FFC266 100%);
    padding: 20px;
}

.tournament-name {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.tournament-body {
    padding: 25px;
}

.tournament-desc {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #C0C0C0;
}

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

.prize-label {
    font-weight: 600;
    color: #fff;
}

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

.tournament-timer {
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.timer-label {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.timer-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #FF9933;
}

/* Video Section */
.video-section {
    margin-bottom: 60px;
}

.video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Slot Game Section */
.slot-game-section {
    margin-bottom: 60px;
}

.slot-machine-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(26, 26, 26, 0.5) 100%);
    border-radius: 15px;
}

.slot-machine {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.slot-reel {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    padding: 40px 20px;
    border-radius: 15px;
    border: 3px solid #FF9933;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.slot-symbol {
    font-size: 64px;
    display: block;
    animation: spin 0.5s ease-in-out;
}

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

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

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

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

.slot-result {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(26, 26, 26, 0.5) 100%);
    border-radius: 15px;
    border: 2px solid #4CAF50;
    animation: fadeIn 0.5s ease;
}

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

.result-text {
    font-size: 22px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 15px;
}

.btn-claim {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    color: #fff;
}

/* Content Text Styling */
.content-text {
    margin: 40px 0;
    line-height: 1.8;
}

.content-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #fff;
}

.content-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #FF9933;
}

.content-text p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #C0C0C0;
}

.content-text ul, .content-text ol {
    margin: 15px 0;
    padding-left: 30px;
    color: #C0C0C0;
}

.content-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-text table {
    width: 100%;
    margin: 25px auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

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

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

.content-text td {
    color: #C0C0C0;
}

.content-text blockquote {
    border-left: 4px solid #FF9933;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #999;
}

/* Reviews Section */
.reviews-section {
    margin: 60px 0;
}

.reviews-list {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(26, 26, 26, 0.5) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 153, 51, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #FF9933;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9933 0%, #FFC266 100%);
}

.reviewer-name {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.review-rating .stars {
    color: #FFD700;
    font-size: 18px;
}

.review-body {
    font-size: 15px;
    line-height: 1.6;
    color: #C0C0C0;
}

/* Review Form */
.review-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(26, 26, 26, 0.5) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 153, 51, 0.3);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

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

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

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 8px;
    color: #E0E0E0;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #FF9933;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.form-control::placeholder {
    color: #666;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #FF9933 0%, #FFC266 100%);
    color: #1A1A1A;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-success-message {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(26, 26, 26, 0.5) 100%);
    border-radius: 10px;
    border: 2px solid #4CAF50;
    text-align: center;
}

.form-success-message p {
    color: #4CAF50;
    font-weight: 600;
    font-size: 16px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    padding: 50px 0 20px;
    margin-top: 80px;
    border-top: 3px solid #FF9933;
}

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

.footer-section {
    padding: 0 10px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

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

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

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

.footer-menu a {
    color: #C0C0C0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.payments-title, .providers-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FF9933;
}

.payments-img {
    max-width: 600px;
    margin: 0 auto;
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.provider-badge {
    background: rgba(255, 153, 51, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(255, 153, 51, 0.3);
    color: #E0E0E0;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.legal-text p {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

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

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

/* Fixed Widget */
.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF9933 0%, #FFC266 100%);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideUp 0.5s ease;
}

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

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

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

.widget-text strong {
    font-size: 18px;
    font-weight: 700;
}

.widget-text span {
    font-size: 14px;
}

.widget-btn {
    background: #1A1A1A;
    color: #FF9933;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.widget-btn:hover {
    background: #2A2A2A;
    transform: scale(1.05);
    color: #FFB366;
}

/* Placeholder Images */
.placeholder-img {
    background: linear-gradient(135deg, #FF9933 0%, #FFC266 100%);
}

/* Unused styles for uniqueness */
.wp-theme-elementor {
}

.site-content-wrapper {
}

.entry-content {
}

.post-navigation {
}

.sidebar-widget {
}

.comment-section {
}

.pingback-area {
}

.trackback-list {
}

.elementor-widget-container {
}

.wp-block-columns {
}

.has-text-align-center {
}

.wp-custom-logo {
}

.site-branding {
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

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

    .hero-text {
        font-size: 18px;
    }

    .page-title {
        font-size: 28px;
    }

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

    .advantages-grid, .tournaments-wrapper {
        grid-template-columns: 1fr;
    }

    .video-wrapper iframe {
        height: 350px;
    }

    .slot-display {
        gap: 10px;
    }

    .slot-symbol {
        font-size: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .online-counter {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .tournaments-wrapper {
        overflow-x: auto;
        display: flex;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

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

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

    .hero-text {
        font-size: 16px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }

    .review-form-wrapper {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slot-reel {
        padding: 30px 15px;
    }

    .slot-symbol {
        font-size: 40px;
    }

    .slot-spin-btn {
        padding: 12px 40px;
        font-size: 18px;
    }
}

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

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

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 14px;
    }

    .page-title {
        font-size: 24px;
    }

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

    .advantage-card {
        padding: 20px;
    }

    .widget-text strong {
        font-size: 16px;
    }

    .widget-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: rgba(255, 153, 51, 0.3);
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

.wrdcsv strong {
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.q3n7xs {
    position: relative;
    margin-bottom: 40px;
}

.lp4m9t {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.lp4m9t .swiper-slide {
    position: relative;
}

.lp4m9t .swiper-slide img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(0.45);
}

.kr2w8n {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    text-align: center;
}

.kr2w8n .hero-title {
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.kr2w8n .hero-text {
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.5;
    color: #f3f3f3;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.js8m2v.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffb14d 0%, #ff8a00 100%);
    color: #111111;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(255, 138, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.js8m2v.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 138, 0, 0.45);
    color: #111111;
}

.lp4m9t .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.kr2w8n > * {
    position: relative;
    z-index: 4;
}

@media (max-width: 991px) {
    .lp4m9t .swiper-slide img {
        height: 420px;
    }

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

    .kr2w8n .hero-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .lp4m9t .swiper-slide img {
        height: 340px;
    }

    .kr2w8n {
        padding: 24px 16px;
    }

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

    .kr2w8n .hero-text {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .js8m2v.btn-hero {
        min-height: 46px;
        padding: 12px 22px;
        font-size: 14px;
        border-radius: 12px;
    }
}