:root {
    --color-primary: #450b17;
    --color-secondary: #c7051d;
    --color-accent: #e0e0e0;
    --color-bg: #110d0e;
    --color-text: #f5f5f5;
    --color-text-muted: #b8b8b8;
    --font-main: 'Manrope', sans-serif;
    --transition: all 0.3s ease;
}

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

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

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

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

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

.header-main {
    background: linear-gradient(135deg, var(--color-primary) 0%, #5a0e1e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
}

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

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.nav-link:hover {
    color: var(--color-secondary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

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

.online-icon {
    font-size: 10px;
}

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

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background-color: var(--color-accent);
    color: #1a1a1a;
}

.btn-login:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.btn-signup {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-signup:hover {
    background-color: #e00720;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 5, 29, 0.4);
}

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

.burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

.hero-section {
    background: url('/banner.jpg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.85), rgba(17, 13, 14, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--color-accent);
}

.btn-hero {
    background: var(--color-secondary);
    color: #fff;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(199, 5, 29, 0.5);
}

.btn-hero:hover {
    background: #e00720;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(199, 5, 29, 0.6);
}

.breadcrumbs-wrapper {
    margin: 30px 0;
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--color-accent);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--color-secondary);
}

.breadcrumb-item.active {
    color: var(--color-text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    margin-right: 10px;
    color: var(--color-text-muted);
}

.main-content {
    flex: 1;
}

.section-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.section-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
}

.update-time {
    text-align: center;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 10px;
}

.mirrors-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.mirrors-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.mirrors-table thead th {
    background: var(--color-primary);
    color: var(--color-text);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border: none;
}

.mirrors-table thead th:first-child {
    border-radius: 8px 0 0 8px;
}

.mirrors-table thead th:last-child {
    border-radius: 0 8px 8px 0;
}

.mirrors-table tbody tr {
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.mirrors-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.mirrors-table tbody td {
    padding: 18px 15px;
    border: none;
    color: var(--color-text);
}

.mirror-url {
    font-family: monospace;
    color: var(--color-accent);
    font-weight: 600;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.speed-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.speed-fast {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.speed-normal {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.btn-table {
    background: var(--color-secondary);
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
}

.btn-table:hover {
    background: #e00720;
}

.mirrors-info {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-text {
    margin: 0;
    color: var(--color-text);
    font-size: 14px;
}

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

.tournament-card {
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.3), rgba(199, 5, 29, 0.15));
    border: 2px solid rgba(199, 5, 29, 0.3);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.tournament-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(199, 5, 29, 0.3);
}

.tournament-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-secondary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.tournament-badge-vip {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.tournament-badge-new {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.tournament-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.tournament-desc {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tournament-prize {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.prize-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.prize-amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fbbf24;
}

.tournament-timer {
    margin-bottom: 25px;
}

.timer-label {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-unit {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.timer-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
}

.timer-text {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.btn-tournament {
    width: 100%;
    background: var(--color-secondary);
    color: #fff;
    padding: 14px;
    font-size: 16px;
}

.btn-tournament:hover {
    background: #e00720;
}

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

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-secondary), #fbbf24);
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 40px rgba(199, 5, 29, 0.25);
}

.bonus-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.bonus-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.bonus-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.bonus-desc {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.bonus-features li {
    padding: 8px 0;
    color: var(--color-text);
    font-size: 14px;
}

.btn-bonus {
    width: 100%;
    background: var(--color-secondary);
    color: #fff;
    padding: 14px;
    font-size: 16px;
}

.btn-bonus:hover {
    background: #e00720;
}


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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-game {
    background: var(--color-secondary);
    color: #fff;
    padding: 12px 30px;
}

.btn-game:hover {
    background: #e00720;
}

.game-name {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.game-provider {
    padding: 0 15px 15px;
    color: var(--color-text-muted);
    font-size: 13px;
    margin: 0;
}

.wheel-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.wheel-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto 30px;
}

#wheelCanvas {
    max-width: 100%;
    height: auto;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--color-secondary);
    z-index: 10;
}

.btn-spin {
    background: var(--color-secondary);
    color: #fff;
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 700;
}

.btn-spin:hover {
    background: #e00720;
}

.btn-spin:disabled {
    background: #666;
    cursor: not-allowed;
}

.wheel-result {
    margin-top: 30px;
    padding: 30px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 12px;
}

.result-title {
    font-size: 28px;
    color: #22c55e;
    margin-bottom: 15px;
}

.result-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-claim {
    background: #22c55e;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
}

.btn-claim:hover {
    background: #16a34a;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: var(--font-main);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
    color: var(--color-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer div {
    padding: 0 25px 25px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

/* Text Content */
.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.text-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 35px 0 20px;
    color: #fff;
}

.text-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #fff;
}

.text-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--color-text);
}

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

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

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.text-content table th {
    background: var(--color-primary);
    font-weight: 600;
}

.text-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

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

.footer-main {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3a0a13 100%);
    margin-top: 60px;
    padding: 50px 0 30px;
    border-top: 3px solid var(--color-secondary);
}

.footer-content {
    color: var(--color-text);
}

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

.footer-col-logo {
    grid-column: span 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.footer-license {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-license p {
    margin: 5px 0;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-support-text {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.footer-support-badge {
    margin-top: 15px;
}

.support-status {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.footer-payments,
.footer-providers {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 40px;
    width: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
}

.provider-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.provider-list span {
    font-size: 14px;
    color: var(--color-text-muted);
}

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

.footer-copyright {
    margin-bottom: 20px;
}

.footer-copyright p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 8px 0;
}

.footer-warning {
    color: #fbbf24 !important;
    font-weight: 600;
}

.footer-author {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-author a {
    color: var(--color-secondary);
    text-decoration: none;
}

.footer-author a:hover {
    text-decoration: underline;
}

.author-text {
    margin-bottom: 5px;
}

.author-desc {
    font-size: 12px;
    font-style: italic;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-secondary), #8b0000);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    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;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.widget-icon {
    font-size: 36px;
}

.widget-text {
    flex: 1;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.widget-subtitle {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.btn-widget {
    background: #fff;
    color: var(--color-secondary);
    padding: 12px 35px;
    font-weight: 700;
    font-size: 16px;
}

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

.legacy-wrapper {
    display: none;
}

.deprecated-container {
    visibility: hidden;
}

.old-style-element {
    opacity: 0;
    pointer-events: none;
}

.unused-grid {
    grid-template-columns: none;
}

.hidden-block {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    .header-wrapper {
        grid-template-columns: 1fr auto;
    }

    .header-left {
        gap: 20px;
    }

    .header-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--color-primary);
        padding: 30px;
        transition: var(--transition);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .header-nav.active {
        left: 0;
    }

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

    .burger-btn {
        display: flex;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

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

    .section-block {
        padding: 30px 20px;
    }

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

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

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

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

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

    .header-buttons {
        gap: 8px;
    }

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

    .wheel-wrapper {
        width: 300px;
        height: 300px;
    }

    .mirrors-table {
        font-size: 13px;
    }

    .mirrors-table tbody td {
        padding: 12px 8px;
    }
}

.thds {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
    color: #e8e8ea;
}

.thds h1, .thds h2, .thds h3 {
    color: #fff;
    letter-spacing: .2px;
}

.thds h1 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 900;
    margin: 0 0 18px;
}

.thds h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    margin: 34px 0 14px;
    padding-bottom: 12px;
    position: relative;
}

.thds h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 86px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, #c7051d, #f0b93a);
}

.thds p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.85;
    color: #cfcfd6;
}

.thds a {
    color: #ff2a3e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.thds a:hover {
    color: #ff5565;
}

.thds ul, .thds ol {
    margin: 14px 0 18px;
    padding-left: 22px;
    color: #cfcfd6;
}

.thds li {
    margin: 8px 0;
    line-height: 1.75;
}

.thds blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    border-left: 4px solid #c7051d;
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    color: #d7d7df;
}

.thds hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 26px 0;
}

.thds .section-card {
    background: linear-gradient(135deg, rgba(69, 11, 23, .28), rgba(17, 13, 14, .55));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.thds .lead {
    font-size: 18px;
    color: #e7e7ee;
    opacity: .92;
}

.thds table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 18px 0 22px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
}

.thds table th, .thds table td {
    padding: 14px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.thds table th {
    background: rgba(69, 11, 23, .55);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.thds table tr:last-child td {
    border-bottom: 0;
}

.thds img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    margin: 16px 0;
}

.thds .callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 18px 0 22px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(199, 5, 29, .10);
}

.thds .callout .ico {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(199, 5, 29, .22);
    color: #fff;
    font-size: 18px;
}

.thds .callout .txt {
    color: #e7e7ee;
    line-height: 1.7;
}

.thds .grid-2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin: 18px 0 22px;
}

.thds .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #e9e9ee;
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
}

.thds .pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff5a;
    box-shadow: 0 0 0 6px rgba(0, 255, 90, .12);
}

.thds .btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 22px;
}

.thds .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}

.thds .btn-primary {
    background: linear-gradient(135deg, #c7051d, #8b0414);
    color: #fff;
    border-color: rgba(199, 5, 29, .35);
}

.thds .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(199, 5, 29, .28);
    filter: brightness(1.03);
}

.thds .btn-ghost {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.thds .btn-ghost:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
    background: rgba(255, 255, 255, .09);
}

@media (max-width: 992px) {
    .thds {
        padding: 22px 14px
    }

    .thds h1 {
        font-size: 34px
    }

    .thds h2 {
        font-size: 26px
    }

    .thds .grid-2 {
        grid-template-columns:1fr
    }

    .thds .section-card {
        padding: 22px
    }
}

@media (max-width: 576px) {
    .thds {
        padding: 18px 12px
    }

    .thds h1 {
        font-size: 28px
    }

    .thds h2 {
        font-size: 22px;
        margin: 26px 0 12px
    }

    .thds p {
        font-size: 15px;
        line-height: 1.8
    }

    .thds ul, .thds ol {
        padding-left: 18px
    }

    .thds .section-card {
        padding: 18px;
        border-radius: 16px
    }

    .thds table {
        border-radius: 12px
    }

    .thds table th, .thds table td {
        padding: 12px 10px
    }

    .thds .btn {
        width: 100%
    }
}

.thds {
    max-width: 1200px;
    margin: 40px auto;
    padding: 42px 34px;
    background: linear-gradient(135deg, rgba(69, 11, 23, .35), rgba(17, 13, 14, .85));
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .thds {
        margin: 18px auto;
        padding: 22px 16px;
        border-radius: 18px;
    }
}
