:root {
    --brand: #833ab4;
    --brand-grad: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

body {
    background: #f4f6fb;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: var(--brand-grad);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.15s;
}

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

.account-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: var(--brand-grad);
    padding: 2px;
}

.account-card .avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.stat-box {
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    background: #f8f9ff;
}

.stat-box .number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand);
}

.stat-box .label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-photo { background: #4CAF50; }
.badge-reel { background: #9c27b0; }
.badge-story { background: #FF9800; }
.badge-carousel { background: #2196F3; }

.post-screenshot {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.post-screenshot-placeholder {
    width: 100%;
    height: 160px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 2rem;
}

.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-grad);
}

.login-card {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    padding: 2rem;
}

.btn-brand {
    background: var(--brand-grad);
    border: none;
    color: white;
}

.btn-brand:hover {
    opacity: 0.9;
    color: white;
}

.page-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}
