* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

body {
    background-color: #f0f2f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    background: white;
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.banner {
    height: 120px;
    background-image: url('https://placehold.co/400x150/ff9a9e/fff?text=Banner');
    background-size: cover;
    background-position: center;
}

.profile-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: -50px auto 15px;
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    background: white;
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border: 3px solid white;
    border-radius: 50%;
}

.info {
    padding: 0 20px;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.bio {
    margin-top: 10px;
    color: #444;
    line-height: 1.4;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.number {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 20px 30px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px 10px;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.2s;
    color: #333;
}

.social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.social-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Social Colors */
.instagram:hover { color: #E1306C; background: #fff0f5; }
.youtube:hover { color: #FF0000; background: #fff0f0; }
.twitter:hover { color: #1DA1F2; background: #f0f8ff; }
.tiktok:hover { color: #000000; background: #e0e0e0; }
.twitch:hover { color: #9146FF; background: #f3e5ff; }
.linkedin:hover { color: #0077b5; background: #e6f7ff; }

.follow-btn {
    width: 80%;
    margin: 0 auto 30px;
    display: block;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: #1a1a1a;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.follow-btn:hover {
    background: #333;
    transform: scale(1.02);
}
