
:root {
    --color-header: #312d2b;
    --color-footer: #312d2b;
    --color-bg: #211e1c;
    --color-login: #d7cec5;
    --color-signup: #d5812d;
    --color-text-light: #e8e6e3;
    --color-text-dark: #2d2a28;
    --color-accent: #d5812d;
    --color-success: #4caf50;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.navbar {
    padding: 0;
}

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

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

.nav-link {
    color: var(--color-text-light) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.btn-header {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-login {
    background-color: var(--color-login);
    color: var(--color-text-dark);
}

.btn-login:hover {
    background-color: #c5bdb4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 206, 197, 0.3);
}

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

.btn-signup:hover {
    background-color: #c47226;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 129, 45, 0.4);
}

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

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

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

.mobile-buttons {
    display: flex;
    gap: 8px;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(213, 129, 45, 0.2) 0%, rgba(49, 45, 43, 0.8) 100%),
    url('/sol-banner.png') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.btn-hero {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--color-signup) 0%, #e89943 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(213, 129, 45, 0.4);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(213, 129, 45, 0.6);
    color: #fff;
}

.main-content {
    flex: 1;
    padding: 60px 0;
}

section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(49, 45, 43, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text-light);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.update-time {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.time-label {
    font-weight: 600;
    margin-right: 8px;
}

.time-value {
    color: var(--color-accent);
    font-weight: 700;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
}

.mirrors-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.mirrors-table thead {
    background: linear-gradient(135deg, var(--color-header) 0%, #3d3835 100%);
}

.mirrors-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
    color: var(--color-text-light);
    border-bottom: 2px solid var(--color-accent);
}

.mirrors-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
}

.mirrors-table tbody tr:hover {
    background: rgba(213, 129, 45, 0.1);
    transition: background 0.3s ease;
}

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

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

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

.btn-table {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-signup);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-table:hover {
    background: #c47226;
    transform: scale(1.05);
    color: #fff;
}

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

.winner-card {
    background: linear-gradient(135deg, rgba(213, 129, 45, 0.15) 0%, rgba(49, 45, 43, 0.3) 100%);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(213, 129, 45, 0.2);
}

.winner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(213, 129, 45, 0.3);
    border-color: var(--color-accent);
}

.winner-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.winner-name {
    flex: 1;
    margin: 0 15px;
    font-weight: 600;
    color: var(--color-text-light);
}

.winner-amount {
    font-weight: 700;
    color: var(--color-success);
    font-size: 1.1rem;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
}

.app-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-table td {
    padding: 14px;
    color: var(--color-text-light);
}

.app-table td:first-child {
    font-weight: 600;
    color: var(--color-accent);
    width: 40%;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-btn img {
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.app-btn:hover img {
    transform: scale(1.05);
}

.app-btn-apk {
    display: block;
    padding: 16px 32px;
    background: var(--color-signup);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.bonus-card {
    background: linear-gradient(135deg, rgba(213, 129, 45, 0.2) 0%, rgba(49, 45, 43, 0.4) 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(213, 129, 45, 0.3);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(213, 129, 45, 0.4);
    border-color: var(--color-accent);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.bonus-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0 15px;
    color: var(--color-text-light);
}

.bonus-desc {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.bonus-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.bonus-details span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.bonus-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-signup);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.bonus-btn:hover {
    background: #c47226;
    transform: scale(1.05);
    color: #fff;
}

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

.game-card {
    background: rgba(49, 45, 43, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(213, 129, 45, 0.3);
    border-color: var(--color-accent);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1816;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-name {
    padding: 16px 16px 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0;
}

.game-provider {
    padding: 0 16px 16px;
    color: var(--color-accent);
    font-size: 0.9rem;
    margin: 0;
}

.game-btn {
    display: block;
    margin: 0 16px 16px;
    padding: 12px;
    background: var(--color-signup);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-btn:hover {
    background: #c47226;
    color: #fff;
}

.slot-machine {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(213, 129, 45, 0.15) 0%, rgba(49, 45, 43, 0.5) 100%);
    border-radius: 20px;
    border: 3px solid var(--color-accent);
    text-align: center;
}

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

.slot-reel {
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-login);
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slot-symbol {
    font-size: 4rem;
}

.spin-btn {
    padding: 18px 60px;
    background: linear-gradient(135deg, var(--color-signup) 0%, #e89943 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(213, 129, 45, 0.4);
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(213, 129, 45, 0.6);
}

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

.slot-result {
    margin-top: 30px;
    padding: 24px;
    border-radius: 12px;
    animation: fadeIn 0.5s ease;
}

.slot-result.win {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
}

.slot-result.lose {
    background: rgba(255, 152, 0, 0.2);
    border: 2px solid #ff9800;
}

.result-text {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.claim-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-success);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.claim-btn:hover {
    background: #45a049;
    transform: scale(1.05);
    color: #fff;
}

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

.content-section {
    background: rgba(49, 45, 43, 0.3);
}

.content-section h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.4rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--color-accent);
    font-weight: 600;
}

.content-section p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    font-size: 1.05rem;
}

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

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.content-section table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.content-section table th,
.content-section table td {
    padding: 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
}

.content-section table th {
    background: rgba(213, 129, 45, 0.2);
    font-weight: 700;
}

.author-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: rgba(49, 45, 43, 0.4);
    border-radius: 12px;
    border: 2px solid rgba(213, 129, 45, 0.2);
}

.author-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-accent);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.author-position {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.author-bio {
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 16px;
}

.social-link {
    padding: 10px 24px;
    background: rgba(213, 129, 45, 0.2);
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--color-accent);
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link:hover {
    background: var(--color-accent);
    color: #fff;
}


.footer {
    background: linear-gradient(135deg, var(--color-footer) 0%, #3d3835 100%);
    padding: 50px 0 30px;
    margin-top: auto;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.footer-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-menu a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--color-accent);
}

.payment-title,
.providers-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-weight: 600;
}

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

.payment-icons img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

.providers-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.provider-badge {
    padding: 8px 16px;
    background: rgba(213, 129, 45, 0.2);
    color: var(--color-text-light);
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid rgba(213, 129, 45, 0.3);
}

.license-info,
.responsible-gaming {
    margin-bottom: 20px;
}

.license-info p,
.responsible-gaming p,
.copyright-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(232, 230, 227, 0.8);
}

.age-warning {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff9800;
}

.location-info {
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-links .separator {
    color: rgba(232, 230, 227, 0.5);
}

.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-signup) 0%, #c47226 100%);
    padding: 16px 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

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

.widget-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.widget-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.widget-btn {
    padding: 12px 36px;
    background: #fff;
    color: var(--color-signup);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: var(--color-signup);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-image {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }

    .bonuses-grid,
    .games-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
    }

    .bonus-card,
    .game-card {
        min-width: 280px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    section {
        padding: 24px 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .hero-title {
        font-size: 1.8rem;
    }

    .slot-reels {
        gap: 12px;
    }

    .slot-reel {
        width: 90px;
        height: 90px;
    }

    .slot-symbol {
        font-size: 3rem;
    }

    .spin-btn {
        padding: 14px 40px;
        font-size: 1.1rem;
    }

    .winners-grid {
        grid-template-columns: 1fr;
    }

    .widget-content {
        gap: 12px;
    }

    .widget-text {
        font-size: 1rem;
    }

    .mobile-buttons .btn-header {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

.wp-legacy-element {
    display: none;
}

.elementor-hidden {
    visibility: hidden;
}

.yoast-schema-graph {
    opacity: 0;
}

.wc-block-grid__product {
    position: absolute;
    left: -9999px;
}

.jetpack-lazy-image {
    pointer-events: none;
}

.wp-block-cover__inner-container {
    z-index: -1;
}

.cmg {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.cmg > * + * {
    margin-top: 14px;
}

.cmg p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(232, 230, 227, .92);
}

.cmg h2 {
    margin-top: 26px;
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
    color: #d7cec5;
}

.cmg h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    color: #d5812d;
}

.cmg h4 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    color: rgba(232, 230, 227, .95);
}

.cmg a {
    color: #d5812d;
    text-decoration: none;
    border-bottom: 1px solid rgba(213, 129, 45, .35);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.cmg a:hover {
    color: #ffd2a3;
    border-bottom-color: rgba(255, 210, 163, .55);
}

.cmg ul,
.cmg ol {
    margin: 14px 0 18px;
    padding-left: 18px;
}

.cmg li {
    margin: 10px 0;
    line-height: 1.75;
    color: rgba(232, 230, 227, .92);
}

.cmg ul li::marker {
    color: rgba(213, 129, 45, .9);
}

.cmg ol li::marker {
    color: rgba(213, 129, 45, .9);
    font-weight: 800;
}

.cmg blockquote {
    margin: 18px 0;
    padding: 16px 16px 16px 18px;
    border-left: 3px solid rgba(213, 129, 45, .9);
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
    color: rgba(232, 230, 227, .92);
}

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

.cmg th,
.cmg td {
    padding: 14px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-right: 1px solid rgba(255, 255, 255, .06);
    vertical-align: top;
}

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

.cmg th:last-child,
.cmg td:last-child {
    border-right: 0;
}

.cmg thead th {
    background: linear-gradient(135deg, rgba(213, 129, 45, .16), rgba(49, 45, 43, .55));
    color: rgba(232, 230, 227, .95);
    font-weight: 800;
}

.cmg tbody tr:hover {
    background: rgba(213, 129, 45, .06);
}

.cmg code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .95em;
    padding: 2px 7px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .08);
}

.cmg hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .10);
    margin: 22px 0;
}

@media (max-width: 991px) {
    .cmg {
        max-width: 100%;
        padding: 0 16px;
    }

    .cmg h2 {
        font-size: 22px;
    }

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

    .cmg p {
        font-size: 15px;
    }

    .cmg ul,
    .cmg ol {
        padding-left: 16px;
    }
}

@media (max-width: 576px) {
    .cmg {
        padding: 0 14px;
    }

    .cmg h2 {
        font-size: 20px;
        margin-top: 22px;
    }

    .cmg p {
        font-size: 15px;
        line-height: 1.85;
    }

    .cmg table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        border-radius: 14px;
    }

    .cmg table::-webkit-scrollbar {
        height: 8px;
    }

    .cmg table::-webkit-scrollbar-thumb {
        background: rgba(213, 129, 45, .55);
        border-radius: 999px;
    }

    .cmg th,
    .cmg td {
        white-space: normal;
        min-width: 220px;
    }
}

.hero-banner.lz8k5vt {
    position: relative;
    margin-bottom: 0;
    padding: clamp(56px, 8vw, 110px) 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .25) 100%),
    url('/sol-banner.png') center/cover no-repeat;
    backdrop-filter: none;
    overflow: hidden;
}

.hero-banner.lz8k5vt::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 30% 40%, rgba(213, 129, 45, .18) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.hero-banner.lz8k5vt .mx9t4ps {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-banner.lz8k5vt .row {
    min-height: clamp(360px, 50vw, 560px);
    justify-content: center;
    text-align: center;
}

.hero-banner.lz8k5vt .pt3d8nq {
    max-width: 860px;
    margin: 0 auto;
}

.hero-banner.lz8k5vt .hero-title {
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.08;
    font-weight: 900;
    margin: 0 0 14px;
    text-wrap: balance;
}

.hero-banner.lz8k5vt .hero-subtitle {
    font-size: clamp(15px, 1.6vw, 20px);
    line-height: 1.55;
    margin: 0 auto 22px;
    max-width: 720px;
    color: rgba(232, 230, 227, .92);
}

.hero-banner.lz8k5vt .btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .2px;
}

@media (max-width: 768px) {
    .hero-banner.lz8k5vt {
        padding: 54px 0 64px;
        background: linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .35) 100%),
        url('/sol-banner.png') center/cover no-repeat;
    }

    .hero-banner.lz8k5vt .row {
        min-height: 420px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-banner.lz8k5vt .btn-hero {
        width: 100%;
        max-width: 320px;
    }
}
