.content-txt p.mob-page-intro,
p.mob-page-intro {
    margin: 0 0 16px;
    color: #000 !important;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.mob-search-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.mob-search {
    width: 100%;
    max-width: 340px;
    padding: 9px 12px;
    border: 1px solid #5a3a1a;
    border-radius: 4px;
    background: rgba(13, 8, 6, 0.92);
    color: #f0d890;
    font-family: inherit;
    font-size: 13px;
}

.mob-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.mob-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(180deg, #2a1808 0%, #120a04 100%);
    border: 1px solid #5a3a1a;
    border-radius: 6px;
    padding: 10px 8px 12px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.mob-card:hover {
    border-color: #e8b84a;
    box-shadow: 0 0 14px rgba(232, 184, 74, 0.25);
    transform: translateY(-2px);
}

.mob-card img {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    image-rendering: pixelated;
}

.mob-card__name {
    color: #f5d88a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.mob-card__meta {
    margin-top: 4px;
    color: #9a8458;
    font-size: 10px;
}

.mob-detail-back {
    margin-bottom: 14px;
}

.mob-detail-back a {
    color: #000 !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.mob-detail-back a:hover {
    color: #333 !important;
}

.mob-detail {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    align-items: start;
}

.mob-detail__visual {
    background: rgba(13, 8, 6, 0.95);
    border: 2px solid #5a3a1a;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}

.mob-detail__visual img {
    width: 128px;
    height: 128px;
    image-rendering: pixelated;
}

.mob-detail__title {
    margin: 10px 0 0;
    color: #f5d88a;
    font-size: 18px;
    font-weight: 700;
}

.mob-panel {
    margin-bottom: 14px;
    background: rgba(13, 8, 6, 0.92);
    border: 1px solid #5a3a1a;
    border-radius: 6px;
    overflow: hidden;
}

.mob-panel__head {
    padding: 8px 12px;
    background: linear-gradient(180deg, #3d2810 0%, #241408 100%);
    color: #e8c878;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #5a3a1a;
}

.mob-panel__body {
    padding: 12px;
}

.mob-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mob-stat {
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid #3d2810;
    border-radius: 4px;
}

.mob-stat__label {
    display: block;
    color: #9a8458;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mob-stat__value {
    display: block;
    margin-top: 3px;
    color: #f5d88a;
    font-size: 15px;
    font-weight: 700;
}

.mob-stat--hp .mob-stat__value { color: #ff6b6b; }
.mob-stat--mana .mob-stat__value { color: #6bb5ff; }
.mob-stat--exp .mob-stat__value { color: #ffd56a; }

.mob-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mob-tag {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(232, 184, 74, 0.12);
    border: 1px solid rgba(232, 184, 74, 0.35);
    color: #e8c878;
    font-size: 11px;
    font-weight: 600;
}

.mob-voices li {
    margin: 0 0 6px;
    color: #d8c898;
    font-size: 12px;
    font-style: italic;
}

.mob-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.mob-table th,
.mob-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #3d2810;
    text-align: left;
}

.mob-table th {
    color: #e8c878;
    font-size: 11px;
    text-transform: uppercase;
}

.mob-loot-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mob-loot-item img {
    flex-shrink: 0;
    vertical-align: middle;
    image-rendering: pixelated;
}

.mob-loot-item .mob-tag {
    display: inline-block;
}

.mob-loot-chance {
    color: #ffd56a;
    font-weight: 700;
    white-space: nowrap;
}

.mob-empty {
    padding: 24px 12px;
    text-align: center;
    color: #9a8458;
    font-size: 13px;
}

@media (max-width: 700px) {
    .mob-detail {
        grid-template-columns: 1fr;
    }

    .mob-stats {
        grid-template-columns: 1fr;
    }
}
