/* ============================================================
   ЗОЛОТЫЕ КАРТОЧКИ 99 ИМЁН АЛЛАХА
   ============================================================ */

.names-card-mini {
    background: linear-gradient(135deg, #4a3812 0%, #8a6818 50%, #4a3812 100%);
    border: 2px solid #f4d03f;
    border-radius: 12px;
    padding: 10px 8px;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s;
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.4);
}
.names-card-mini:active { transform: scale(0.97); }

/* Золотое сияние внутри */
.names-card-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 220, 80, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.names-card-badge {
    font-size: 8px;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: right;
    color: #f4d03f;
    position: relative;
    z-index: 2;
}

.names-card-arabic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Amiri', 'Scheherazade', serif;
    font-size: 28px;
    font-weight: 700;
    color: #f8e478;
    direction: rtl;
    text-shadow: 0 0 12px rgba(244, 208, 63, 0.8);
    position: relative;
    z-index: 2;
    line-height: 1.1;
    text-align: center;
}

.names-card-bottom {
    text-align: center;
    position: relative;
    z-index: 2;
}
.names-card-name {
    font-size: 11px;
    font-weight: 600;
    color: #f8e478;
    margin: 0;
}
.names-card-meaning {
    font-size: 9px;
    color: #c0a040;
    margin: 1px 0 0;
}

/* Заблокированная карточка имени */
.names-card-locked {
    filter: grayscale(0.8) brightness(0.4);
    border-color: #555 !important;
    box-shadow: none !important;
}
.names-card-locked::before { display: none; }
.names-card-locked .names-card-arabic { color: #555 !important; text-shadow: none !important; }
.names-card-locked::after {
    content: '🔒';
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 14px;
    opacity: 0.6;
    z-index: 5;
}

/* Мильстоуны (10, 20, 50, 99 имён) — особый блеск */
.names-card-milestone {
    animation: namesGoldenPulse 3s ease-in-out infinite;
}
.names-card-milestone::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: namesShimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}
@keyframes namesGoldenPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(244, 208, 63, 0.4); }
    50%      { box-shadow: 0 0 36px rgba(244, 208, 63, 0.8); }
}
@keyframes namesShimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}

/* Мифическая карта 99 имён — космическое золото */
.names-card-mythic {
    background: linear-gradient(135deg, #4a3812, #8a6818, #4a3812, #c09030, #4a3812) !important;
    background-size: 300% 300% !important;
    animation: namesMythicShift 5s ease-in-out infinite, namesGoldenPulse 3s ease-in-out infinite !important;
    border-color: #ffe066 !important;
}
@keyframes namesMythicShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ============================================================
   FULLSCREEN КАРТА ИМЕНИ АЛЛАХА
   ============================================================ */
.names-detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.names-detail-overlay.active { opacity: 1; }
.names-detail-overlay.closing { opacity: 0; }

.names-detail-bg {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #4a3812 0%, #1a1004 60%, #000 100%);
    z-index: 0;
}

.names-detail-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
    box-sizing: border-box;
}

.names-detail-arabic {
    font-family: 'Amiri', 'Scheherazade', serif;
    font-size: 64px;
    font-weight: 700;
    color: #f8e478;
    direction: rtl;
    text-shadow: 0 0 24px rgba(244, 208, 63, 0.8);
    margin: 0 0 12px;
    animation: chestCardReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.names-detail-name {
    font-size: 24px;
    font-weight: 700;
    color: #f8e478;
    margin: 0 0 4px;
}
.names-detail-meaning {
    font-size: 16px;
    color: #c0a040;
    margin: 0 0 20px;
}
.names-detail-story {
    font-size: 14px;
    color: #e0c880;
    max-width: 300px;
    line-height: 1.6;
    margin: 0 0 28px;
}
.names-detail-btn {
    background: linear-gradient(180deg, #d4a937 0%, #8b6914 100%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
