/**
 * OLAMI Master Manager — Trivia Game Admin Styles
 * File: assets/css/trivia-game.css
 * Extracted from games.css in Phase 19C (v428)
 *
 * Contains: Trivia import section, admin wrap, stages, stats, balance settings
 */

/* Source: includes/blackjack-trivia.php line 2364 (block 1/2) */
.trivia-import-section textarea:focus {
        outline: none;
        border-color: var(--info);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    }
    .trivia-import-section code {
        background: rgba(0,0,0,0.3);
        padding: 2px 6px;
        border-radius: 4px;
        font-family: 'Monaco', 'Consolas', monospace;
        font-size: 11px;
    }

/* Source: includes/blackjack-trivia.php line 2827 (block 2/2) */
.trivia-admin-wrap {
        max-width: 1200px;
        padding: 20px;
    }
    
    .trivia-back-link {
        display: inline-block;
        color: var(--info);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .trivia-back-link:hover {
        color: var(--info-text);
        text-decoration: underline;
    }
    
    .trivia-header {
        margin-bottom: 20px;
    }
    
    .trivia-header h2 {
        margin: 0 0 5px 0;
        font-size: 24px;
    }
    
    .trivia-header p {
        margin: 0;
        color: var(--text-secondary);
    }
    
    .trivia-tabs {
        display: flex;
        gap: 5px;
        border-bottom: 2px solid var(--border-light);
        margin-bottom: 25px;
        background: var(--surface);
        padding: 0 15px;
        border-radius: 8px 8px 0 0;
    }
    
    .trivia-tab {
        padding: 15px 20px;
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 600;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        transition: all 0.2s;
        font-size: 14px;
    }
    
    .trivia-tab:hover {
        color: var(--text);
        background: var(--bg);
    }
    
    .trivia-tab.active {
        color: var(--info);
        border-bottom-color: var(--info);
        background: var(--surface);
    }
    
    .trivia-content {
        background: var(--surface);
        border-radius: 0 0 8px 8px;
        padding: 25px;
        box-shadow: var(--shadow);
    }
    
    .trivia-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        text-decoration: none;
        border: none;
        transition: all 0.2s;
    }
    
    .trivia-btn.primary {
        background: var(--info);
        color: var(--text-inverse);
    }

    .trivia-btn.primary:hover {
        background: var(--info-text);
        color: var(--text-inverse);
    }
    
    .trivia-btn.secondary {
        background: var(--bg);
        color: var(--text);
    }

    .trivia-btn.secondary:hover {
        background: var(--border);
        color: var(--text);
    }
    
    .trivia-btn.small {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Question Form */
    .trivia-form-wrap {
        background: var(--surface);
        padding: 25px;
        border-radius: 4px;
        border: 1px solid var(--border);
    }
    
    .trivia-form-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border);
    }

    .trivia-form-header h3 {
        margin: 0;
        font-size: 18px;
        color: var(--text);
    }
    
    .form-section {
        margin-bottom: 25px;
    }
    
    .form-section.half {
        flex: 1;
        min-width: 200px;
    }
    
    .form-row {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .form-label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text);
    }

    .form-label .optional {
        font-weight: normal;
        color: var(--text-muted);
        font-size: 12px;
    }
    
    .form-input, .form-select, .form-textarea {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid var(--text-muted);
        border-radius: 4px;
        font-size: 14px;
        transition: border-color 0.2s;
        background: var(--surface);
        box-shadow: 0 0 0 transparent;
        color: var(--text);
    }
    
    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--info);
        box-shadow: 0 0 0 1px var(--info);
    }
    
    .form-input.small {
        width: 120px;
    }
    
    .form-hint {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 5px;
    }
    
    .answers-container {
        margin-bottom: 10px;
    }
    
    .answer-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .answer-row input[type="radio"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }
    
    .answer-input {
        flex: 1;
    }
    
    .remove-answer {
        width: 30px;
        height: 30px;
        border: none;
        background: var(--danger-bg);
        color: var(--danger-text);
        border-radius: 6px;
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
    }
    
    .stages-checkboxes {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .stage-checkbox {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        background: var(--bg);
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s;
    }

    .stage-checkbox:hover {
        background: var(--surface-active);
    }
    
    .stage-checkbox input:checked + span {
        font-weight: 600;
    }
    
    .reward-input {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .input-suffix {
        color: var(--text-secondary);
    }
    
    .form-actions {
        display: flex;
        gap: 10px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid var(--border-light);
    }
    
    /* Question List */
    .trivia-list-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .trivia-filters {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .filter-search {
        padding: 8px 14px;
        border: 1px solid var(--border);
        border-radius: 8px;
        min-width: 200px;
    }

    .filter-select {
        padding: 8px 14px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--surface);
    }
    
    .trivia-stats-bar {
        display: flex;
        gap: 20px;
        padding: 12px 20px;
        background: var(--bg);
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .stat-item {
        color: var(--text-secondary);
        font-size: 13px;
    }
    
    .trivia-empty {
        text-align: center;
        padding: 60px 20px;
        background: var(--surface);
        border-radius: var(--radius-md);
    }
    
    .trivia-empty .empty-icon {
        font-size: 60px;
        display: block;
        margin-bottom: 15px;
    }
    
    .trivia-empty h3 {
        margin: 0 0 10px 0;
        color: var(--text);
    }
    
    .trivia-empty p {
        color: var(--text-secondary);
        margin-bottom: 20px;
    }
    
    .trivia-questions-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .question-card {
        background: var(--surface);
        padding: 18px 20px;
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid var(--border);
        transition: border-color 0.2s;
    }
    
    .question-card:hover {
        border-color: var(--info);
    }

    .question-card.inactive {
        opacity: 0.5;
    }
    
    .question-main {
        flex: 1;
    }
    
    .question-text {
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--text);
    }

    .question-meta {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .meta-badge {
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
    }
    
    .meta-badge.cat {
        background: var(--info-bg);
        color: var(--info-text);
    }
    
    .meta-badge.diff {
        background: var(--warning-bg);
        color: var(--warning-text);
    }

    .meta-badge.stats {
        background: var(--bg);
        color: var(--text);
    }
    
    .question-actions {
        display: flex;
        gap: 8px;
    }
    
    .action-btn {
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s;
    }
    
    .action-btn.edit {
        background: var(--info-bg);
        color: var(--info-text);
    }

    .action-btn.edit:hover {
        background: var(--info-bg);
    }
    
    .action-btn.delete {
        background: var(--danger-bg);
        color: var(--danger-text);
    }
    
    .action-btn.delete:hover {
        background: var(--danger-bg);
    }
    
    /* Stages Tab */
    .stages-intro {
        background: var(--info-bg);
        padding: 15px 20px;
        border-radius: 8px;
        margin-bottom: 25px;
        color: var(--info-text);
    }
    
    .stage-card {
        background: var(--surface);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        border: 1px solid var(--border);
    }
    
    .stage-card.disabled {
        opacity: 0.6;
    }
    
    .stage-card.enabled {
        border-color: var(--info);
    }

    .stage-header {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 20px;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
    }
    
    .stage-toggle {
        position: relative;
        width: 50px;
        height: 26px;
        flex-shrink: 0;
    }
    
    .stage-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }
    
    .stage-toggle .toggle-slider {
        position: absolute;
        cursor: pointer;
        inset: 0;
        background: var(--text-muted);
        border-radius: 26px;
        transition: 0.3s;
    }
    
    .stage-toggle .toggle-slider:before {
        content: "";
        position: absolute;
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
        background: white;
        border-radius: 50%;
        transition: 0.3s;
    }
    
    .stage-toggle input:checked + .toggle-slider {
        background: var(--info);
    }
    
    .stage-toggle input:checked + .toggle-slider:before {
        transform: translateX(24px);
    }
    
    .stage-icon {
        font-size: 24px;
    }
    
    .stage-title h4 {
        margin: 0;
        font-size: 16px;
    }
    
    .stage-title .stage-desc {
        font-size: 12px;
        color: var(--text-secondary);
    }
    
    .stage-count {
        margin-left: auto;
        background: var(--info-bg);
        color: var(--info-text);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }
    
    .stage-config {
        padding: 20px;
    }
    
    .config-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .config-row label:first-child {
        min-width: 180px;
        font-weight: 500;
        color: var(--text-secondary);
    }
    
    .small-input {
        width: 80px;
        padding: 6px 10px;
        border: 1px solid var(--border);
        border-radius: 6px;
        text-align: center;
    }

    .tiny-input {
        width: 60px;
        padding: 4px 8px;
        border: 1px solid var(--border);
        border-radius: 4px;
        text-align: center;
    }
    
    /* Balance Tab */
    .balance-section {
        background: var(--surface);
        padding: 25px;
        border-radius: 4px;
        margin-bottom: 20px;
        border: 1px solid var(--border);
    }
    
    .balance-section h3 {
        margin: 0 0 5px 0;
        font-size: 18px;
        color: var(--text);
    }
    
    .balance-section .section-desc {
        color: var(--text-secondary);
        margin: 0 0 20px 0;
    }
    
    .luck-slider-wrap {
        max-width: 500px;
    }
    
    .luck-labels {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: var(--text-secondary);
        margin-bottom: 8px;
    }
    
    .luck-slider {
        width: 100%;
        height: 10px;
        border-radius: 5px;
        -webkit-appearance: none;
        appearance: none;
        background: linear-gradient(to right, var(--danger) 0%, var(--warning) 50%, var(--success) 100%);
        cursor: pointer;
    }
    
    .luck-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--surface);
        border: 2px solid var(--info);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        cursor: pointer;
    }

    .luck-slider::-moz-range-thumb {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--surface);
        border: 2px solid var(--info);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        cursor: pointer;
    }
    
    .luck-value {
        margin-top: 12px;
        font-weight: 600;
        color: var(--text);
    }
    
    .luck-warning {
        margin-top: 15px;
        padding: 12px 15px;
        background: var(--warning-bg);
        border: 1px solid var(--warning);
        border-radius: 8px;
        color: var(--warning-text);
        font-size: 13px;
    }
    
    /* Economy Control Section */
    .economy-control-section {
        background: linear-gradient(135deg, var(--bg), var(--surface-active));
        border: 2px solid var(--border);
    }
    
    .economy-alert {
        margin-bottom: 20px;
    }
    
    .reserve-status {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 16px;
    }
    
    .reserve-status.healthy {
        background: linear-gradient(135deg, var(--success-bg), var(--success));
        color: var(--success-text);
    }
    
    .reserve-status.medium {
        background: linear-gradient(135deg, var(--warning-bg), var(--warning-bg));
        color: var(--warning-text);
    }
    
    .reserve-status.low {
        background: linear-gradient(135deg, var(--danger-bg), var(--danger));
        color: var(--danger-text);
    }
    
    .reserve-icon {
        font-size: 24px;
    }
    
    .economy-toggle {
        background: linear-gradient(135deg, var(--info-bg), var(--info-bg)) !important;
        border: 1px solid var(--info);
    }

    .economy-toggle:hover {
        background: linear-gradient(135deg, var(--info-bg), var(--info)) !important;
    }
    
    .rules-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .rule-checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        background: var(--bg);
        border-radius: 8px;
        cursor: pointer;
    }
    
    .rule-checkbox input {
        width: 18px;
        height: 18px;
    }
    
    .rule-info strong {
        display: block;
    }
    
    .rule-info span {
        font-size: 12px;
        color: var(--text-secondary);
    }
    
    .rule-select {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        background: var(--bg);
        border-radius: 8px;
    }
    
    .difficulty-modes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .mode-option {
        cursor: pointer;
    }
    
    .mode-option input {
        display: none;
    }
    
    .mode-card {
        padding: 15px;
        border: 1px solid var(--border);
        border-radius: 4px;
        transition: all 0.2s;
        background: var(--surface);
    }
    
    .mode-option input:checked + .mode-card {
        border-color: var(--info);
        background: var(--info-bg);
    }
    
    .mode-card strong {
        display: block;
        margin-bottom: 4px;
        color: var(--text);
    }

    .mode-card span {
        font-size: 12px;
        color: var(--text-secondary);
    }
    
    .auto-scale-settings, .fixed-settings {
        background: var(--bg);
        padding: 15px;
        border-radius: 8px;
    }
    
    .streak-grid {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .streak-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 15px;
        background: var(--warning-bg);
        border-radius: 8px;
    }
    
    .streak-num {
        font-size: 20px;
        font-weight: 800;
        color: var(--warning-text);
    }

    /* Stats Tab */
    .stats-overview {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .stat-card {
        background: var(--surface);
        padding: 20px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 15px;
        border: 1px solid var(--border);
    }
    
    .stat-icon {
        font-size: 32px;
    }
    
    .stat-value {
        font-size: 28px;
        font-weight: 700;
        display: block;
        color: var(--text);
    }

    .stat-label {
        font-size: 12px;
        color: var(--text-secondary);
        text-transform: uppercase;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .stats-section {
        background: var(--surface);
        padding: 20px;
        border-radius: 4px;
        border: 1px solid var(--border);
    }
    
    .stats-section h3 {
        margin: 0 0 15px 0;
        font-size: 16px;
        color: var(--text);
    }

    .stats-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .stats-table th, .stats-table td {
        padding: 10px 8px;
        text-align: left;
        border-bottom: 1px solid var(--border-light);
    }

    .stats-table th {
        font-size: 11px;
        text-transform: uppercase;
        color: var(--text-muted);
    }
    
    .question-stats-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .question-stats-list li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .q-text {
        color: var(--text);
        font-size: 13px;
    }
    
    .q-rate {
        font-weight: 700;
        font-size: 13px;
    }
    
    .q-rate.good {
        color: var(--success);
    }
    
    .q-rate.bad {
        color: var(--danger);
    }
    
    .no-data {
        color: var(--text-muted);
        text-align: center;
        padding: 20px;
    }
    
    /* ========================================
       MOBILE RESPONSIVE STYLES
       ======================================== */
    
    @media screen and (max-width: 1024px) {
        .trivia-admin-wrap {
            padding: 15px 10px;
        }
        
        .trivia-content {
            padding: 20px 15px;
        }
        
        .stage-config {
            padding: 15px;
        }
        
        .config-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }
        
        .config-row label:first-child {
            min-width: auto;
        }
        
        .balance-section {
            padding: 18px 15px;
        }
    }
    
    @media screen and (max-width: 782px) {
        .trivia-admin-wrap {
            padding: 10px 5px;
            max-width: 100%;
        }
        
        .trivia-header h2 {
            font-size: 20px;
        }
        
        /* Tabs - horizontal scroll on mobile */
        .trivia-tabs {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            gap: 0;
            padding: 0 5px;
        }
        
        .trivia-tab {
            padding: 12px 14px;
            font-size: 13px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .trivia-content {
            padding: 15px 12px;
            border-radius: 0 0 8px 8px;
        }
        
        /* Buttons */
        .trivia-btn {
            padding: 10px 16px;
            font-size: 12px;
            width: 100%;
            justify-content: center;
        }
        
        .trivia-btn.small {
            padding: 8px 12px;
            font-size: 11px;
        }
        
        /* Forms */
        .trivia-form-wrap {
            padding: 15px 12px;
        }
        
        .trivia-form-header {
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }
        
        .form-row {
            flex-direction: column;
            gap: 15px;
        }
        
        .form-section {
            margin-bottom: 18px;
        }
        
        .form-section.half {
            min-width: 100%;
        }
        
        .form-input, .form-select, .form-textarea {
            padding: 12px;
            font-size: 16px; /* Prevent zoom on iOS */
        }
        
        .form-input.small {
            width: 100%;
        }
        
        .answer-row {
            flex-wrap: wrap;
        }
        
        .answer-input {
            flex: 1 1 100%;
            order: 1;
        }
        
        .answer-row input[type="radio"] {
            order: 0;
        }
        
        .remove-answer {
            order: 2;
        }
        
        .stages-checkboxes {
            gap: 8px;
        }
        
        .stage-checkbox {
            padding: 10px 12px;
            font-size: 13px;
        }
        
        .form-actions {
            flex-direction: column;
        }
        
        .form-actions .trivia-btn {
            width: 100%;
        }
        
        /* Question List */
        .trivia-list-header {
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
        }
        
        .trivia-filters {
            flex-direction: column;
            width: 100%;
        }
        
        .filter-search {
            min-width: 100%;
            width: 100%;
        }
        
        .filter-select {
            width: 100%;
        }
        
        .trivia-stats-bar {
            flex-wrap: wrap;
            gap: 10px 15px;
            padding: 12px 15px;
        }
        
        .question-card {
            padding: 15px;
            flex-direction: column;
            gap: 12px;
        }
        
        .question-content {
            flex: 1 1 100%;
        }
        
        .question-text {
            font-size: 14px;
            -webkit-line-clamp: 3;
        }
        
        .question-meta {
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .question-actions {
            width: 100%;
            justify-content: flex-end;
        }
        
        .action-btn {
            padding: 8px 14px;
        }
        
        /* Stage Cards */
        .stages-intro {
            padding: 12px 15px;
            font-size: 13px;
        }
        
        .stage-header {
            flex-wrap: wrap;
            padding: 15px;
            gap: 10px;
        }
        
        .stage-icon {
            font-size: 20px;
        }
        
        .stage-title {
            flex: 1 1 calc(100% - 80px);
        }
        
        .stage-title h4 {
            font-size: 14px;
        }
        
        .stage-count {
            order: 3;
            width: 100%;
            text-align: center;
            margin-left: 0;
            margin-top: 5px;
        }
        
        .stage-config {
            padding: 12px;
        }
        
        .config-row {
            flex-direction: column;
            align-items: stretch;
            gap: 5px;
        }
        
        .config-row label:first-child {
            min-width: 100%;
            margin-bottom: 2px;
        }
        
        .small-input, .tiny-input {
            width: 100%;
            max-width: 150px;
        }
        
        /* Balance Tab */
        .balance-section {
            padding: 15px 12px;
        }
        
        .balance-section h3 {
            font-size: 16px;
        }
        
        .luck-slider-wrap {
            max-width: 100%;
        }
        
        /* Stats Table */
        .stats-table {
            font-size: 12px;
        }
        
        .stats-table th, .stats-table td {
            padding: 8px 5px;
        }
        
        /* Empty State */
        .trivia-empty {
            padding: 40px 15px;
        }
        
        .trivia-empty .empty-icon {
            font-size: 45px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .trivia-header h2 {
            font-size: 18px;
        }
        
        .trivia-tab {
            padding: 10px 12px;
            font-size: 12px;
        }
        
        .trivia-content {
            padding: 12px 10px;
        }
        
        .question-card {
            padding: 12px;
        }
        
        .question-actions {
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .action-btn {
            flex: 1;
            text-align: center;
            min-width: calc(50% - 3px);
        }
        
        .stage-header {
            padding: 12px;
        }
        
        .stage-toggle {
            width: 44px;
            height: 24px;
        }
        
        .stage-toggle .toggle-slider:before {
            height: 18px;
            width: 18px;
        }
        
        .stage-toggle input:checked + .toggle-slider:before {
            transform: translateX(20px);
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

