/* ================================================================
   DmApp — Founder/Chairman/CEO Privilege System Styles
   Bright lime green verified badges and special UI elements
   ================================================================ */

/* Verified Badge */
.verified-badge {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(0, 255, 0, 0.6));
    animation: verified-pulse 2s ease-in-out infinite;
}

@keyframes verified-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(0, 255, 0, 0.6));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.9));
        transform: scale(1.05);
    }
}

/* Verified activity stars */
.activity-star[data-verified="true"] .star-shape {
    border: 2px solid #00FF00;
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.4);
}

.activity-star[data-verified="true"]:hover .star-shape {
    border-color: #00FF00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

/* Verified chat items */
.chat-item[data-verified="true"] {
    border-left: 3px solid #00FF00;
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.05) 0%, transparent 100%);
}

/* Founder view indicator */
.founder-view-indicator {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(0, 255, 0, 0.15);
    border: 2px solid #00FF00;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #00FF00;
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
    animation: founder-glow 2s ease-in-out infinite;
}

@keyframes founder-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 255, 0, 0.6);
    }
}

.founder-view-indicator::before {
    content: '👑';
    font-size: 16px;
}

/* Activity section labels for founder view */
.activity-section-label {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 255, 0, 0.1);
    border-left: 4px solid #00FF00;
    font-size: 14px;
    font-weight: 700;
    color: #00FF00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 16px 0 8px 0;
    border-radius: 8px;
}

/* Private friends activities highlight */
.activity-star[data-privacy="friends"] {
    position: relative;
}

.activity-star[data-privacy="friends"]::before {
    content: '🔒';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 14px;
    background: rgba(0, 255, 0, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Public friends activities highlight */
.activity-star[data-privacy="public"][data-is-friend="true"] {
    position: relative;
}

.activity-star[data-privacy="public"][data-is-friend="true"]::after {
    content: '👥';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 14px;
    background: rgba(0, 255, 0, 0.15);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Verification status in profile */
.profile-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 0, 0.15);
    border: 2px solid #00FF00;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #00FF00;
    margin-left: 12px;
}

.profile-verified-badge svg {
    width: 16px;
    height: 16px;
}

/* Role badges */
.role-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00FF00, #00AA00);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.4);
}

.role-badge.founder::before {
    content: '👑 ';
}

.role-badge.chairman::before {
    content: '🏆 ';
}

.role-badge.ceo::before {
    content: '💼 ';
}

/* Activity count badges */
.activity-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #00FF00;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 6px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.5);
    z-index: 20;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-view-indicator {
        top: 65px;
        right: 10px;
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .verified-badge {
        width: 16px;
        height: 16px;
    }
    
    .activity-section-label {
        padding: 10px 16px;
        font-size: 12px;
    }
}
