/* Paylaşım (Thoughts) - Modern Eye-Catching Styles */

.thought-item {
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.4) 0%, rgba(209, 250, 229, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.thought-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10b981 0%, rgba(16, 185, 129, 0.3) 100%);
    border-radius: 10px 0 0 10px;
}

.thought-item:hover {
    background: linear-gradient(135deg, rgba(209, 250, 229, 0.5) 0%, rgba(167, 243, 208, 0.3) 100%);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px) translateX(3px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.12);
}

.thought-item:last-child {
    margin-bottom: 0;
}

.thought-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.thought-category {
    display: inline-block;
    font-size: 0.75rem;
    font-family: 'Monaco', monospace;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.7rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
    white-space: nowrap;
}

.thought-timestamp {
    font-size: 0.8rem;
    font-family: 'Monaco', monospace;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.thought-title {
    font-size: 1.35rem;
    font-weight: 500;
    color: #0f172a;
    margin: 0.75rem 0 0.5rem 0;
    line-height: 1.5;
    letter-spacing: -0.3px;
}

.thought-text {
    font-size: 0.975rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thought-item {
        padding: 1.25rem 1rem;
        margin-bottom: 1rem;
    }

    .thought-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .thought-title {
        font-size: 1.125rem;
    }

    .thought-text {
        font-size: 0.9rem;
    }
}

/* KATEQORIYA RƏNGLƏRI */
.thought-item[data-category="sual"] {
    border-left-color: #3b82f6;
}

.thought-item[data-category="sual"]::before {
    background: linear-gradient(180deg, #3b82f6 0%, rgba(59, 130, 246, 0.3) 100%);
}

.thought-item[data-category="sual"] .thought-category {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.thought-item[data-category="düşüncə"] {
    border-left-color: #8b5cf6;
}

.thought-item[data-category="düşüncə"]::before {
    background: linear-gradient(180deg, #8b5cf6 0%, rgba(139, 92, 246, 0.3) 100%);
}

.thought-item[data-category="düşüncə"] .thought-category {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.thought-item[data-category="müşahidə"] {
    border-left-color: #f59e0b;
}

.thought-item[data-category="müşahidə"]::before {
    background: linear-gradient(180deg, #f59e0b 0%, rgba(245, 158, 11, 0.3) 100%);
}

.thought-item[data-category="müşahidə"] .thought-category {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.thought-item[data-category="qeyd"] {
    border-left-color: #10b981;
}

.thought-item[data-category="qeyd"]::before {
    background: linear-gradient(180deg, #10b981 0%, rgba(16, 185, 129, 0.3) 100%);
}

.thought-item[data-category="qeyd"] .thought-category {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}
