.breadcrumbs {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(94, 189, 249, 0.1);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #5ebdf9;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.spoofer-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(26, 144, 218, 0.1) 0%, rgba(10, 22, 40, 0.3) 100%);
}

.spoofer-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spoofer-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(94, 189, 249, 0.1);
    border: 1px solid rgba(94, 189, 249, 0.2);
}

.spoofer-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.spoofer-image-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.spoofer-hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(94, 189, 249, 0.3);
}

.spoofer-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.prices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.price-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.2) 0%, rgba(26, 144, 218, 0.2) 100%);
    border: 2px solid rgba(94, 189, 249, 0.5);
    border-radius: 12px;
    color: #5ebdf9;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    width: auto;
    min-width: 320px;
    min-height: auto;
    box-shadow: 0 4px 15px rgba(94, 189, 249, 0.15);
    position: relative;
    overflow: hidden;
}

.price-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.price-button:hover::before {
    left: 100%;
}

.price-button:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.3) 0%, rgba(26, 144, 218, 0.3) 100%);
    border-color: #5ebdf9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 189, 249, 0.4);
}

.price-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(94, 189, 249, 0.3);
}

.price-button.text-only {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.spoof-list {
    list-style: none;
    padding: 20px;
    background: rgba(94, 189, 249, 0.1);
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #5ebdf9;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px 20px;
}

.spoof-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 25px;
}

.spoof-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #5ebdf9;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 768px) {
    .spoof-list {
        grid-template-columns: 1fr;
    }
}

.content-section {
    padding: 40px 0;
}

.requirements-section {
    padding: 40px 0;
    background: rgba(94, 189, 249, 0.05);
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.requirement-item {
    background: rgba(94, 189, 249, 0.1);
    border: 1px solid rgba(94, 189, 249, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.requirement-item:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
}

.requirement-item:hover {
    background: rgba(94, 189, 249, 0.15);
    border-color: #5ebdf9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 189, 249, 0.2);
}

.requirement-header {
    font-weight: 600;
    color: #5ebdf9;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.requirement-header::before {
    content: '\2699';
    font-size: 20px;
}

.requirement-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
    white-space: pre-line;
}

.requirement-content p {
    margin: 8px 0;
}

.requirement-content ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.requirement-content ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.requirement-content ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #5ebdf9;
    font-weight: bold;
}

@media (max-width: 768px) {
    .requirements-list {
        grid-template-columns: 1fr;
    }
}

.games-help-section {
    padding: 40px 0;
}

.games-help-table {
    margin-top: 30px;
}

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

.game-item {
    display: block;
    padding: 12px 18px;
    background: rgba(94, 189, 249, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(94, 189, 249, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 35px;
}

.game-item::before {
    content: '\2713';
    position: absolute;
    left: 12px;
    color: #5ebdf9;
    font-weight: bold;
    font-size: 16px;
}

.game-item:hover {
    background: rgba(94, 189, 249, 0.15);
    border-color: #5ebdf9;
    transform: translateX(5px);
    color: #ffffff;
    text-decoration: none;
}

.games-help-warning {
    margin-top: 30px;
    padding: 20px 25px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.games-help-warning-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.games-help-warning-title::before {
    content: '\26A0';
    font-size: 22px;
}

.games-help-warning-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .games-list {
        grid-template-columns: 1fr;
    }
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.status-table thead th {
    text-align: left;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
}

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

.status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.status-badge.good {
    background: rgba(40, 167, 69, 0.25);
    color: #5cb85c;
}

.status-badge.testing {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-badge.risk {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.status-badge.down {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.status-notes {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-size: 14px;
}

@media (max-width: 768px) {
    .status-table thead {
        display: none;
    }

    .status-table tbody td {
        display: block;
        padding: 6px 16px;
        border-bottom: none;
    }

    .status-table tbody td::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        margin-right: 6px;
    }

    .status-table tbody tr {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 8px 0;
        display: block;
    }
}

/* Prices Columns (Permanent / Temporary layout) */
.prices-grid.has-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.prices-column {
    display: flex;
    flex-direction: column;
}

.prices-column-title {
    font-size: 20px;
    font-weight: 700;
    color: #5ebdf9;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 10px;
    background: rgba(94, 189, 249, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(94, 189, 249, 0.3);
    transition: all 0.3s;
}

.prices-column-title:hover {
    background: rgba(94, 189, 249, 0.2);
    border-color: #5ebdf9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 189, 249, 0.3);
}

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

.prices-column-grid .price-button {
    width: 100%;
    min-width: unset;
}

@media (max-width: 768px) {
    .prices-grid.has-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Download Section */
.download-section {
    padding: 40px 0;
}

.download-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: rgba(94, 189, 249, 0.08);
    border: 2px solid rgba(94, 189, 249, 0.25);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.download-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.download-button.primary {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.2) 0%, rgba(26, 144, 218, 0.2) 100%);
    border-color: rgba(94, 189, 249, 0.5);
    color: #5ebdf9;
    box-shadow: 0 4px 15px rgba(94, 189, 249, 0.15);
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s;
}

.download-button:hover::before {
    left: 100%;
}

.download-button:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.2) 0%, rgba(26, 144, 218, 0.2) 100%);
    border-color: #5ebdf9;
    color: #5ebdf9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 189, 249, 0.3);
    text-decoration: none;
}

.download-button:active {
    transform: translateY(-1px);
}

/* Video Section */
.video-section {
    padding: 40px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video-section .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(10, 22, 40, 0.4);
    border: 1px solid rgba(94, 189, 249, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-section .video-container iframe,
.video-section .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Similar Section */
.similar-section {
    padding: 40px 0;
}

/* Pre-Use Tips Section */
.pre-use-tips-section {
    padding: 40px 0;
    background: rgba(94, 189, 249, 0.03);
}

.pre-use-tips-section .section-title h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-intro {
    margin-top: 20px;
    padding: 18px 22px;
    background: rgba(94, 189, 249, 0.08);
    border: 1px solid rgba(94, 189, 249, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 15px;
}

.tips-intro ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.tips-intro ul li {
    padding: 4px 0 4px 22px;
    position: relative;
}

.tips-intro ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #5ebdf9;
    font-weight: bold;
}

.tips-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.tip-step {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(94, 189, 249, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.tip-step:hover {
    border-color: rgba(94, 189, 249, 0.35);
}

.tip-step.active {
    border-color: rgba(94, 189, 249, 0.4);
}

.tip-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
}

.tip-step-header:hover {
    background: rgba(94, 189, 249, 0.06);
}

.tip-step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 189, 249, 0.15);
    border: 1px solid rgba(94, 189, 249, 0.3);
    border-radius: 8px;
    color: #5ebdf9;
    font-weight: 700;
    font-size: 14px;
}

.tip-step-title {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.tip-step-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s, color 0.3s;
}

.tip-step.active .tip-step-chevron {
    transform: rotate(180deg);
    color: #5ebdf9;
}

.tip-step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.tip-step.active .tip-step-content {
    max-height: 600px;
}

.tip-step-body {
    padding: 0 20px 18px 66px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 15px;
}

.tip-step-body ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.tip-step-body ul li {
    padding: 3px 0 3px 20px;
    position: relative;
}

.tip-step-body ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #5ebdf9;
}

.tip-step-body .tip-note {
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(94, 189, 249, 0.08);
    border-left: 3px solid #5ebdf9;
    border-radius: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.tip-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.15) 0%, rgba(26, 144, 218, 0.15) 100%);
    border: 1px solid rgba(94, 189, 249, 0.4);
    border-radius: 8px;
    color: #5ebdf9;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.tip-download-btn:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.25) 0%, rgba(26, 144, 218, 0.25) 100%);
    border-color: #5ebdf9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 189, 249, 0.3);
    text-decoration: none;
    color: #5ebdf9;
}

.tip-download-btn svg {
    width: 16px;
    height: 16px;
}

.tips-alerts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.tip-alert {
    padding: 18px 22px;
    border-radius: 12px;
    line-height: 1.7;
    font-size: 15px;
}

.tip-alert-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tip-alert.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.tip-alert.success .tip-alert-title {
    color: #5cb85c;
}

.tip-alert.warning {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
}

.tip-alert.warning .tip-alert-title {
    color: #ffc107;
}

.tip-alert.danger {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.tip-alert.danger .tip-alert-title {
    color: #dc3545;
}

.tip-alert.info {
    background: rgba(94, 189, 249, 0.08);
    border: 1px solid rgba(94, 189, 249, 0.2);
}

.tip-alert.info .tip-alert-title {
    color: #5ebdf9;
}

.tip-alert ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.tip-alert ul li {
    padding: 3px 0 3px 20px;
    position: relative;
}

.tip-alert ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: inherit;
    opacity: 0.5;
}

.tip-alert p {
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.85);
}

.tip-alert a {
    color: #5ebdf9;
    text-decoration: underline;
    text-decoration-color: rgba(94, 189, 249, 0.4);
    transition: text-decoration-color 0.3s;
}

.tip-alert a:hover {
    text-decoration-color: #5ebdf9;
}

@media (max-width: 768px) {
    .tip-step-body {
        padding-left: 20px;
    }

    .tip-step-header {
        gap: 10px;
        padding: 14px 16px;
    }

    .tip-step-title {
        font-size: 14px;
    }

    .tip-step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .spoofer-hero {
        padding: 40px 0;
    }

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

    .spoofer-hero-text h1 {
        font-size: 26px;
    }

    .spoofer-description {
        font-size: 16px;
    }

    .prices-grid {
        gap: 12px;
    }

    .price-button {
        min-width: unset;
        padding: 14px 20px;
        font-size: 13px;
    }

    .download-buttons-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .download-button {
        min-width: unset;
        padding: 14px 20px;
        font-size: 15px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }

    .content-section,
    .requirements-section,
    .games-help-section,
    .download-section,
    .video-section,
    .similar-section {
        padding: 30px 0;
    }

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

@media (max-width: 480px) {
    .spoofer-hero {
        padding: 30px 0;
    }

    .spoofer-hero-text h1 {
        font-size: 22px;
    }

    .spoofer-description {
        font-size: 15px;
    }

    .price-button {
        padding: 12px 16px;
    }

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

/* ============================================================
   НОВЫЕ карточки системных требований (renderRequirements).
   Плотная сетка, SVG-иконки, равная высота, label/value для min/rec.
   ============================================================ */

.requirements-section { padding: 60px 0; }

#requirementsList.req-grid,
.req-grid {
    column-count: 4;
    column-gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.req-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px 16px;
    display: block;
    margin: 0 0 14px 0;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    transition: border-color 0.18s, background 0.18s, transform 0.18s;
}

.req-card:hover {
    border-color: rgba(94, 189, 249, 0.32);
    background: linear-gradient(180deg, rgba(94, 189, 249, 0.06) 0%, rgba(94, 189, 249, 0.02) 100%);
    transform: translateY(-1px);
}

.req-card--important {
    border-color: rgba(251, 191, 36, 0.28);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.06) 0%, rgba(251, 191, 36, 0.02) 100%);
    column-span: all;
    -webkit-column-span: all;
}
.req-card--important:hover {
    border-color: rgba(251, 191, 36, 0.45);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.09) 0%, rgba(251, 191, 36, 0.03) 100%);
}

.req-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.req-card__icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5ebdf9;
    background: rgba(94, 189, 249, 0.12);
    border-radius: 8px;
    padding: 5px;
}
.req-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.req-card--important .req-card__icon {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.14);
}

.req-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.3;
}

.req-card__body {
    display: flex;
    flex-direction: column;
}

/* Один элемент без лейбла — крупный, акцентный */
.req-card__value--solo {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

/* Пары label/value (Минимум / Рекомендуется) */
.req-card__pairs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.req-card__pair {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    background: rgba(94, 189, 249, 0.06);
    border-left: 2px solid rgba(94, 189, 249, 0.45);
    border-radius: 0 8px 8px 0;
}
.req-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5ebdf9;
}
.req-card__value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    line-height: 1.4;
}
.req-card__pair:has(> .req-card__value:only-child) {
    background: transparent;
    border-left: 0;
    padding: 0;
}

/* Обычный список (античиты, bios, others) */
.req-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.req-card__list li {
    position: relative;
    padding-left: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
}
.req-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: #5ebdf9;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(94, 189, 249, 0.6);
}
.req-card--important .req-card__list li::before { background: #fbbf24; box-shadow: 0 0 6px rgba(251, 191, 36, 0.6); }

/* 4 → 3 → 2 → 1 колонки */
@media (max-width: 1100px) {
    #requirementsList.req-grid,
    .req-grid { column-count: 3; }
}
@media (max-width: 768px) {
    #requirementsList.req-grid,
    .req-grid { column-count: 2; column-gap: 12px; }
    .req-card { padding: 14px; margin-bottom: 12px; }
    .req-card__title { font-size: 13px; }
    .req-card__value--solo { font-size: 15px; }
    .req-card__value { font-size: 13px; }
}
@media (max-width: 460px) {
    #requirementsList.req-grid,
    .req-grid { column-count: 1; }
}

/* ============================================================
   Рендеринг текста товара: улучшенные стили (подзаголовки,
   списки, тех. термины как code, ссылки, интро-блок).
   ============================================================ */

.content-text .desc-intro {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.08) 0%, rgba(26, 144, 218, 0.04) 100%);
    border: 1px solid rgba(94, 189, 249, 0.2);
    border-left: 3px solid #5ebdf9;
    padding: 18px 22px;
    border-radius: 10px;
    margin: 0 0 22px 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.content-text .desc-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px 26px;
    margin: 18px 0;
    line-height: 1.7;
}

.content-text .desc-block:hover {
    border-color: rgba(94, 189, 249, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.content-text .desc-block.warning-block {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.06) 0%, rgba(250, 100, 21, 0.03) 100%);
    border-color: rgba(250, 204, 21, 0.3);
    border-left: 3px solid #fbbf24;
}

.content-text .desc-block.result-block {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.07) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-color: rgba(52, 211, 153, 0.3);
    border-left: 3px solid #34d399;
}

.content-text .desc-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.content-text .desc-block-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.content-text .desc-block h4.desc-subheader {
    font-size: 15px;
    font-weight: 600;
    color: #5ebdf9;
    margin: 16px 0 8px 0;
    padding: 0;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.content-text .desc-block h4.desc-subheader:first-child {
    margin-top: 0;
}

.content-text .desc-block p {
    color: rgba(255, 255, 255, 0.88);
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.75;
}

.content-text .desc-block ul,
.content-text .desc-block ol {
    margin: 10px 0;
    padding-left: 0;
    list-style: none;
}

.content-text .desc-block ul li,
.content-text .desc-block ol li {
    position: relative;
    padding: 6px 0 6px 26px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.65;
}

.content-text .desc-block ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 15px;
    width: 6px;
    height: 6px;
    background: #5ebdf9;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(94, 189, 249, 0.6);
}

.content-text .desc-block ol {
    counter-reset: ordered-list;
}

.content-text .desc-block ol li {
    counter-increment: ordered-list;
}

.content-text .desc-block ol li::before {
    content: counter(ordered-list) '.';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    text-align: right;
    color: #5ebdf9;
    font-weight: 700;
    font-size: 14px;
}

/* Тех. термины: inline-код */
.content-text code.desc-code,
.content-text .desc-block code,
.content-text .desc-intro code {
    background: rgba(94, 189, 249, 0.12);
    border: 1px solid rgba(94, 189, 249, 0.22);
    color: #a5d8ff;
    padding: 1px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', 'Consolas', 'SF Mono', Menlo, monospace;
    font-size: 0.88em;
    white-space: nowrap;
}

/* Ссылки в тексте */
.content-text a.desc-link,
.content-text .desc-block a,
.content-text .desc-intro a {
    color: #5ebdf9;
    text-decoration: underline;
    text-decoration-color: rgba(94, 189, 249, 0.4);
    text-underline-offset: 3px;
    transition: color 0.15s;
}

.content-text a.desc-link:hover,
.content-text .desc-block a:hover {
    color: #8ad1ff;
    text-decoration-color: #8ad1ff;
}

/* Плотная компоновка для мобильных */
@media (max-width: 768px) {
    .content-text .desc-block {
        padding: 16px 18px;
        margin: 14px 0;
    }
    .content-text .desc-block-title {
        font-size: 17px;
    }
    .content-text .desc-intro {
        padding: 14px 16px;
        font-size: 15px;
    }
    .content-text .desc-block h4.desc-subheader {
        font-size: 14px;
    }
    .content-text .desc-block ul li,
    .content-text .desc-block ol li,
    .content-text .desc-block p {
        font-size: 14px;
    }
}
