:root {
    --bg-color: #0c0c0e;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent-color: #d433ff; /* Neon purple */
    --accent-gradient: linear-gradient(135deg, #d433ff 0%, #ff3366 100%);
    --text-main: #ffffff;
    --text-dim: #a0a0b0;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

/* Background Effect */
.background-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, #2a103d 0%, transparent 50%);
    z-index: -1;
}

.profile-container {
    width: 100%;
    max-width: 650px;
    padding: 20px;
    margin-top: 40px;
}

/* Header Styles */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.cover-photo {
    height: 160px;
    background: var(--accent-gradient);
    border-radius: 24px;
    opacity: 0.2;
    margin-bottom: -80px;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    padding: 3px;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    background: #ff3333;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 51, 51, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

.name { font-size: 28px; font-weight: 800; margin-bottom: 5px; }
.verified { color: #38bdf8; font-size: 18px; margin-left: 5px; }
.username { color: var(--accent-color); font-weight: 600; margin-bottom: 15px; }
.bio { color: var(--text-dim); font-size: 14px; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 15px 5px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover { border-color: var(--accent-color); }
.stat-card i { color: var(--accent-color); display: block; margin-bottom: 5px; }
.stat-card .value { display: block; font-weight: 800; font-size: 18px; }
.stat-card .label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; }

/* Buttons & Socials */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(212, 51, 255, 0.3);
    transition: 0.3s;
}

.action-btn:hover { transform: translateY(-3px); opacity: 0.9; }

.social-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-link:hover { background: white; color: black; }

/* Gallery */
.gallery-section { margin-top: 40px; }
.section-title { font-size: 18px; margin-bottom: 15px; font-weight: 600; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-item img:hover { filter: brightness(1.2); transform: scale(1.02); }

/* External Profiles */
.external-profiles { margin-top: 40px; }
.profile-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.profile-link-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.profile-link-item::before { display: none; }

.profile-link-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 51, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.profile-link-item:hover::before {
    opacity: 1;
}

.profile-link-item span {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.profile-link-item i {
    color: var(--accent-color);
    font-size: 14px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-link-item:hover i {
    transform: translateX(4px) rotate(-45deg);
}

.footer { text-align: center; margin-top: 50px; color: var(--text-dim); font-size: 12px; padding-bottom: 20px; }
