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

                body {
                    background: #050505;
                        color: #ffffff;
                            font-family: Arial, sans-serif;
                                line-height: 1.5;
                                }

                                .container {
                                    width: 100%;
                                        max-width: 430px;
                                            margin: 0 auto;
                                                padding: 10px;
                                                }

                                                .bio-box {
                                                    border: 2px solid #ff006a;
                                                        border-radius: 28px;
                                                            overflow: hidden;
                                                                background: #090909;
                                                                    box-shadow: 0 0 20px rgba(255, 0, 106, 0.30);
                                                                        margin-top: 8px;
                                                                        }

                                                                        .cover {
                                                                            width: 100%;
                                                                                height: 170px;
                                                                                    object-fit: cover;
                                                                                        display: block;
                                                                                        }

                                                                                        .profile-wrap {
                                                                                            text-align: center;
                                                                                                margin-top: -45px;
                                                                                                    position: relative;
                                                                                                        z-index: 5;
                                                                                                        }

                                                                                                        .profile-pic {
                                                                                                            width: 95px;
                                                                                                                height: 95px;
                                                                                                                    border-radius: 50%;
                                                                                                                        border: 5px solid #00ffe5;
                                                                                                                            object-fit: cover;
                                                                                                                                box-shadow: 0 0 18px rgba(0, 255, 229, 0.45);
                                                                                                                                    background: #111111;
                                                                                                                                    }

                                                                                                                                    .bio-content {
                                                                                                                                        padding: 10px 14px 16px;
                                                                                                                                            text-align: center;
                                                                                                                                            }

                                                                                                                                            .bio-content h1 {
                                                                                                                                                font-size: 22px;
                                                                                                                                                    margin: 8px 0 6px;
                                                                                                                                                        color: #ffffff;
                                                                                                                                                        }

                                                                                                                                                        .welcome {
                                                                                                                                                            color: #00ffe5;
                                                                                                                                                                font-weight: 700;
                                                                                                                                                                    font-size: 15px;
                                                                                                                                                                        line-height: 1.5;
                                                                                                                                                                            margin-bottom: 14px;
                                                                                                                                                                            }

                                                                                                                                                                            .info-grid {
                                                                                                                                                                                display: grid;
                                                                                                                                                                                    grid-template-columns: 1fr 1fr;
                                                                                                                                                                                        gap: 0;
                                                                                                                                                                                            background: #151515;
                                                                                                                                                                                                border: 1px solid rgba(255, 255, 255, 0.08);
                                                                                                                                                                                                    border-radius: 22px;
                                                                                                                                                                                                        overflow: hidden;
                                                                                                                                                                                                            margin-bottom: 14px;
                                                                                                                                                                                                            }

                                                                                                                                                                                                            .info-card {
                                                                                                                                                                                                                padding: 16px 14px;
                                                                                                                                                                                                                    text-align: left;
                                                                                                                                                                                                                        border-right: 1px solid rgba(255, 255, 255, 0.08);
                                                                                                                                                                                                                            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                                                                                                                                                                                                                            }

                                                                                                                                                                                                                            .info-card:nth-child(2),
                                                                                                                                                                                                                            .info-card:nth-child(4) {
                                                                                                                                                                                                                                border-right: none;
                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                .info-card:nth-child(3),
                                                                                                                                                                                                                                .info-card:nth-child(4) {
                                                                                                                                                                                                                                    border-bottom: none;
                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                    .label {
                                                                                                                                                                                                                                        color: #cfcfcf;
                                                                                                                                                                                                                                            font-size: 13px;
                                                                                                                                                                                                                                                margin-bottom: 8px;
                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                .value {
                                                                                                                                                                                                                                                    color: #00ffe5;
                                                                                                                                                                                                                                                        font-weight: 700;
                                                                                                                                                                                                                                                            font-size: 15px;
                                                                                                                                                                                                                                                                line-height: 1.35;
                                                                                                                                                                                                                                                                    word-break: break-word;
                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                    .social-box {
                                                                                                                                                                                                                                                                        border: 2px solid #ff006a;
                                                                                                                                                                                                                                                                            border-radius: 24px;
                                                                                                                                                                                                                                                                                padding: 14px;
                                                                                                                                                                                                                                                                                    box-shadow: 0 0 14px rgba(255, 0, 106, 0.20);
                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                    .social-grid {
                                                                                                                                                                                                                                                                                        display: grid;
                                                                                                                                                                                                                                                                                            grid-template-columns: 1fr 1fr;
                                                                                                                                                                                                                                                                                                gap: 12px;
                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                .social-btn {
                                                                                                                                                                                                                                                                                                    display: flex;
                                                                                                                                                                                                                                                                                                        align-items: center;
                                                                                                                                                                                                                                                                                                            justify-content: center;
                                                                                                                                                                                                                                                                                                                gap: 8px;
                                                                                                                                                                                                                                                                                                                    text-decoration: none;
                                                                                                                                                                                                                                                                                                                        color: #ffffff;
                                                                                                                                                                                                                                                                                                                            border: 2px solid #ff006a;
                                                                                                                                                                                                                                                                                                                                border-radius: 18px;
                                                                                                                                                                                                                                                                                                                                    padding: 14px 10px;
                                                                                                                                                                                                                                                                                                                                        font-size: 14px;
                                                                                                                                                                                                                                                                                                                                            font-weight: 700;
                                                                                                                                                                                                                                                                                                                                                background: linear-gradient(145deg, #050505, #121212);
                                                                                                                                                                                                                                                                                                                                                    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 0, 106, 0.18);
                                                                                                                                                                                                                                                                                                                                                        transition: 0.25s ease;
                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                        .social-btn i {
                                                                                                                                                                                                                                                                                                                                                            font-size: 18px;
                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                            .social-btn:hover {
                                                                                                                                                                                                                                                                                                                                                                transform: translateY(-2px) scale(1.02);
                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                .feed-title {
                                                                                                                                                                                                                                                                                                                                                                    margin: 18px 0 10px;
                                                                                                                                                                                                                                                                                                                                                                        font-size: 20px;
                                                                                                                                                                                                                                                                                                                                                                            color: #00ffe5;
                                                                                                                                                                                                                                                                                                                                                                                text-align: center;
                                                                                                                                                                                                                                                                                                                                                                                    font-weight: 700;
                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                    .post {
                                                                                                                                                                                                                                                                                                                                                                                        background: #101010;
                                                                                                                                                                                                                                                                                                                                                                                            border: 1px solid rgba(255, 255, 255, 0.08);
                                                                                                                                                                                                                                                                                                                                                                                                border-radius: 18px;
                                                                                                                                                                                                                                                                                                                                                                                                    padding: 12px;
                                                                                                                                                                                                                                                                                                                                                                                                        margin-bottom: 14px;
                                                                                                                                                                                                                                                                                                                                                                                                            box-shadow: 0 0 14px rgba(255, 255, 255, 0.04);
                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                            .post-text {
                                                                                                                                                                                                                                                                                                                                                                                                                white-space: pre-wrap;
                                                                                                                                                                                                                                                                                                                                                                                                                    font-size: 15px;
                                                                                                                                                                                                                                                                                                                                                                                                                        margin-bottom: 10px;
                                                                                                                                                                                                                                                                                                                                                                                                                            color: #ffffff;
                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                            .post img {
                                                                                                                                                                                                                                                                                                                                                                                                                                width: 100%;
                                                                                                                                                                                                                                                                                                                                                                                                                                    border-radius: 14px;
                                                                                                                                                                                                                                                                                                                                                                                                                                        display: block;
                                                                                                                                                                                                                                                                                                                                                                                                                                            margin-top: 8px;
                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                            .post-meta {
                                                                                                                                                                                                                                                                                                                                                                                                                                                margin-top: 10px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                    color: #bbbbbb;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        font-size: 12px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                        @media (max-width: 500px) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                            .container {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    padding: 8px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .cover {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    height: 160px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .profile-wrap {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    margin-top: -42px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .profile-pic {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    width: 90px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            height: 90px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .bio-content h1 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            font-size: 21px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .welcome {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            font-size: 14px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .info-card {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            padding: 14px 12px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .label {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            font-size: 12px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .value {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            font-size: 14px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .social-btn {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            font-size: 13px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    padding: 13px 8px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .social-btn i {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    font-size: 16px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
}