:root {
    --bg-dark: #0b0c10;
    --card-bg: rgba(15, 20, 25, 0.6);
    --card-border: rgba(0, 240, 255, 0.15);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-primary: #ff2a7a; /* Bright Pink from eyes/hair highlight */
    --accent-secondary: #00f0ff; /* Bright Cyan from hair */
    --accent-tertiary: #ffe600; /* Yellow from background */
    --success: #22c55e;
    --rarity-1: #94a3b8;
    --rarity-2: #38bdf8;
    --rarity-3: #fcd34d;
    --rarity-4: #c084fc;
    --rarity-5: #fbbf24;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px; /* Space for navbar */
}
.bg-glow {
    position: fixed; top: -20%; left: -10%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255, 42, 122, 0.15) 0%, rgba(11,12,16,0) 70%); /* Pink Glow */
    z-index: -1; border-radius: 50%; filter: blur(80px);
}
.bg-glow::after {
    content: ''; position: absolute; bottom: -100%; right: -100%; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(11,12,16,0) 70%); /* Cyan Glow */
    border-radius: 50%;
}
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: 70px;
    background: rgba(10, 10, 15, 0.8); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border); z-index: 1000;
    display: flex; justify-content: space-between; align-items: center; padding: 0 2rem;
}
.nav-brand {
    font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px;
}
.highlight {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 1rem; }
.nav-btn {
    background: transparent; border: none; color: var(--text-muted);
    font-family: inherit; font-size: 1rem; font-weight: 500;
    cursor: pointer; padding: 0.5rem 1rem; border-radius: 8px; transition: all 0.3s;
}
.nav-btn:hover { color: white; background: rgba(255,255,255,0.05); }
.nav-btn.active { color: white; background: rgba(255,255,255,0.1); }
.container { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem; }
.view-section { display: none; animation: fadeIn 0.4s ease forwards; }
.view-section.active { display: block; }
header { text-align: center; margin-bottom: 3rem; }
h1 { font-size: 3rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 0.5rem; }
.subtitle { color: var(--text-muted); font-size: 1.1rem; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem; }
.progress-container {
    max-width: 600px; margin: 0 auto; background: var(--card-bg);
    padding: 1rem 1.5rem; border-radius: 16px; border: 1px solid var(--card-border);
}
.progress-text { display: flex; justify-content: space-between; margin-bottom: 0.8rem; font-weight: 500; font-size: 0.95rem; }
.progress-bar-bg { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent-secondary), var(--success)); width: 0%; transition: width 0.5s ease-out; }
.controls-glass {
    background: rgba(20, 20, 30, 0.6); backdrop-filter: blur(16px);
    border: 1px solid var(--card-border); border-radius: 20px; padding: 1.5rem;
    margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1.5rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.search-box { position: relative; width: 100%; }
.search-icon { position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
input[type="text"] {
    width: 100%; background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); color: white;
    padding: 1rem 1rem 1rem 3.5rem; border-radius: 12px; font-size: 1.1rem; font-family: inherit; transition: all 0.3s;
}
input[type="text"]:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 15px rgba(255,42,122,0.25); }
.filter-box, .status-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn, .status-btn {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-muted);
    padding: 0.6rem 1.2rem; border-radius: 30px; cursor: pointer; font-family: inherit; font-size: 0.9rem; transition: all 0.2s;
}
.filter-btn:hover, .status-btn:hover { background: rgba(255, 255, 255, 0.1); color: white; }
.filter-btn.active, .status-btn.active {
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(6,182,212,0.2));
    border-color: var(--accent-primary); color: white; font-weight: 500;
}
.stats-bar { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.card {
    background: var(--card-bg); backdrop-filter: blur(10px); border: 1px solid var(--card-border);
    border-radius: 16px; overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); border-color: rgba(255, 255, 255, 0.2); }
.card.completed { background: rgba(34, 197, 94, 0.05); border-color: rgba(34, 197, 94, 0.3); }
.card.completed .card-image { filter: grayscale(0) drop-shadow(0 0 15px rgba(34,197,94,0.3)); }
.card.completed .card-image-container { background: rgba(34, 197, 94, 0.1); }
.check-icon { position: absolute; bottom: -10px; right: -10px; font-size: 4rem; opacity: 0.1; color: var(--success); pointer-events: none; transition: all 0.3s; }
.card.completed .check-icon { opacity: 0.8; transform: scale(1.1); }
.card-image-container {
    width: 100%; height: 180px; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center;
    padding: 1.5rem; position: relative; overflow: hidden;
}
.card-image { max-width: 120px; max-height: 120px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); transition: transform 0.3s ease; }
.card:hover .card-image { transform: scale(1.05); }
.rarity-indicator { position: absolute; top: 1rem; right: 1rem; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; backdrop-filter: blur(5px); }
.rarity-1 .rarity-indicator { background: rgba(148, 163, 184, 0.2); color: var(--rarity-1); border: 1px solid rgba(148, 163, 184, 0.3); }
.rarity-2 .rarity-indicator { background: rgba(56, 189, 248, 0.2); color: var(--rarity-2); border: 1px solid rgba(56, 189, 248, 0.3); }
.rarity-3 .rarity-indicator { background: rgba(252, 211, 77, 0.2); color: var(--rarity-3); border: 1px solid rgba(252, 211, 77, 0.3); }
.track-btn {
    width: 100%; padding: 1rem; background: rgba(255,255,255,0.05); border: none; border-top: 1px solid var(--card-border);
    color: var(--text-main); font-family: inherit; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s;
    display: flex; justify-content: center; align-items: center; gap: 0.5rem;
}
.track-btn:hover { background: rgba(255,255,255,0.1); }
.card.completed .track-btn { background: rgba(34, 197, 94, 0.2); color: white; border-top-color: rgba(34, 197, 94, 0.4); }
.card.completed .track-btn:hover { background: rgba(34, 197, 94, 0.3); }
.card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.category-tag { font-size: 0.75rem; color: var(--accent-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; font-weight: 600; }
.card-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.8rem; line-height: 1.3; }
.card-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; flex-grow: 1; }
.hidden-tag { display: inline-block; margin-top: 1rem; font-size: 0.75rem; padding: 0.2rem 0.6rem; background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); border-radius: 4px; }
.hidden { display: none !important; }
.no-results { text-align: center; padding: 4rem 0; color: var(--text-muted); font-size: 1.1rem; }
.tier-group { margin-bottom: 3rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; }
.tier-header { background: rgba(255,255,255,0.05); padding: 1rem 1.5rem; border-bottom: 1px solid var(--card-border); font-size: 1.5rem; font-weight: 700; color: var(--accent-primary); }
.tier-content { padding: 1.5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.tier-char { text-align: center; background: rgba(0,0,0,0.3); padding: 1rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); position: relative; }
.tier-char img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 2px solid var(--card-border); }
.tier-char-name { font-weight: 600; font-size: 1.1rem; }
.tier-char-role { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }
.tier-tab-content { display: none; animation: fadeIn 0.4s ease forwards; }
.tier-tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 768px) {
    .controls-glass { flex-direction: row; align-items: center; flex-wrap: wrap; }
    .search-box { flex: 1; min-width: 300px; }
}
.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 2000; display: flex; justify-content: center; align-items: center;
    opacity: 1; visibility: visible; transition: all 0.3s ease;
}
.hidden-modal {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.modal-backdrop {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px);
}
.modal-content {
    position: relative; width: 90%; max-width: 1000px; max-height: 90vh;
    background: rgba(15, 15, 20, 0.95); border: 1px solid var(--card-border);
    border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hidden-modal .modal-content {
    transform: scale(0.95);
}
.close-btn {
    position: absolute; top: 1rem; right: 1.5rem; background: rgba(255,255,255,0.1);
    border: none; color: white; font-size: 2rem; line-height: 1; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; z-index: 10; display: flex; justify-content: center; align-items: center;
    transition: background 0.2s;
}
.close-btn:hover { background: rgba(255,255,255,0.2); }
.modal-body {
    display: flex; flex-direction: column; overflow-y: auto; height: 100%;
}
@media (min-width: 768px) {
    .modal-body { flex-direction: row; }
}
.modal-left {
    flex: 0 0 35%; background-color: rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; padding: 2rem; border-right: 1px solid var(--card-border);
}
.modal-right {
    flex: 1; padding: 2rem; overflow-y: auto;
}
.modal-portrait {
    width: 100%; max-width: 300px; height: auto; object-fit: contain; filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}
.modal-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; background: linear-gradient(90deg, #fff, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.modal-tags { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.modal-tag { background: rgba(168, 85, 247, 0.2); color: #d8b4fe; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(168, 85, 247, 0.3); }
.modal-desc { line-height: 1.6; color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.modal-section { margin-bottom: 2rem; }
.modal-section h3 { font-size: 1.3rem; margin-bottom: 1rem; color: white; display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--card-border); padding-bottom: 0.5rem; }
.skill-item { background: rgba(15,20,25,0.7); padding: 1.5rem; border-radius: 12px; margin-bottom: 1.5rem; border: 1px solid rgba(0,240,255,0.15); box-shadow: 0 4px 15px rgba(0,0,0,0.4); border-left: 3px solid var(--accent-primary); }
.skill-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; }
.skill-name { font-weight: 700; color: var(--accent-secondary); font-size: 1.3rem; text-shadow: 0 0 10px rgba(0,240,255,0.3); }
.skill-type { font-size: 0.75rem; background: rgba(255,255,255,0.1); padding: 0.3rem 0.6rem; border-radius: 4px; color: #e2e8f0; font-weight: 500; }
.skill-desc { font-size: 1rem; color: #f1f5f9; line-height: 1.6; margin-bottom: 1rem; }
.skill-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.skill-tags span { font-size: 0.95rem; font-weight: 700; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.build-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.build-item { background: rgba(0,0,0,0.3); padding: 1rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 0.5rem; }
.build-item img { width: 60px; height: 60px; border-radius: 8px; object-fit: contain; }
.char-hero { display: flex; flex-direction: column; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; margin-bottom: 2rem; }
@media (min-width: 768px) { .char-hero { flex-direction: row; } }
.hero-left { flex: 0 0 40%; background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4)); display: flex; justify-content: center; align-items: center; padding: 2rem; border-right: 1px solid var(--card-border); }
.char-portrait { width: 100%; max-width: 400px; height: auto; object-fit: contain; filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.2)); }
.hero-right { flex: 1; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.char-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; background: linear-gradient(90deg, #fff, #06b6d4, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.char-content-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .char-content-grid { grid-template-columns: 1.5fr 1fr; } }
.char-section { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; }
.char-section h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--accent-primary); border-bottom: 1px solid var(--card-border); padding-bottom: 0.8rem; }
.build-grid-large { display: flex; flex-direction: column; gap: 1rem; }
.build-card { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; }
.build-card-header { background: rgba(255,255,255,0.05); padding: 0.8rem 1.2rem; font-weight: 600; font-size: 0.9rem; color: var(--accent-secondary); text-transform: uppercase; letter-spacing: 1px; }
.build-card-body { padding: 1.2rem; display: flex; gap: 1.5rem; align-items: center; }
.build-card-body img { width: 80px; height: 80px; border-radius: 8px; object-fit: contain; background: rgba(0,0,0,0.5); padding: 0.5rem; }
.build-info h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #fff; }
.build-info p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }
.team-card { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; }
.team-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
.team-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.5; }
.team-members { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.team-member { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.team-member img { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--card-border); object-fit: cover; }
.team-member span { font-size: 0.8rem; font-weight: 600; color: #cbd5e1; background: rgba(255,255,255,0.1); padding: 0.2rem 0.6rem; border-radius: 12px; }
.material-grid { display: flex; flex-direction: column; gap: 1rem; }
.asc-tier { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 1.2rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .asc-tier { flex-direction: row; align-items: center; justify-content: space-between; } }
.asc-level { font-weight: 700; font-size: 1.1rem; color: var(--accent-secondary); }
.asc-items { display: flex; gap: 1rem; flex-wrap: wrap; }
.asc-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; background: rgba(255,255,255,0.03); padding: 0.5rem; border-radius: 8px; min-width: 60px; }
.asc-item img { width: 40px; height: 40px; object-fit: contain; }
.asc-item span { font-size: 0.8rem; color: #fff; font-weight: 600; }
.currency-icon { width: 40px; height: 40px; border-radius: 50%; background: #fbbf24; color: #000; display: flex; justify-content: center; align-items: center; font-weight: 800; font-size: 1.2rem; }
.mt-3 { margin-top: 1.5rem; }
.char-tabs { display: flex; gap: 1rem; margin-bottom: 2rem; border-bottom: 1px solid var(--card-border); overflow-x: auto; padding-bottom: 0.5rem; }
.char-tab-btn { background: transparent; border: none; color: var(--text-muted); font-size: 1.1rem; font-weight: 600; padding: 0.5rem 1rem; cursor: pointer; transition: all 0.3s; position: relative; white-space: nowrap; }
.char-tab-btn:hover { color: #fff; }
.char-tab-btn.active { color: var(--accent-primary); }
.char-tab-btn.active::after { content: ''; position: absolute; bottom: -0.6rem; left: 0; width: 100%; height: 2px; background: var(--accent-primary); border-radius: 2px; }
.char-tab-content { display: none; animation: fadeIn 0.4s ease forwards; }
.char-tab-content.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.back-btn { background: transparent; border: 1px solid var(--card-border); color: #cbd5e1; font-size: 1rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 8px; cursor: pointer; margin-bottom: 1.5rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.back-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
@media (max-width: 767px) {
    .hide-mobile { display: none; }
    .navbar { padding: 0 1rem; }
    .nav-brand { font-size: 1.2rem; white-space: nowrap; }
    .nav-btn { padding: 0.5rem 0.4rem; font-size: 0.9rem; white-space: nowrap; }
    .nav-links { gap: 0.1rem; }
    .char-hero { flex-direction: column; text-align: center; }
    .hero-left { border-right: none; border-bottom: 1px solid var(--card-border); padding: 1.5rem; }
    .char-portrait { max-width: 250px; }
    .hero-right { padding: 1.5rem; align-items: center; }
    .char-title { font-size: 2.2rem; }
    .char-tabs { flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
    .char-tab-btn { font-size: 1rem; padding: 0.5rem; }
    .build-card-body { flex-direction: column; align-items: center; text-align: center; }
    .build-info h4 { margin-bottom: 0.2rem; }
    .tier-content { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0.5rem; }
    .tier-char { padding: 0.5rem; }
    .tier-char img { width: 60px; height: 60px; margin-bottom: 0.5rem; border-width: 1px; }
    .tier-char-name { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .tier-char-name { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .tier-char-role { font-size: 0.65rem; margin-top: 0.1rem; }
    
    .char-section { padding: 1.2rem; }
    .skill-item { padding: 1rem; }
    .skill-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .build-card-body { padding: 1rem; flex-direction: column; align-items: center; text-align: center; }
    .team-card { padding: 1rem; }

    /* Achievements Mobile */
    h1 { font-size: 2.2rem; }
    .subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .controls-glass { padding: 1rem; gap: 1rem; }
    .filter-btn, .status-btn { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
    
    #achievementsGrid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    #achievementsGrid .card-content { padding: 0.5rem; justify-content: center; align-items: center; text-align: center; }
    #achievementsGrid .card-image-container { height: 80px; padding: 0.5rem; }
    #achievementsGrid .card-image { max-width: 50px; max-height: 50px; }
    #achievementsGrid .card-title { font-size: 0.75rem; margin-bottom: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }
    #achievementsGrid .category-tag { font-size: 0.55rem; margin-bottom: 0.2rem; }
    #achievementsGrid .card-desc, #achievementsGrid .track-btn { display: none; }
    #achievementsGrid .rarity-indicator { top: 0.3rem; right: 0.3rem; padding: 0.1rem 0.3rem; font-size: 0.55rem; letter-spacing: 0; }
    
    .grid-container { grid-template-columns: 1fr; gap: 1rem; } /* Default for other grids like characters if any */
}
