.comments-section-full { background: var(--bg-secondary); border-radius: 20px; padding: 20px; margin-top: 20px; border: 1px solid var(--border-color); }
.comment-form-full { display: flex; gap: 10px; margin-bottom: 25px; }
.comment-form-full input { flex: 1; padding: 12px 15px; border: 2px solid var(--border-color); border-radius: 25px; background: var(--bg-primary); color: var(--text-primary); font-family: 'Cairo', sans-serif; font-size: 14px; }
.comment-form-full input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px var(--primary-light); }
.comment-form-full button { width: 45px; height: 45px; border: none; border-radius: 50%; background: var(--gradient-primary); color: white; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.comment-form-full button:hover { transform: scale(1.1) rotate(360deg); }
.comments-list-full { display: flex; flex-direction: column; gap: 15px; }
.comment-full { background: var(--bg-primary); border-radius: 15px; padding: 15px; border: 1px solid var(--border-color); transition: all 0.3s ease; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.comment-full:hover { transform: translateX(-3px); border-color: var(--primary-color); }
.comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.comment-avatar { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); }
.comment-username { font-weight: 700; color: var(--text-primary); text-decoration: none; font-size: 13px; }
.comment-time { color: var(--text-muted); font-size: 10px; margin-right: auto; }
.comment-content { font-size: 14px; line-height: 1.6; margin-bottom: 12px; padding-right: 45px; color: var(--text-primary); word-break: break-word; }
.comment-actions { display: flex; justify-content: flex-end; gap: 10px; padding-right: 45px; }
.comment-like-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 15px; font-size: 12px; transition: all 0.3s ease; }
.comment-like-btn.liked { color: var(--primary-color); }
.comment-gift { background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,170,0,0.1)); border: 2px solid #ffd700; position: relative; overflow: hidden; }
.gift-badge { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #ffd700, #ffaa00); color: #000; padding: 4px 12px; border-radius: 30px; font-size: 12px; font-weight: 700; margin-left: 10px; }
.gift-message { background: linear-gradient(135deg, #ffd700, #ffaa00); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; font-size: 14px; }
.gift-amount { background: #ffd700; color: #000; padding: 2px 8px; border-radius: 15px; font-size: 12px; font-weight: 700; margin: 0 5px; }
.send-gift-btn { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #000; border: none; border-radius: 20px; padding: 5px 12px; font-size: 12px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: all 0.3s ease; margin-right: 10px; }
.send-gift-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,215,0,0.5); }
.diamond-notification { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #ffd700, #ffaa00); color: #000; padding: 12px 25px; border-radius: 40px; font-weight: 700; z-index: 3000; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(255,215,0,0.5); animation: slideDown 0.3s ease; }