/* General styles */
body, #app {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
}

/* Content Area */
.content-area {
    position: relative;
    width: 100%;
}

/* Profile header styles */
.profile-header {
    text-align: center;
    padding: 16px;
    background: #000;
}

.profile-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .profile-header {
        padding: 12px;
    }

    .profile-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .profile-header {
        padding: 10px;
    }

    .profile-title {
        font-size: 16px;
    }
}