/* Genel Başlık Alanı */
.pus-packages-title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.pus-packages-title p {
    font-size: 14px;
    color: #b0bccd;
    margin: 0;
}

/* Satır yapısı */
.pus-packages-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px 0;
}

/* Kart Yapısı */
.pus-card {
    background: radial-gradient(circle at top left, #26303f 0%, #101820 60%, #05070b 100%);
    border-radius: 14px;
    padding: 18px 16px 22px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0px 0px 20px rgba(0,0,0,0.35);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Kart Renk Temaları */
.pus-card-vip {
    border-top: 3px solid #ffd45c;
    box-shadow: 0 0 25px rgba(255, 212, 92, 0.25);
}

.pus-card-farm {
    border-top: 3px solid #4ce0b3;
    box-shadow: 0 0 25px rgba(76, 224, 179, 0.25);
}

.pus-card-warwing {
    border-top: 3px solid #b66cff;
    box-shadow: 0 0 25px rgba(182, 108, 255, 0.25);
}

.pus-card-other {
    border-top: 3px solid #4da7ff;
    box-shadow: 0 0 25px rgba(77, 167, 255, 0.25);
}

/* Kart Başlık Alanı */
.pus-card-header {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pus-card-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #9bb0c5;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.pus-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* ITEM LİSTE YAPISI */
.pus-item-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ITEM */
.pus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 8px 10px;
    margin-bottom: 7px;
    border-radius: 10px;
    transition: 0.2s ease;
    border: 1px solid rgba(255,255,255,0.03);
}

.pus-item:last-child {
    margin-bottom: 0;
}

/* Hover efekti */
.pus-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

/* Sol taraf (ikon + isim) */
.pus-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 65%;
}

.pus-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    image-rendering: pixelated;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.35);
}

.pus-item-text {
    display: flex;
    flex-direction: column;
}

.pus-item-name {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}

/* Sağ taraf (adet + süre) */
.pus-item-right {
    text-align: right;
    font-size: 11px;
    color: #dbe5f7;
    min-width: 90px;
    line-height: 1.3;
}

.pus-item-count,
.pus-item-duration {
    display: block;
}

/* Tooltip uyumluluğu */
[data-tip] {
    position: relative;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1199px) {
    .pus-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .pus-item-left {
        max-width: 60%;
    }
}

@media (max-width: 480px) {
    .pus-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .pus-item-right {
        text-align: left;
    }
}
