/* ═══════════════════════════════════════════
   PROMO CARDS — Premium Redesign
   ═══════════════════════════════════════════ */

.promo-cards-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 0 14px 0;
    width: 100%;
}

/* ── Kart ── */
.pc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 18px 18px;
    border-radius: 14px;
    background: #0e161a;
    border: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    min-height: 160px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.pc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.13);
}

/* Arka plan glow ve deko */
.pc-glow, .pc-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.pc-card:hover .pc-glow { opacity: 1.4; }

/* ── İkon kutusu ── */
.pc-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    margin-bottom: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.2s;
}

.pc-card:hover .pc-icon-box {
    transform: scale(1.08);
}

/* ── İçerik ── */
.pc-body {
    position: relative;
    z-index: 2;
    flex: 1;
}

.pc-title {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    margin: 0 0 7px 0;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.pc-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.42);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.pc-card:hover .pc-desc {
    color: rgba(255,255,255,0.6);
}

/* ── Ok ikonu ── */
.pc-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.4);
    z-index: 2;
    transition: all 0.2s;
}

.pc-arrow svg {
    width: 14px;
    height: 14px;
}

.pc-card:hover .pc-arrow {
    background: rgba(255,255,255,0.13);
    color: #fff;
    transform: translateX(2px);
}

/* ── Mağaza butonları (Mobil kart) ── */
.pc-store-btns {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
}

.pc-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    transition: all 0.18s;
}

.pc-card:hover .pc-store-btn {
    background: rgba(255,255,255,0.11);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
    .promo-cards-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .promo-cards-premium {
        grid-template-columns: 1fr;
    }
}
