
:root {
    --primary-green: #a8e6cf; /* Ana Yeşil Ton */
    --text-primary: #1a1a1a;
    --text-secondary: #636e72;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
}

body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
}

.profile-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    display: block;
}

/* --- 👤 HEADER --- */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}


.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
    box-shadow: 0 0 0 5px rgba(168, 230, 207, 0.5); /* Hafif dış halka */
    margin-bottom: 15px;
}

.profile-username {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 5px 0 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
}

.social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.social-links img {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0 5px;
    transition: color 0.2s;
    width: 1.3rem;
}

.social-links i:hover {
    color: var(--text-primary);
}

.verified-badge {
    color: #1da1f2;
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Yönetim/Butonlar */
.profile-actions {
    margin-top: 10px;
}

.btn-primary-admin, .btn-secondary-admin {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary-admin {
    background-color: var(--text-primary);
    color: white;
}

.btn-primary-admin:hover {
    background-color: #333;
}

.sayginlik-btn {
    background-color: var(--primary-green);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.sayginlik-btn:hover {
    background-color: #92e0be;
}

/* --- 📊 BİLGİ KARTLARI --- */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile-first: 2x2 grid */
    gap: 15px;
    margin-bottom: 30px;
}

.info-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.info-card:hover {
    transform: translateY(-3px);
}

.icon-indicator {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.icon-indicator img {
    width: 2rem;
}

.info-card .card-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.info-card .card-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Kart Renkleri */
.success { background-color: #d4edda; color: #155724; }
.danger { background-color: #f8d7da; color: #721c24; }
.warning { background-color: #fff3cd; color: #856404; }
.info { background-color: #d1ecf1; color: #0c5460; }


/* --- 🌊 FLOW (AKTİVİTE) --- */
.flow-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.flow-list {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.flow-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
    transition: background-color 0.2s;
}

.flow-item:last-child {
    border-bottom: none;
}

.flow-item:hover {
    background-color: #fcfcfc;
}

.flow-icon-col {
    margin-right: 15px;
}

.flow-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.culture-sniffer-icon {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #555; /* Culture Sniffer'ın ikon rengi */
    /* Gerçek ikonu buraya background-image ile ekleyebilirsiniz */
}

.flow-content-col {
    flex-grow: 1;
}

.flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.flow-user-link {
    font-weight: 600;
    color: var(--text-primary);
}

.flow-date {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.flow-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.4;
}

.flow-impact-col {
    padding-left: 10px;
}

.reputation-score {
    padding: 4px 8px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
}

.positive {
    background-color: #e6ffed;
    color: #38a169;
}

.negative {
    background-color: #ffe6e6;
    color: #e53e3e;
}

.card-impact-icon {
    color: #f6ad55; /* Sarı/Turuncu Kart Rengi */
    font-size: 1.2rem;
}

.no-activity {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary);
}


/* --- ANİMASYONLAR --- */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-effect {
    /* Edit butonu için hafif parlama efekti */
    box-shadow: 0 0 0 rgba(168, 230, 207, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.verifiedIcon{
    width: 1.4rem;
    height: auto;
}
/* --- ROL KUTUCUĞU STİLLERİ --- */
.role-badge {
    padding: 8px 20px;
    border-radius: 25px; /* Daha yuvarlak */
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px; /* Sosyal linkler ile buton arasına boşluk */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-md);
    display: inline-flex; /* İçeriği ortalamak için */
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: all 0.3s ease;
}

/* Genel Efektler */
.role-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* --- ROL ÖZELİNDE TASARIMLAR --- */

/* ADMIN Rolü - En Havalı ve Belirgin */
.role-badge.admin {
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a); /* Koyu degrade */
    color: #fff;
    border: 1px solid #ffcc00; /* Altın sarısı çerçeve */
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5), /* Parıltı efekti */
                0 4px 12px rgba(0,0,0,0.2);
    animation: admin-glow 1.5s infinite alternate; /* Hafif animasyon */
}

.role-badge.admin:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.7),
                0 6px 18px rgba(0,0,0,0.3);
}

@keyframes admin-glow {
    from { border-color: #ffcc00; box-shadow: 0 0 10px rgba(255, 204, 0, 0.4); }
    to { border-color: #ffd700; box-shadow: 0 0 20px rgba(255, 215, 0, 0.7); }
}


/* INFLUENCER Rolü */
.role-badge.influencer {
    background-color: #ff69b4; /* Sıcak Pembe */
    color: white;
    border: 1px solid #e0409c;
}

/* MODEL Rolü */
.role-badge.model {
    background-color: #8a2be2; /* Mavi-Mor */
    color: white;
    border: 1px solid #6a1aab;
}

/* ARTIST Rolü */
.role-badge.artist {
    background-color: #ff4500; /* Canlı Turuncu */
    color: white;
    border: 1px solid #cc3700;
}

/* PHOTOGRAPHER Rolü */
.role-badge.photographer {
    background-color: #00ced1; /* Turkuaz */
    color: white;
    border: 1px solid #00a8aa;
}