.account-profile-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.profile-info-panel {
    width: 100%;
    max-width: 800px;
    background: rgba(0,0,0,0.7);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.profile-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.btn-small {
    background: transparent;
    border: 1px solid var(--text-gold);
    color: var(--text-gold);
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Starcraft Regular';
    font-size: 0.8rem;
}
.btn-small:hover {
    background: var(--text-gold);
    color: black;
}

.profile-header-small {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.user-avatar-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--text-gold);
    object-fit: cover;
}

.user-status-badge {
    background: #222;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-silver);
    border: 1px solid #444;
    text-transform: uppercase;
}

/* Form Styles */
.profile-form ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-silver);
    margin-bottom: 5px;
    font-family: 'Starcraft Regular';
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: #111;
    border: 1px solid #444;
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-family: 'Audiowide Regular';
    font-size: 1rem;
}

/* DOB Visual Calendar */
.dob-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dob-select {
    flex: 1;
}

.dob-calendar-container {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 5px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-placeholder {
    color: gray;
    font-size: 0.9rem;
}

.dob-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    width: 100%;
}

.dob-cal-header {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-gold);
    font-weight: bold;
    padding-bottom: 5px;
}

.dob-cal-day {
    aspect-ratio: 1/1;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.2s;
    font-size: 0.9rem;
}

.dob-cal-day:hover {
    background: #333;
    border: 1px solid var(--text-silver);
}

.dob-cal-day.selected {
    background: var(--text-gold);
    color: black;
    font-weight: bold;
    box-shadow: 0 0 8px var(--text-gold);
}

/* Phone & Privacy */
.phone-input-group {
    display: flex;
    align-items: center;
}

.country-code {
    background: #222;
    padding: 10px;
    border: 1px solid #444;
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--text-gold);
}

#user-phone {
    flex: 1;
    border-radius: 0 4px 4px 0;
}

.privacy-note {
    color: #ff4444;
    font-size: 0.7rem;
    margin-top: 5px;
    text-align: right;
}

.char-count {
    text-align: right;
    font-size: 0.7rem;
    color: var(--text-silver);
    margin-top: 2px;
}

.form-actions {
    margin-top: 10px;
    text-align: right;
}

/* Public View Styles */
.public-details {
    list-style: none;
    padding: 0;
}

.public-details li {
    background: rgba(255,255,255,0.05);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #333;
}

.public-details strong {
    color: var(--text-gold);
    font-family: 'Starcraft Regular';
    margin-right: 10px;
}