/**
 * Yox Game Portal - Sosyal Etkileşim Stilleri
 */

/* Yorumlar Bölümü */
.game-reviews {
    margin-top: 2rem;
}

.game-reviews h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #2a245c;
    padding-bottom: 0.5rem;
}

.review-card {
    background-color: #17152e;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
    border: 2px solid #2a245c;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.reviewer-name {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.reviewer-name a {
    color: #d834b0;
    text-decoration: none;
    transition: color 0.2s;
}

.reviewer-name a:hover {
    color: #f15bc6;
    text-decoration: underline;
}

.admin-badge {
    background: linear-gradient(135deg, #d834b0, #7b41d6);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.admin-badge i {
    margin-right: 0.25rem;
}

.review-date {
    color: #a5a5c9;
    font-size: 0.8rem;
}

.review-rating {
    color: gold;
    font-size: 1.1rem;
}

.review-content {
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Yorum Etkileşimleri */
.review-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #2a245c;
}

.like-action, .reply-action, .delete-action, .delete-reply-action {
    display: flex;
    align-items: center;
    color: #a5a5c9;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.like-action:hover, .reply-action:hover {
    color: #d834b0;
    background-color: rgba(216, 52, 176, 0.1);
}

.delete-action:hover, .delete-reply-action:hover {
    color: #ff3b3b;
    background-color: rgba(255, 59, 59, 0.1);
}

.like-action i, .reply-action i, .delete-action i, .delete-reply-action i {
    margin-right: 0.35rem;
}

.like-action.active {
    color: #d834b0;
}

.like-count {
    margin-left: 0.25rem;
}

/* Yanıtlar Bölümü */
.review-replies {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
    border-left: 2px solid #2a245c;
}

.reply-item {
    background-color: #1e1c3a;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.reply-item:hover {
    background-color: #23204a;
}

.reply-user {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reply-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.75rem;
    object-fit: cover;
    border: 1px solid #2a245c;
}

.reply-username {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.reply-username a {
    color: #d834b0;
    text-decoration: none;
    transition: color 0.2s;
}

.reply-username a:hover {
    color: #f15bc6;
    text-decoration: underline;
}

.reply-date {
    color: #a5a5c9;
    font-size: 0.75rem;
}

.reply-content {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.reply-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* Yanıt Formu */
.reply-form-container {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
}

.reply-form .input-group {
    display: flex;
    align-items: center;
}

.reply-input {
    flex: 1;
    background-color: #1e1c3a;
    border: 1px solid #2a245c;
    border-radius: 8px 0 0 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.9rem;
}

.reply-input:focus {
    outline: none;
    border-color: #d834b0;
    box-shadow: 0 0 0 1px rgba(216, 52, 176, 0.5);
}

.reply-form .btn {
    background-color: #d834b0;
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    transition: all 0.2s ease;
}

.reply-form .btn:hover {
    background-color: #c32d9e;
}

/* Boş Yorum Durumu */
.no-reviews {
    background-color: #17152e;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.no-reviews-icon {
    font-size: 3rem;
    color: #2a245c;
    margin-bottom: 1rem;
}

.no-reviews p {
    color: #a5a5c9;
    margin-bottom: 0.5rem;
}

.no-reviews a {
    color: #d834b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.no-reviews a:hover {
    color: #f15bc6;
    text-decoration: underline;
}

/* Sayfalama */
.reviews-pagination {
    margin-top: 1.5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    margin: 0 0.25rem;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    min-width: 2.5rem;
    background-color: #1e1c3a;
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.page-item.active .page-link {
    background-color: #d834b0;
    color: #fff;
}

.page-link:hover {
    background-color: #2a245c;
}

.page-item.disabled .page-link {
    color: #6c6a8a;
    pointer-events: none;
}