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

:root {
    --primary-green: #84cd00;
    --primary-red: #e32442;
    --bg-dark: #171722;
    --header-bg: #252536;
    --text-light: #e8e8f0;
    --text-gray: #a8a8b8;
    --card-bg: #1e1e2e;
    --border-color: #2a2a3a;
}

body {
    font-family: 'Geologica', 'Times New Roman', Times, serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.s9k3m7 {
    background-color: var(--header-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.q2p8x1 {
    width: 100%;
}

.l8d9w5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.f3j7k1 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.w5m2p9 {
    display: flex;
    align-items: center;
}

.w5m2p9 img {
    height: 45px;
    width: auto;
}

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

.v8n4k2 span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

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

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

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

.d7p3x8 {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.k4m9t6 {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.n2v7j5 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.n2v7j5:hover {
    color: var(--primary-green);
}

.n2v7j5 svg {
    opacity: 0.7;
}

.x7k3m1 {
    margin-left: auto;
}

.j9t2w4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
}

.c4p7n8 {
    background-color: var(--primary-green);
    color: var(--bg-dark);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
}

.r5t9m3 {
    display: flex;
    gap: 12px;
}

.header-actions-desktop {
    display: flex;
}

.header-actions {
    display: none;
}

.b2n6k8 {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-login:hover {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.btn-register {
    background-color: var(--primary-red);
    color: var(--text-light);
}

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

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #72b000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-bonus {
    background-color: var(--primary-red);
    color: var(--text-light);
}

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

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.w8n4k2 {
    flex: 1;
}

.p3m7k9 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.n5k8m2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.t7k3n9 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.x4m8p2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 23, 34, 0.9) 0%, rgba(37, 37, 54, 0.8) 100%);
}

.k2n7m5 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.d8p3k7 {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
}

.m4k9n2 {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.v7k2p9 {
    margin-bottom: 20px;
}

.x3n8k5 {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 24px;
    margin-bottom: 8px;
}

.w2m5k8 {
    color: #ffd700;
}

.star-filled {
    color: #ffd700;
}

.star-empty {
    color: #4a4a5a;
}

.star-half {
    background: linear-gradient(90deg, #ffd700 50%, #4a4a5a 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.k8n3m7 {
    font-size: 14px;
    color: var(--text-gray);
}

.p9k4n2 {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4466 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.t3m7k8 {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.x7n2k9 {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.n4k8m3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.w5k9n3, .x9n4k8, .m7k3n9, .k9n3m7, .w8n4k2 {
    padding: 60px 0;
    margin: 20px 0;
}

.m8p3k7 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.k7n2m9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.p4w8n2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.x3m7k5 {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.t9k4m2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.n5k8m3, .m4p9x1 {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.n5k8m3 img, .m4p9x1 img {
    height: 30px;
    width: auto;
}

.btn-more {
    display: block;
    margin: 30px auto 0;
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

.p8w4k2 {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p8w4k2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(132, 205, 0, 0.2);
}

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

.t7k2n8 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

.d9k3m7 {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.p4w9k2 {
    background: linear-gradient(135deg, var(--primary-green) 0%, #6db000 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.x8n3k7 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.t5k9m3 {
    font-size: 16px;
    opacity: 0.95;
}

.k8n4m2 {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.w7k2n9 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.x7k4m2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.t9k3n7 {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.t9k3n7:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

.k4n8m7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.p2w9k5 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m3k8n5 {
    display: flex;
    gap: 5px;
}

.rate-star {
    font-size: 24px;
    color: #4a4a5a;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rate-star:hover, .rate-star.active {
    color: #ffd700;
}

.success-message {
    background-color: rgba(132, 205, 0, 0.2);
    border: 2px solid var(--primary-green);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
}

.q7m3k9 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p2w8n5 {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.p2w8n5:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.k4n7m2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.x8p3t6 {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.v2m9k4 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.n5k8p1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.d7w2m9 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.j3n6k8 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-gray);
}

.m8p3k7 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.k2n7w5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.v4m8p2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
}

.x7k3n9 {
    display: flex;
    gap: 3px;
}

.n4p8k3 {
    background-color: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.n4p8k3:hover {
    background-color: var(--primary-green);
    color: var(--bg-dark);
}

.d8m3k7 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.p5k9n2 {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.w8n4k6 {
    color: var(--primary-green);
    text-decoration: none;
}

.w8n4k6:hover {
    text-decoration: underline;
}

.k7n2m9 {
    margin-bottom: 20px;
}

.t4p8k3 {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.text-truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncated.expanded {
    display: block;
}

.m3k7n5 {
    background: none;
    border: none;
    color: var(--primary-green);
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
}

.m3k7n5:hover {
    text-decoration: underline;
}

.n9k3p7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.x2m8k4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.w5n3k9 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.k8p2n6 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v3m7k2 {
    font-size: 14px;
    color: var(--primary-green);
    padding-left: 5px;
}

.t7n4k9 {
    font-size: 14px;
    color: var(--primary-red);
    padding-left: 5px;
}

.m4k7p3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    gap: 15px;
    flex-wrap: wrap;
}

.x9n2k8 {
    display: flex;
    gap: 10px;
}

.p5k8m3 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
}

.p5k8m3:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.like-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.dislike-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.k3n7m2 {
    font-weight: 600;
}

.w7k4n9 {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.w7k4n9:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.n8k3m7 {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.p4m9k2 {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 10px;
}

.x5k8n3 {
    display: flex;
    gap: 10px;
}

.btn-submit-reply, .btn-cancel-reply {
    padding: 8px 16px;
    font-size: 14px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: rgba(132, 205, 0, 0.1);
}

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

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.btn-table {
    padding: 8px 20px;
    font-size: 14px;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    line-height: 1.8;
}

.text-content h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.text-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.text-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-light);
}

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

.text-content li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.text-content table th,
.text-content table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.text-content table th {
    background-color: rgba(132, 205, 0, 0.1);
    font-weight: 600;
}

.text-content a {
    color: var(--primary-green);
    text-decoration: none;
}

.text-content a:hover {
    text-decoration: underline;
}

.author-block {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.m8t3k7 {
    background-color: var(--header-bg);
    padding: 50px 0 30px;
    margin-top: 60px;
}

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

.k7n3m1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.x2m9p7 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.d8k2n5 {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.v5t8n3 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v5t8n3 a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.v5t8n3 a:hover {
    color: var(--primary-green);
}

.n9k4x6 {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.t3n7k5 {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.w6k8n2 {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.j4m7t9 {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.d2k8n5 {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4466 100%);
    padding: 15px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

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

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

.btn-widget {
    background-color: var(--text-light);
    color: var(--primary-red);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
}

.btn-widget:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.x9n4k8 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
}

.bottom-banner {
    margin-top: 40px;
}

@media (max-width: 992px) {
    .d7p3x8 {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: var(--header-bg);
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .d7p3x8.active {
        left: 0;
    }

    .v8n4k2 {
        display: flex;
    }

    .k4m9t6 {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .x7k3m1 {
        margin-left: 0;
        width: 100%;
    }

    .header-actions-desktop {
        display: none;
    }

    .header-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }

    .header-actions .b2n6k8 {
        width: 100%;
        text-align: center;
    }

    .m8p3k7 {
        font-size: 26px;
    }

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

    .k4n8m7 {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

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

    .d8p3k7 {
        padding: 30px 20px;
    }

    .m8p3k7 {
        font-size: 24px;
    }

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

    .k4n7m2 {
        flex-direction: column;
    }

    .m8p3k7 {
        text-align: center;
    }

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

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

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

    .text-content {
        padding: 25px 20px;
    }

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

@media (max-width: 480px) {
    .w5m2p9 img {
        height: 35px;
    }

    .m8p3k7 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .x8n3k7 {
        font-size: 22px;
    }

    .t7k2n8 {
        font-size: 18px;
    }

    .n4k8m3 {
        gap: 10px;
    }

    .b2n6k8 {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 15px;
    }
}

.z8k4n3, .g5m9p2, .l3w7k6 {
    display: none;
}

.qhge {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 20px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.qhge > * + * {
    margin-top: 16px;
}

.qhge h1,
.qhge h2,
.qhge h3 {
    scroll-margin-top: 96px;
}

.qhge h1 {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 18px;
    color: var(--text-light, #e8e8f0);
}

.qhge h2 {
    font-size: 28px;
    line-height: 1.22;
    margin-top: 28px;
    color: var(--primary-green, #84cd00);
}

.qhge h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-top: 20px;
    color: var(--text-light, #e8e8f0);
}

.qhge p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(232, 232, 240, .92);
}

.qhge a {
    color: var(--primary-green, #84cd00);
    text-decoration: none;
    border-bottom: 1px solid rgba(132, 205, 0, .35);
}

.qhge a:hover {
    border-bottom-color: rgba(132, 205, 0, .9);
}

.qhge ul,
.qhge ol {
    margin: 0;
    padding-left: 22px;
    line-height: 1.75;
}

.qhge li {
    margin: 8px 0;
    color: rgba(232, 232, 240, .92);
}

.qhge ul > li::marker,
.qhge ol > li::marker {
    color: rgba(132, 205, 0, .85);
}

.qhge footer {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.qhge footer p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(168, 168, 184, .95);
}

.qhge blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    border-left: 4px solid rgba(132, 205, 0, .7);
    border-radius: 14px;
    color: rgba(232, 232, 240, .9);
}

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

.qhge th,
.qhge td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 14px;
    text-align: left;
}

.qhge th {
    background: rgba(132, 205, 0, .10);
    color: rgba(232, 232, 240, .95);
    font-weight: 800;
}

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

.qhge img,
.qhge svg,
.qhge video,
.qhge iframe {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

@media (max-width: 1024px) {
    .qhge {
        max-width: 860px;
        padding: 28px 16px;
    }

    .qhge h1 {
        font-size: 32px;
    }

    .qhge h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .qhge {
        max-width: 100%;
        padding: 18px 14px;
    }

    .qhge h1 {
        font-size: 26px;
        line-height: 1.18;
    }

    .qhge h2 {
        font-size: 20px;
        line-height: 1.25;
        margin-top: 20px;
    }

    .qhge h3 {
        font-size: 18px;
        margin-top: 16px;
    }

    .qhge p {
        font-size: 16px;
        line-height: 1.8;
    }

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

    .qhge li {
        margin: 6px 0;
    }

    .qhge table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .qhge th,
    .qhge td {
        white-space: nowrap;
    }

    .qhge iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 420px) {
    .qhge {
        padding: 16px 12px;
    }

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

    .qhge p {
        font-size: 15.5px;
    }
}

.comparison-section {
    padding: 54px 0;
}

.comparison-section .section-title {
    text-align: center;
    margin-bottom: 22px;
}

.table-wrapper {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: rgba(232, 232, 240, .95);
}

.comparison-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 16px 16px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: none;
    background: rgba(37, 37, 54, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody td {
    padding: 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    vertical-align: middle;
}

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

.comparison-table tbody tr {
    background: rgba(255, 255, 255, .01);
}

.comparison-table tbody tr:nth-child(2n) {
    background: rgba(255, 255, 255, .03);
}

.comparison-table tbody tr:hover {
    background: rgba(132, 205, 0, .06);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    width: 28%;
}

.comparison-table td strong,
.comparison-table .d7w2m9 {
    color: var(--primary-green, #84cd00);
    font-weight: 900;
}

.btn-table {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    background: rgba(132, 205, 0, .12);
    color: var(--primary-green, #84cd00);
    border: 1px solid rgba(132, 205, 0, .35);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.btn-table:hover {
    background: rgba(132, 205, 0, .18);
    border-color: rgba(132, 205, 0, .6);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .comparison-section {
        padding: 38px 0;
    }

    .comparison-table td:first-child,
    .comparison-table th:first-child {
        width: 34%;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 28px 0;
    }

    .table-wrapper {
        border-radius: 16px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 720px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 14px 14px;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        min-width: 660px;
    }

    .btn-table {
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 13px;
    }
}

@media (min-width: 769px) {
    .table-wrapper {
        overflow: hidden;
    }

    .comparison-table {
        min-width: 0;
    }

    .comparison-table thead th {
        font-size: 15px;
        padding: 18px 18px;
    }

    .comparison-table tbody td {
        font-size: 15px;
        padding: 18px 18px;
    }

    .comparison-table td:first-child,
    .comparison-table th:first-child {
        width: 30%;
    }

    .comparison-table th:not(:first-child),
    .comparison-table td:not(:first-child) {
        text-align: center;
    }

    .btn-table {
        padding: 10px 18px;
    }
}

.cmpx {
    padding: 56px 0;
}

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

.cmpx__title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;
}

.cmpx__card {
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(30, 30, 46, .82), rgba(20, 20, 34, .72));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.cmpx__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cmpx__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    min-width: 780px;
}

.cmpx__table thead th {
    padding: 18px 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cmpx__table thead th:not(:first-child) {
    text-align: center;
}

.cmpx__table tbody td {
    padding: 18px 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    vertical-align: middle;
}

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

.cmpx__table tbody tr:hover td {
    background: rgba(255, 255, 255, .03);
}

.cmpx__table td:not(:first-child) {
    text-align: center;
}

.cmpx__table strong {
    color: #84cd00;
    font-weight: 900;
}

.cmpx__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    color: #84cd00;
    background: rgba(132, 205, 0, .12);
    border: 1px solid rgba(132, 205, 0, .45);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.cmpx__btn:hover {
    background: rgba(132, 205, 0, .18);
    border-color: rgba(132, 205, 0, .7);
    transform: translateY(-1px);
}

.cmpx__col--param {
    width: 32%;
}

.cmpx__col {
    width: 22.666%;
}

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

    .cmpx__wrap {
        padding: 0 14px;
    }

    .cmpx__title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cmpx__table {
        min-width: 720px;
    }

    .cmpx__table thead th,
    .cmpx__table tbody td {
        padding: 14px 12px;
        font-size: 14px;
    }

    .cmpx__btn {
        min-width: 110px;
        padding: 10px 14px;
    }
}

@media (max-width: 420px) {
    .cmpx__table {
        min-width: 680px;
    }
}
