    .miners-accordion {
        background: #292e31;
        width: 100%;
        border-radius: 20px;
        padding: 4px 0;
    }
    .accordion-item {
        background: #1e2225;
        border: 1px solid #3a3f44;
        border-radius: 16px!important;
        margin-bottom: 16px;
        overflow: hidden;
    }
    .accordion-header {
        background: #23272b;
        padding: 16px 20px;
        cursor: pointer;
        font-weight: 700;
        font-size: 1.3rem;
        color: #eef2f8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }
    .accordion-header:hover {
        background: #2c3136;
    }
    .accordion-icon {
        font-size: 1.1rem;
        transition: transform 0.25s;
        color: #b9c3d4;
    }
    .accordion-item.active .accordion-icon {
        transform: rotate(180deg);
    }
    .accordion-content {
        display: none;
        border-top: 1px solid #3a3f44;
    }
    .accordion-item.active .accordion-content {
        display: block;
    }
    .table-wrapper {
        width: 100%;
        overflow-x: auto;
        cursor: grab;
        padding: 16px;
        -webkit-overflow-scrolling: touch;
    }
    .table-wrapper:active {
        cursor: grabbing;
    }
    table {
        width: 100%;
        min-width: 900px;
        border-collapse: collapse;
        font-size: 13.5px;
        background: #1e2225;
    }
    th, td {
        border: 1px solid #686868;
        padding: 12px;
        text-align: left;
    }
    th {
        background: #252a2f;
        color: #dddddd;
        font-weight: 600;
    }
    td {
        color: #cfddee;
        background: #1e2225;
    }
    .model-name {
        color: #D19A66;
        font-weight: 600;
        white-space: nowrap;
    }
    .platform-badge {
        display: inline-flex;
        background: #2f353b;
        padding: 4px 8px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 500;
        margin: 2px 4px 2px 0;
        color: #cbd5e6;
    }
    .platform-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .cooling-tag {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: 500;
        background: #2a3238;
        color: #b9d0f0;
    }
    .icon-cell {
        text-align: center;
        vertical-align: middle;
    }
    .preset-icon, .scheme-icon {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: opacity 0.2s;
    }
    .preset-icon:hover, .scheme-icon:hover {
        opacity: 0.7;
    }
    /* Модалка */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
        backdrop-filter: blur(4px);
    }
    .modal-content {
        background: #1e2225;
        border-radius: 20px;
        width: 90%;
        max-width: 500px;
        border: 1px solid #686868;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 auto;
    }
    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid #3a3f44;
    }
    .modal-title {
        color: #D19A66;
        font-size: 1.2rem;
        font-weight: 600;
    }
    .modal-close {
        color: #b9c3d4;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.2s;
    }
    .modal-close:hover {
        color: #D19A66;
    }
    .modal-body {
        padding: 20px;
        max-height: 60vh;
        overflow-y: auto;
    }

    .presets-table {
        width: 100%;min-width: auto;
        border-collapse: collapse;
        font-size: 13px;
    }
    .presets-table th, .presets-table td {
        border: 1px solid #3a3f44;
        padding: 6px;
        text-align: center;
    }
    .presets-table th {
        background: #252a2f;
        color: #D19A66;
    }

    .scheme-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .scheme-gallery img {
        max-width: 100%;
        border-radius: 12px;
        border: 1px solid #686868;
        background: #2a2f33;
    }
    @media (max-width: 640px) {
        .accordion-header {
            padding: 12px 16px;
            font-size: 1.1rem;
        }
        th, td {
            padding: 8px 10px;
            font-size: 12px;
        }
        .modal-content {
            width: 95%;
        }
    }


