/* Profile Dashboard Styles */
:root {
    --accent: #ff8c00;
    --bg-dark: #0f1115;
    --card-bg: #1a1d24;
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
}

body {
    margin: 0;
    background-color: var(--bg-dark);
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
}

.profile-dashboard {
    padding: 20px;
    padding-bottom: 100px;
}

/* Top Bar */
.profile-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.help-action-btn {
    background: #252a34;
    color: var(--accent);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.settings-action-btn {
    color: var(--text-white);
    font-size: 22px;
}

/* Profile Main Card */
.profile-main-card {
    text-align: center;
    margin-bottom: 40px;
}

.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid var(--accent);
    padding: 3px;
    background: var(--bg-dark);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-main-card h2 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

.profile-main-card p {
    color: var(--accent);
    font-size: 14px;
    margin-top: 5px;
}

/* Info List */
.info-container {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 10px 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-dim);
    font-size: 14px;
}

.info-label i {
    color: var(--accent);
    margin-right: 8px;
    width: 20px;
}

.info-value {
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    text-align: right;
    max-width: 60%;
}

/* Buttons */
.profile-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.edit-profile-btn, .sign-out-btn {
    width: 100%;
    padding: 16px;
    border-radius: 15px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.edit-profile-btn {
    background: var(--accent);
    color: #fff;
}

.sign-out-btn {
    background: #252a34;
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.edit-profile-btn:active, .sign-out-btn:active {
    transform: scale(0.97);
}

/* Bottom Nav Style */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1d24;
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 100;
}

.bottom-nav a {
    color: var(--text-dim);
    font-size: 20px;
}

.bottom-nav a.active {
    color: var(--accent);
}
