/* Vibeo - Ek Stiller */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Line clamp */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Post card hover */
.post-card {
    transition: all 0.2s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Vote button transitions */
.vote-btn, .like-btn {
    cursor: pointer;
    user-select: none;
}

/* Mobil kategori scroll */
.overflow-x-auto {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.overflow-x-auto::-webkit-scrollbar {
    display: none;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.post-card {
    animation: fadeIn 0.3s ease;
}
