/* ═══════════════════════════════════════════════════════════
   Dungeon Crawl AI – Custom Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Main Game Container ─────────────────────────────────── */
.dc-game {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Courier New', 'Consolas', monospace;
    color: var(--color-text-primary, #e5e7eb);
}

.dc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 2px solid #3b3b44;
    margin-bottom: 1rem;
}

.dc-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-family: 'Press Start 2P', monospace;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dc-gold-shift 4s ease infinite;
}

@keyframes dc-gold-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.dc-subtitle {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.dc-header-actions {
    display: flex;
    gap: 0.5rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.dc-btn {
    background: #2d2d35;
    color: #e5e7eb;
    border: 1px solid #4b4b55;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8rem;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.dc-btn:hover {
    background: #3d3d48;
    border-color: #6b6b78;
    transform: translateY(-1px);
}

.dc-btn:active {
    transform: translateY(0);
}

.dc-btn-sm {
    padding: 0.3rem 0.6rem;
    font-size: 0.72rem;
}

.dc-btn-danger {
    border-color: #7f1d1d;
}

.dc-btn-danger:hover {
    background: #7f1d1d;
    border-color: #ef4444;
}

/* ── Layout ──────────────────────────────────────────────── */
.dc-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* ── Map ─────────────────────────────────────────────────── */
.dc-map-container {
    background: #0a0a0f;
    border: 2px solid #2d2d35;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.dc-map {
    overflow: auto;
    max-height: 420px;
    padding: 8px;
    line-height: 1;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #4b4b55 #0a0a0f;
}

.dc-map::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.dc-map::-webkit-scrollbar-thumb {
    background: #4b4b55;
    border-radius: 3px;
}

.dc-map::-webkit-scrollbar-track {
    background: #0a0a0f;
}

.dc-map-row {
    height: 22px;
    line-height: 22px;
    font-size: 0;
}

.dc-map-row span {
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
}

/* Map tile styles */
.dc-wall {
    color: #2d2d35;
    background: #1a1a22;
}

.dc-floor {
    color: #3b3b44;
}

.dc-stairs {
    font-size: 13px !important;
    animation: dc-pulse 2s ease-in-out infinite;
}

.dc-chest {
    font-size: 13px !important;
    animation: dc-glow-gold 1.5s ease-in-out infinite;
}

.dc-shop {
    font-size: 13px !important;
    animation: dc-pulse 3s ease-in-out infinite;
}

.dc-player {
    color: #4ade80;
    font-weight: bold;
    font-size: 16px !important;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: dc-player-pulse 1s ease-in-out infinite;
}

.dc-enemy {
    font-size: 13px !important;
    cursor: help;
    animation: dc-enemy-idle 2s ease-in-out infinite;
}

.dc-fog {
    color: transparent;
    background: #0a0a0f;
}

@keyframes dc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes dc-glow-gold {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.4) drop-shadow(0 0 4px rgba(251, 191, 36, 0.5)); }
}

@keyframes dc-player-pulse {
    0%, 100% { text-shadow: 0 0 8px rgba(74, 222, 128, 0.6); }
    50% { text-shadow: 0 0 16px rgba(74, 222, 128, 0.9), 0 0 4px rgba(74, 222, 128, 0.4); }
}

@keyframes dc-enemy-idle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}

/* ── Controls ────────────────────────────────────────────── */
.dc-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0;
    gap: 2px;
}

.dc-control-row {
    display: flex;
    gap: 2px;
}

.dc-move-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    background: #1e1e28;
    border: 2px solid #3b3b44;
}

.dc-move-btn:hover {
    background: #2d2d38;
    border-color: #5b5b68;
}

.dc-move-btn:active {
    background: #4ade80;
    color: #0a0a0f;
    border-color: #4ade80;
}

.dc-wait-btn {
    background: #1a1a28;
    border-color: #3b3b44;
    font-size: 1rem;
}

.dc-control-hint {
    font-size: 0.65rem;
    color: #6b6b78;
    margin-top: 0.3rem;
}

/* ── Right Panel ─────────────────────────────────────────── */
.dc-right-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dc-right-panel h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: #9ca3af;
    border-bottom: 1px solid #2d2d35;
    padding-bottom: 0.25rem;
}

/* ── Stats Panel ─────────────────────────────────────────── */
.dc-stats-panel {
    background: #15151d;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    padding: 0.75rem;
}

.dc-stat-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.dc-stat-bar .dc-stat-label {
    width: 40px;
    font-size: 0.72rem;
    color: #9ca3af;
}

.dc-bar-outer {
    flex: 1;
    height: 14px;
    background: #1e1e28;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid #2d2d35;
}

.dc-bar-inner {
    height: 100%;
    border-radius: 7px;
    transition: width 0.3s ease;
    background: #4ade80;
}

.dc-xp-bar {
    background: linear-gradient(90deg, #818cf8, #a78bfa) !important;
}

.dc-enemy-hp-bar {
    background: linear-gradient(90deg, #ef4444, #f97316) !important;
}

.dc-stat-num {
    font-size: 0.7rem;
    min-width: 60px;
    text-align: right;
    color: #d1d5db;
    font-weight: bold;
}

.dc-stat-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    padding: 0.15rem 0;
    color: #d1d5db;
}

.dc-stat-line small {
    color: #818cf8;
    font-size: 0.65rem;
}

.dc-buffs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.3rem;
}

.dc-buff {
    font-size: 0.65rem;
    background: #1e1e28;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    border: 1px solid #4b4b55;
}

/* ── Equipment Panel ─────────────────────────────────────── */
.dc-equipment-panel {
    background: #15151d;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    padding: 0.75rem;
}

.dc-equip-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    padding: 0.2rem 0;
}

.dc-equip-label {
    color: #9ca3af;
}

.dc-equip-item {
    color: #fbbf24;
    font-weight: bold;
}

/* ── Potions Panel ───────────────────────────────────────── */
.dc-potions-panel {
    background: #15151d;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    padding: 0.75rem;
}

.dc-potion-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: #1e1e28;
    color: #d1d5db;
    border: 1px solid #3b3b44;
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
    margin-bottom: 0.3rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.72rem;
    transition: all 0.15s ease;
}

.dc-potion-btn:hover:not(:disabled) {
    background: #2d2d38;
    border-color: #4ade80;
}

.dc-potion-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.dc-empty {
    font-size: 0.72rem;
    color: #6b6b78;
    font-style: italic;
}

/* ── AI Guide Panel ──────────────────────────────────────── */
.dc-guide-panel {
    background: linear-gradient(135deg, #15151d, #1a1028);
    border: 1px solid #4b3b7a;
    border-radius: 8px;
    padding: 0.75rem;
}

.dc-guide-panel h3 {
    color: #a78bfa;
    border-color: #4b3b7a;
}

.dc-guide-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.dc-guide-face {
    font-size: 2rem;
    animation: dc-guide-bob 3s ease-in-out infinite;
}

@keyframes dc-guide-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.dc-guide-confidence {
    font-size: 0.7rem;
    color: #a78bfa;
}

.dc-guide-confidence small {
    color: #ef4444;
}

.dc-guide-messages {
    max-height: 160px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #4b3b7a #15151d;
}

.dc-guide-msg {
    margin-bottom: 0.35rem;
}

.dc-guide-bubble {
    display: block;
    font-size: 0.7rem;
    color: #c4b5fd;
    font-style: italic;
    padding: 0.3rem 0.5rem;
    background: #1e1028;
    border-radius: 6px;
    border-left: 3px solid #7c3aed;
    line-height: 1.4;
}

.dc-guide-latest .dc-guide-bubble {
    color: #e9d5ff;
    background: #251540;
    border-left-color: #a78bfa;
    animation: dc-msg-flash 0.5s ease;
}

@keyframes dc-msg-flash {
    0% { background: #4c1d95; }
    100% { background: #251540; }
}

/* ── Adventure Log ───────────────────────────────────────── */
.dc-log {
    background: #0f0f15;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.dc-log h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: #9ca3af;
}

.dc-log-entries {
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #3b3b44 #0f0f15;
}

.dc-log-entry {
    font-size: 0.72rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

.dc-log-info    { color: #9ca3af; }
.dc-log-combat  { color: #fbbf24; }
.dc-log-damage  { color: #ef4444; }
.dc-log-victory { color: #4ade80; }
.dc-log-loot    { color: #fbbf24; background: rgba(251, 191, 36, 0.05); }
.dc-log-heal    { color: #34d399; }
.dc-log-buff    { color: #818cf8; }
.dc-log-level   { color: #a78bfa; background: rgba(167, 139, 250, 0.08); }
.dc-log-death   { color: #ef4444; font-weight: bold; }
.dc-log-boss    { color: #f97316; font-weight: bold; }
.dc-log-achievement { color: #fbbf24; background: rgba(251, 191, 36, 0.1); font-weight: bold; }

/* ── Overlays (Combat, Shop, Death) ──────────────────────── */
.dc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
    animation: dc-fade-in 0.3s ease;
}

@keyframes dc-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ── Combat Panel ────────────────────────────────────────── */
.dc-combat-panel {
    background: #15151d;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    width: 90%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.2);
    animation: dc-combat-enter 0.3s ease;
}

@keyframes dc-combat-enter {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.dc-combat-panel h3 {
    text-align: center;
    color: #ef4444;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
}

.dc-combat-enemy {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #1e1e28;
    border-radius: 8px;
    border: 1px solid #2d2d35;
}

.dc-enemy-icon-large {
    font-size: 3rem;
    animation: dc-enemy-shake 0.5s ease-in-out infinite;
}

@keyframes dc-enemy-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.dc-enemy-info {
    flex: 1;
}

.dc-enemy-name {
    font-size: 1rem;
    font-weight: bold;
    color: #f87171;
    margin-bottom: 0.3rem;
}

.dc-enemy-stats {
    font-size: 0.72rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.dc-combat-actions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.dc-btn-attack {
    background: #7f1d1d;
    border-color: #ef4444;
    font-size: 0.9rem;
    padding: 0.6rem;
    text-align: center;
}

.dc-btn-attack:hover {
    background: #991b1b;
    border-color: #f87171;
}

.dc-btn-potion {
    background: #1a3a1a;
    border-color: #22c55e;
    text-align: left;
    font-size: 0.75rem;
}

.dc-btn-potion:hover {
    background: #1e4d1e;
}

.dc-btn-flee {
    background: #1e1e28;
    border-color: #6b6b78;
    text-align: center;
}

.dc-btn-flee:hover {
    background: #2d2d38;
}

.dc-combat-log {
    max-height: 120px;
    overflow-y: auto;
    border-top: 1px solid #2d2d35;
    padding-top: 0.5rem;
}

/* ── Shop Panel ──────────────────────────────────────────── */
.dc-shop-panel {
    background: #15151d;
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 1.5rem;
    width: 90%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.15);
}

.dc-shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dc-shop-header h3 {
    margin: 0;
    color: #fbbf24;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
}

.dc-shop-gold {
    font-size: 0.9rem;
    color: #fbbf24;
    font-weight: bold;
}

.dc-shop-section {
    margin-bottom: 0.75rem;
}

.dc-shop-section h4 {
    margin: 0 0 0.4rem 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

.dc-shop-item {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
    background: #1e1e28;
    border: 1px solid #3b3b44;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    margin-bottom: 0.3rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    color: #d1d5db;
    transition: all 0.15s ease;
}

.dc-shop-item:hover:not(:disabled) {
    background: #2d2d38;
    border-color: #fbbf24;
    transform: translateX(4px);
}

.dc-shop-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.dc-shop-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.dc-shop-name {
    flex: 1;
    text-align: left;
    font-weight: bold;
}

.dc-shop-stat {
    color: #4ade80;
    font-size: 0.7rem;
}

.dc-shop-price {
    color: #fbbf24;
    font-weight: bold;
    min-width: 40px;
    text-align: right;
}

.dc-btn-close-shop {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
    background: #2d2d35;
    border-color: #fbbf24;
    padding: 0.5rem;
    font-size: 0.85rem;
}

.dc-btn-close-shop:hover {
    background: #3d3d48;
}

/* ── Death Screen ────────────────────────────────────────── */
.dc-death-panel {
    background: linear-gradient(135deg, #15151d, #1a0a0a);
    border: 2px solid #7f1d1d;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 0 60px rgba(127, 29, 29, 0.3);
    animation: dc-death-enter 0.5s ease;
}

@keyframes dc-death-enter {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.dc-death-skull {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    animation: dc-skull-float 2s ease-in-out infinite;
}

@keyframes dc-skull-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.dc-death-panel h2 {
    margin: 0 0 0.5rem 0;
    color: #ef4444;
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
}

.dc-death-floor {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.dc-death-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.dc-death-legacy {
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid #4b3b7a;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.dc-death-legacy h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.8rem;
    color: #a78bfa;
}

.dc-legacy-gains {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #4ade80;
    font-weight: bold;
}

.dc-death-guide {
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.dc-death-guide .dc-guide-face {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.dc-death-guide p {
    font-size: 0.75rem;
    color: #c4b5fd;
    font-style: italic;
    margin: 0;
}

.dc-btn-newrun {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border: none;
    color: #fff;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    animation: dc-pulse 2s ease-in-out infinite;
}

.dc-btn-newrun:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

/* ── Achievements ────────────────────────────────────────── */
.dc-achievements {
    background: #15151d;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.dc-achievements h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: #fbbf24;
}

.dc-achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.4rem;
}

.dc-achievement {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 0.65rem;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.dc-ach-unlocked {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}

.dc-ach-locked {
    background: #1a1a22;
    color: #4b4b55;
}

.dc-ach-icon {
    font-size: 0.9rem;
}

.dc-ach-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Lifetime Stats ──────────────────────────────────────── */
.dc-legacy-stats {
    background: #15151d;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.dc-legacy-stats h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: #9ca3af;
}

.dc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.3rem;
}

.dc-stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0.4rem;
    background: #1a1a22;
    border-radius: 4px;
    font-size: 0.7rem;
}

.dc-stat-item .dc-stat-label {
    color: #9ca3af;
}

.dc-stat-item .dc-stat-val {
    color: #e5e7eb;
    font-weight: bold;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

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

    .dc-map {
        max-height: 280px;
    }

    .dc-map-row span {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 11px;
    }

    .dc-map-row {
        height: 18px;
        line-height: 18px;
    }

    .dc-right-panel {
        order: -1;
    }

    .dc-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .dc-header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dc-move-btn {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .dc-combat-panel,
    .dc-shop-panel,
    .dc-death-panel {
        width: 95%;
        padding: 1rem;
    }

    .dc-achievement-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .dc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dc-death-stats {
        flex-direction: column;
        gap: 0.3rem;
    }

    .dc-legacy-gains {
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .dc-header h2 {
        font-size: 0.9rem;
    }

    .dc-map {
        max-height: 220px;
    }

    .dc-map-row span {
        width: 15px;
        height: 15px;
        line-height: 15px;
        font-size: 9px;
    }

    .dc-map-row {
        height: 15px;
        line-height: 15px;
    }

    .dc-player {
        font-size: 11px !important;
    }

    .dc-stairs, .dc-chest, .dc-shop, .dc-enemy {
        font-size: 10px !important;
    }

    .dc-achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dedicated page body class styling */
.dc-dedicated-page {
    background: #0a0a0f;
}
