* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.account-container {
    max-width: 600px;
    width: 100%;
    background: var(--container-color, rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(var(--container-blur, 10px));
    border-radius: var(--container-radius, 20px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color, #8b5cf6);
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 0 20px var(--username-glow, rgba(139, 92, 246, 0.3));
}

.profile-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-color, #fff);
    text-shadow: 0 0 10px var(--username-glow, rgba(139, 92, 246, 0.5));
}

.profile-info p {
    color: var(--text-color, rgba(255, 255, 255, 0.7));
    font-size: 16px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-card h3 {
    font-size: 12px;
    color: var(--primary-color, #8b5cf6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color, #fff);
    margin-bottom: 5px;
    word-break: break-all;
}

.stat-label {
    font-size: 11px;
    color: var(--text-color, rgba(255, 255, 255, 0.5));
}

.settings-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color, #8b5cf6);
}

.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.settings-row:last-child {
    border-bottom: none;
}

.settings-label {
    font-size: 14px;
    color: var(--text-color, rgba(255, 255, 255, 0.7));
}

.settings-value {
    font-size: 14px;
    color: var(--text-color, #fff);
    font-weight: 500;
}

.btn-primary {
    background: var(--button-background, linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%));
    color: white;
    padding: 8px 20px;
    border: var(--button-border, none);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.presence-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

#status-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-online { background: #43b581; }
.status-idle { background: #faa61a; }
.status-dnd { background: #f04747; }
.status-offline { background: #747f8d; }

.activity {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.activity-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-color, #fff);
}

.activity-details {
    font-size: 13px;
    color: var(--text-color, rgba(255, 255, 255, 0.6));
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.socials a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color, #fff);
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.socials a:hover {
    background: var(--primary-color, #8b5cf6);
    transform: translateY(-2px);
}

.loading {
    opacity: 0.5;
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .account-container {
        padding: 30px 20px;
    }
}
