/* ============================================
   CSS Syntax Blaster - Temple Run Edition
   Screen Styles - Ancient Temple Menus
   ============================================ */

/* ---------- Screen Overlay Base ---------- */
.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-screens);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: 
        radial-gradient(ellipse at center, rgba(42, 36, 25, 0.85) 0%, rgba(26, 46, 26, 0.95) 100%),
        linear-gradient(to bottom, rgba(26, 46, 26, 0.9), rgba(31, 23, 16, 0.95));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    padding: var(--space-lg);
    padding-top: 60px;
    padding-bottom: 80px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.screen-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Main menu centers content */
#mainMenu {
    justify-content: center;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

/* ---------- Game Title (Main Menu) ---------- */
.game-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 8vw, 56px);
    font-weight: 900;
    color: var(--gold);
    text-align: center;
    margin-bottom: var(--space-xs);
    line-height: 1.1;
    flex-shrink: 0;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(212, 168, 85, 0.5),
        0 0 40px rgba(212, 168, 85, 0.2);
    letter-spacing: 2px;
    filter: drop-shadow(0 0 15px rgba(212, 168, 85, 0.4));
}

.game-subtitle {
    font-family: var(--font-display);
    font-size: clamp(10px, 3vw, 14px);
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
    flex-shrink: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.menu-hint {
    margin-top: 20px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    opacity: 0.7;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ---------- Screen Title (Sub-screens) ---------- */
.screen-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 5vw, 36px);
    font-weight: 900;
    color: var(--gold);
    text-align: center;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-shrink: 0;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(212, 168, 85, 0.4);
    letter-spacing: 2px;
}

.game-over-title {
    color: #d4855a;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(212, 133, 90, 0.5);
    font-size: clamp(22px, 6vw, 40px);
}

.level-complete-title {
    color: var(--moss-light);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(90, 122, 77, 0.5);
    font-size: clamp(22px, 6vw, 40px);
}

/* ---------- Stats Grid - Stone Tablets ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: 20px 0;
    width: min(90%, 350px);
    flex-shrink: 0;
}

.stats-grid.compact {
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--stone-medium), var(--stone-dark));
    border: 1px solid var(--border-carved);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.5),
        inset -2px -2px 4px rgba(255, 255, 255, 0.08),
        0 3px 8px rgba(0, 0, 0, 0.4);
}

.stat-card:hover {
    border-color: var(--gold-dark);
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.5),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.5);
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 
        0 0 10px rgba(212, 168, 85, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.stat-card .stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ---------- New High Score ---------- */
.new-high-score {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin: 5px 0;
    animation: comboPulse 1s ease infinite;
    text-align: center;
    text-shadow: 
        0 0 12px rgba(232, 192, 119, 0.8),
        1px 1px 3px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.new-high-score.hidden {
    display: none;
}

/* ---------- Difficulty Selector - Stone Buttons ---------- */
.difficulty-selector {
    display: flex;
    gap: var(--space-sm);
    margin: 15px 0;
    flex-wrap: wrap;
    justify-content: center;
    flex-shrink: 0;
}

.diff-btn {
    font-family: var(--font-display);
    font-size: 11px;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-stone);
    border: 1px solid var(--border-stone);
    background: linear-gradient(135deg, var(--stone-light), var(--stone-medium));
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.4),
        inset -1px -1px 3px rgba(255, 255, 255, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.diff-btn:hover {
    border-color: var(--border-carved);
    color: var(--warm-highlight);
}

.diff-btn:active {
    transform: scale(0.95);
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.6),
        inset -1px -1px 2px rgba(255, 255, 255, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.3);
}

.diff-btn.active {
    border-color: var(--gold-dark);
    color: var(--gold-light);
    background: linear-gradient(135deg, var(--stone-medium), var(--stone-dark));
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.6),
        inset -2px -2px 5px rgba(212, 168, 85, 0.15),
        0 0 12px rgba(212, 168, 85, 0.3);
    text-shadow: 0 0 8px rgba(212, 168, 85, 0.5);
}

/* Difficulty-specific active colors (subtle variations) */
.diff-btn[data-diff="easy"].active {
    border-color: var(--moss-green);
    color: var(--moss-light);
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.6),
        inset -2px -2px 5px rgba(90, 122, 77, 0.15),
        0 0 10px rgba(90, 122, 77, 0.3);
}

.diff-btn[data-diff="normal"].active {
    border-color: var(--gold-dark);
    color: var(--gold);
}

.diff-btn[data-diff="hard"].active {
    border-color: #c87a3a;
    color: #e8a855;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.6),
        inset -2px -2px 5px rgba(232, 168, 85, 0.15),
        0 0 10px rgba(232, 168, 85, 0.3);
}

.diff-btn[data-diff="insane"].active {
    border-color: #a84432;
    color: #d4855a;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.6),
        inset -2px -2px 5px rgba(212, 133, 90, 0.15),
        0 0 10px rgba(212, 133, 90, 0.3);
}

/* ---------- Leaderboard - Stone List ---------- */
.leaderboard {
    width: min(90%, 350px);
    max-height: 40vh;
    overflow-y: auto;
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(74, 63, 47, 0.3), rgba(42, 36, 25, 0.3));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-stone);
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.4);
}

.leaderboard-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.lb-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid rgba(212, 168, 85, 0.1);
    transition: background var(--transition-fast);
}

.lb-entry:hover {
    background: rgba(212, 168, 85, 0.08);
}

.lb-rank {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    width: 30px;
    flex-shrink: 0;
    color: var(--text-muted);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.lb-rank.gold {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 168, 85, 0.6);
}

.lb-rank.silver {
    color: #c0c0c0;
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
}

.lb-rank.bronze {
    color: #cd7f32;
    text-shadow: 0 0 8px rgba(205, 127, 50, 0.4);
}

.lb-info {
    flex: 1;
    margin-left: var(--space-sm);
}

.lb-score {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 6px rgba(212, 168, 85, 0.5);
}

.lb-details {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ---------- Settings Panel - Stone Tablet ---------- */
.settings-panel {
    width: min(90%, 400px);
    max-height: 55vh;
    overflow-y: auto;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(74, 63, 47, 0.3), rgba(42, 36, 25, 0.3));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-stone);
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.4);
}

.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(212, 168, 85, 0.1);
}

.setting-row:last-child {
    border-bottom: none;
}

.setting-label {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ---------- Level Complete Stars ---------- */
.level-complete-stars {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    justify-content: center;
    flex-shrink: 0;
}

.level-star {
    width: 48px;
    height: 48px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.level-star.earned {
    filter: 
        brightness(1.2)
        drop-shadow(0 0 10px rgba(212, 168, 85, 0.6));
    animation: starEarn 0.5s ease;
}

.level-star.empty {
    filter: brightness(0.3);
    opacity: 0.3;
}

.level-star:nth-child(1).earned {
    animation-delay: 0.1s;
}

.level-star:nth-child(2).earned {
    animation-delay: 0.3s;
}

.level-star:nth-child(3).earned {
    animation-delay: 0.5s;
}

@keyframes starEarn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ---------- Level Select Grid ---------- */
.level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: var(--space-sm);
    width: min(95%, 500px);
    max-height: 50vh;
    overflow-y: auto;
    padding: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
}

.level-cell {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-stone);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid var(--border-stone);
    background: linear-gradient(135deg, var(--stone-light), var(--stone-medium));
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.4),
        inset -1px -1px 3px rgba(255, 255, 255, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.4);
}

.level-cell:hover:not(.locked) {
    border-color: var(--gold-dark);
    background: linear-gradient(135deg, var(--stone-light), var(--stone-dark));
    transform: scale(1.05);
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.5),
        inset -1px -1px 3px rgba(212, 168, 85, 0.15),
        0 0 10px rgba(212, 168, 85, 0.3);
}

.level-cell:active:not(.locked) {
    transform: scale(0.95);
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.6),
        inset -1px -1px 2px rgba(255, 255, 255, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.3);
}

.level-cell .level-number {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--warm-highlight);
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.level-cell .level-stars-mini {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.level-cell .level-stars-mini .mini-star {
    width: 8px;
    height: 8px;
}

.level-cell .mini-star.earned {
    filter: brightness(1.2) drop-shadow(0 0 2px rgba(212, 168, 85, 0.6));
}

.level-cell .mini-star.empty {
    filter: brightness(0.3);
    opacity: 0.3;
}

/* Locked level */
.level-cell.locked {
    opacity: 0.4;
    cursor: not-allowed;
}

.level-cell.locked .level-number {
    display: none;
}

.level-cell .lock-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0.5);
    opacity: 0.6;
}

/* Current level */
.level-cell.current {
    border-color: var(--gold);
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.4),
        inset -1px -1px 3px rgba(212, 168, 85, 0.2),
        0 0 15px rgba(212, 168, 85, 0.5);
    animation: levelPulse 2s ease infinite;
}

@keyframes levelPulse {
    0%, 100% {
        box-shadow: 
            inset 1px 1px 3px rgba(0, 0, 0, 0.4),
            inset -1px -1px 3px rgba(212, 168, 85, 0.2),
            0 0 15px rgba(212, 168, 85, 0.5);
    }
    50% {
        box-shadow: 
            inset 1px 1px 3px rgba(0, 0, 0, 0.4),
            inset -1px -1px 3px rgba(212, 168, 85, 0.3),
            0 0 20px rgba(212, 168, 85, 0.7);
    }
}

/* Completed level */
.level-cell.completed {
    border-color: var(--moss-green);
    background: linear-gradient(135deg, var(--moss-green), var(--stone-medium));
}

/* Boss level */
.level-cell.boss-level {
    border-color: #a84432;
}

.level-cell.boss-level.current {
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.4),
        inset -1px -1px 3px rgba(212, 133, 90, 0.2),
        0 0 15px rgba(212, 133, 90, 0.5);
}

.level-cell .boss-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    filter: brightness(1.1) drop-shadow(0 0 4px rgba(212, 133, 90, 0.5));
}

/* ============================================
   HOW TO PLAY MODAL - Stone Tablet
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-container {
    background: 
        linear-gradient(135deg, rgba(74, 63, 47, 0.98) 0%, rgba(42, 36, 25, 0.98) 100%);
    border: 2px solid var(--border-carved);
    border-radius: var(--radius-lg);
    box-shadow: 
        inset 2px 2px 6px rgba(0, 0, 0, 0.5),
        inset -2px -2px 6px rgba(255, 255, 255, 0.08),
        0 10px 40px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 2px solid var(--border-carved);
    flex-shrink: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 
        0 0 15px rgba(212, 168, 85, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
}

.modal-close-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border-carved);
    background: linear-gradient(135deg, var(--stone-light), var(--stone-medium));
    border-radius: var(--radius-stone);
    color: #d4855a;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.4),
        inset -1px -1px 3px rgba(255, 255, 255, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.5);
}

.modal-close-btn:hover {
    background: linear-gradient(135deg, #a84432, #8a3828);
    border-color: #d4855a;
    transform: scale(1.05);
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(212, 133, 90, 0.4);
}

.modal-close-btn:active {
    transform: scale(0.95);
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 28px;
    scroll-behavior: smooth;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--stone-dark);
    border-radius: 5px;
    margin: 4px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 5px;
    border: 2px solid var(--stone-medium);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* How to Play Content */
.how-to-play-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.htp-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    border: 1px solid var(--border-stone);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--gold-dark);
}

.htp-section:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
    border-left-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 85, 0.2);
}

.htp-heading {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    text-shadow: 
        0 0 8px rgba(212, 168, 85, 0.5),
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.htp-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.htp-text:last-child {
    margin-bottom: 0;
}

.htp-text strong {
    color: var(--warm-highlight);
    font-weight: 600;
}

.htp-text code {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-stone);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--gold-light);
}

.htp-example {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--moss-green);
    padding: 12px 16px;
    margin: 12px 0;
    border-radius: 4px;
}

.htp-example-challenge {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.htp-example-answer {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--moss-light);
    text-shadow: 0 0 6px rgba(90, 122, 77, 0.5);
}

.htp-example-answer code {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--moss-green);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--moss-light);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-container {
        max-height: 90vh;
        margin: 10px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-close-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .modal-content {
        padding: 20px;
    }

    .htp-heading {
        font-size: 18px;
    }

    .htp-text {
        font-size: 15px;
    }

    .htp-section {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }

    .modal-container {
        border-radius: var(--radius-md);
        max-height: 92vh;
    }

    .modal-header {
        padding: 16px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-close-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .modal-content {
        padding: 16px;
    }

    .htp-section {
        padding: 14px;
    }

    .htp-heading {
        font-size: 16px;
    }

    .htp-text {
        font-size: 14px;
    }
}