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

body {
    background-color: #0d0d1a;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-image: radial-gradient(circle at 80% 10%, #2a1b4d 0%, transparent 50%);
    min-height: 100vh;
}

.wrapper { max-width: 900px; width: 100%; }

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about-badge {
    background: #836df2;
    padding: 12px 50px;
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: 0 40px 40px 0;
    margin-left: -60px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.2);
}

.description { color: #d1d1d1; line-height: 1.6; max-width: 500px; font-size: 0.95rem; }
.description strong { color: white; }

.profile-frame {
    width: 240px;
    height: 320px;
    border-radius: 120px;
    overflow: hidden;
    border: 2px solid rgba(131, 109, 242, 0.3);
    background: #1a1a2e;
    box-shadow: 0 0 30px rgba(131, 109, 242, 0.2);
}

.profile-frame img { width: 100%; height: 100%; object-fit: cover; }

.contact-head { font-size: 1.6rem; margin: 30px 0 15px; }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-item { display: flex; align-items: center; gap: 10px; color: #d1d1d1; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.contact-item i { color: #836df2; font-size: 1.1rem; }
.contact-item:hover { color: #836df2; }

.main-card {
    background: #836df2;
    border-radius: 0 80px 80px 80px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.section-box h4 { font-size: 1.3rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 1px; }

.content-text { color: rgba(255,255,255,0.95); font-size: 0.95rem; line-height: 1.5; }

.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-btn { 
    background: rgba(0,0,0,0.15); 
    padding: 10px 12px; 
    border-radius: 8px; 
    color: white; 
    text-decoration: none; 
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.social-btn:hover { background: rgba(0,0,0,0.4); transform: translateY(-2px); }

.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

@media (max-width: 768px) {
    .top-container, .main-card, .contact-list { grid-template-columns: 1fr; flex-direction: column; }
    .profile-frame { margin: 30px auto; }
    .about-badge { margin-left: -20px; }
}
