/* ===================== PROFIL HEADER KARTASY ===================== */
.profile-header-card {
    background: linear-gradient(180deg, rgba(30, 30, 42, 0.98), rgba(22, 22, 34, 0.99));
    border-radius: 24px;
    padding: 32px 24px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.profile-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff2d55, #ff6b35, #ff8c00, #ff2d55);
    background-size: 200% 100%;
    animation: progress-shimmer 3s linear infinite;
}
.profile-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 14px;
    box-shadow: 0 0 30px rgba(255, 45, 85, 0.3);
}
.profile-header-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}
.profile-phone {
    font-size: 15px;
    color: #8888a0;
    margin-bottom: 4px;
}
.profile-ref-code {
    font-family: 'Orbitron', monospace;
    font-size: 15px;
    color: #ff2d55;
    margin-bottom: 18px;
    text-shadow: 0 0 8px rgba(255, 45, 85, 0.25);
    letter-spacing: 2px;
}
.btn-sazlamalar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #c0c0d0;
    padding: 12px 32px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-sazlamalar:hover {
    background: rgba(255, 45, 85, 0.12);
    border-color: rgba(255, 45, 85, 0.25);
    color: #ff2d55;
    transform: translateY(-2px);
}

/* ===================== KATEGORIYALAR ===================== */
.profile-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 100px;
}

/* Karta - gaty gara, tekiz */
.category-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: #0c0c10;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.category-card:hover {
    background: #121218;
}
.category-card:active {
    transform: scale(0.985);
}

/* Icon - ähli bir reňkli qyzyl */
.cat-icon,
.category-icon {
    font-size: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ff2d55;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Ähli icon klasslary bir reňkli */
.cat-icon-red,
.cat-icon-orange,
.cat-icon-pink,
.cat-icon-green,
.category-icon-red,
.category-icon-orange,
.category-icon-pink,
.category-icon-green {
    color: #ff2d55;
}

.category-card:hover .cat-icon,
.category-card:hover .category-icon {
    background: rgba(255, 45, 85, 0.08);
    border-color: rgba(255, 45, 85, 0.15);
}

/* Info */
.cat-info,
.category-info {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-title,
.category-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
    color: #ffffff;
}

.cat-subtitle,
.category-info p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.2px;
}

/* Arrow */
.cat-arrow,
.category-arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.category-card:hover .cat-arrow,
.category-card:hover .category-arrow {
    color: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
}

/* Logout */
.category-logout {
    background: #0c0c10;
}
.category-logout:hover {
    background: #121218;
}

/* ===================== ACYLJAK BÖLEKLER ===================== */
.category-expand {
    background: #08080c;
    border-radius: 0 0 20px 20px;
    padding: 0 22px 18px;
    margin-top: -10px;
    margin-bottom: 10px;
    margin-left: 4px;
    margin-right: 4px;
    border: none;
    animation: expandIn 0.3s ease;
}
@keyframes expandIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===================== STATUS STEPS ===================== */
.status-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}
.status-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border-left: 3px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}
.status-step.completed { border-left-color: #00c853; background: rgba(0, 200, 83, 0.04); }
.status-step.pending { border-left-color: #ff8c00; background: rgba(255, 140, 0, 0.04); }
.status-step.rejected { border-left-color: #ff2d55; background: rgba(255, 45, 85, 0.04); }
.step-icon { font-size: 20px; width: 28px; text-align: center; flex-shrink: 0; }
.step-icon .fa-check-circle { color: #00c853; }
.step-icon .fa-hourglass-half { color: #ff8c00; }
.step-icon .fa-times-circle { color: #ff2d55; }
.step-info { display: flex; flex-direction: column; }
.step-title { font-weight: 700; font-size: 14px; color: #e0e0e8; }
.step-date { font-size: 12px; color: #505050; margin-top: 3px; }

.status-badge {
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.status-badge.approved { background: rgba(0, 200, 83, 0.1); color: #00c853; border: 1px solid rgba(0, 200, 83, 0.15); }
.status-badge.rejected { background: rgba(255, 45, 85, 0.1); color: #ff2d55; border: 1px solid rgba(255, 45, 85, 0.15); }
.status-badge.waiting { background: rgba(255, 140, 0, 0.1); color: #ff8c00; border: 1px solid rgba(255, 140, 0, 0.15); }

.btn-status-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    margin-top: 12px;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-status-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.25);
}

/* ===================== TOPAR BÖLEGI ===================== */
.team-card-inner {
    padding-top: 10px;
}
.team-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.team-header-inner h4 {
    font-size: 16px;
    font-weight: 700;
    color: #e0e0e8;
}
.team-code-display {
    text-align: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}
.team-code-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #505050;
    margin-bottom: 10px;
}
.team-code-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.35);
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 45, 85, 0.15);
    margin-bottom: 8px;
}
.team-code-box code {
    flex: 1;
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    color: #ff2d55;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 45, 85, 0.2);
    text-align: center;
}
.team-code-box button {
    background: rgba(255, 45, 85, 0.12);
    border: 1px solid rgba(255, 45, 85, 0.25);
    border-radius: 10px;
    padding: 8px 14px;
    color: #ff2d55;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}
.team-code-box button:hover {
    background: rgba(255, 45, 85, 0.22);
}
.team-code-hint {
    font-size: 11px;
    color: #404050;
}
.team-empty-inner {
    text-align: center;
    padding: 20px;
}
.team-empty-inner p {
    font-size: 14px;
    color: #505050;
    margin-bottom: 14px;
}
.btn-team-action {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff2d55, #ff6b35);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-team-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.25);
}

/* ===================== YUKLENME ===================== */
.loading-full {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 16, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    gap: 16px;
}
.loading-full i {
    font-size: 36px;
    color: #ff2d55;
    animation: spin 1s linear infinite;
}
.loading-full p {
    color: #808090;
    font-size: 14px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 480px) {
    .profile-header-card { padding: 24px 16px; }
    .profile-avatar-large { width: 68px; height: 68px; font-size: 30px; }
    .profile-header-card h2 { font-size: 20px; }
    .category-card { padding: 18px 20px; }
    .cat-icon,
    .category-icon { width: 44px; height: 44px; font-size: 20px; }
    .cat-title,
    .category-info h3 { font-size: 15px; }
    .cat-subtitle,
    .category-info p { font-size: 12px; }
}
