/* Westeros Info Box Tasarımı */
.westeros-info-box {
    background-color: rgba(25, 25, 25, 0.85); /* Arka planı hafif transparan siyah/gri */
    border: 1px solid #3c3830; /* Kirli kahverengi/altın sınır çizgisi */
    border-radius: 4px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #c4c4c4;
    font-family: Tahoma, Arial, sans-serif;
    margin-bottom: 20px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8), 0 2px 5px rgba(0,0,0,0.5);
}

.w-info-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.w-info-icon {
    width: 45px;
    height: 45px;
    background: #111;
    border: 1px solid #d4af37; /* Altın sarısı çerçeve */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.w-info-title {
    color: #e2c073; /* Temanıza uygun soluk altın/sarı */
    margin: 0 0 8px 0;
    font-size: 16px;
    font-family: 'Georgia', serif; /* Başlıklar için fantastik bir hava */
    text-shadow: 1px 1px 2px #000;
}

.w-info-category {
    font-size: 12px;
    margin-bottom: 8px;
}

.w-info-category a {
    color: #999;
    text-decoration: none;
    font-weight: bold;
}

.w-info-category a:hover {
    color: #e2c073;
}

.w-desc {
    color: #777;
    font-style: italic;
    margin-left: 5px;
}

.w-info-meta {
    font-size: 11px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #888;
}

.w-info-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.w-info-meta i {
    color: #666;
}

/* Sağ Taraf - Oylama ve Butonlar */
.w-info-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.w-rating-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.w-rating-text {
    font-size: 11px;
    color: #888;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.w-stars {
    color: #d4af37; /* Parlak altın rengi */
    font-size: 14px;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
}

/* Favori Butonu */
.w-btn-favorite {
    display: inline-block;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border: 1px solid #4a4a4a;
    color: #ccc;
    padding: 6px 12px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
	border-color: #d4af37;
}

.w-btn-

orite i {
    color: #8b0000; /* Kan kırmızısı kalp */
    margin-right: 4px;
}

.w-btn-favorite:hover {
    background: #111;
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .westeros-info-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .w-info-right {
        align-items: flex-start;
        text-align: left;
    }
    .w-rating-box {
        align-items: flex-start;
    }
}

/* Henüz Favorilerde Değilse (İçi Boş İkon - add) */
.w-fav-add i::before {
    content: "\f097"; /* fa-bookmark-o */
    font-family: "FontAwesome"; /* İkonun görünmesi için zorunlu */
}

/* Favorilere Eklenmişse (İçi Dolu İkon - remove) */
.w-fav-remove i::before {
    content: "\f02e"; /* fa-bookmark */
    font-family: "FontAwesome";
    color: #d4af37;
}

.w-fav-remove {
    border-color: #d4af37;
    color: #d4af37;
}