* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #050505;
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background gradient effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, #1e293b 0%, #050505 70%);
    z-index: -1;
}

.header-banner {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
    width: 90%;
    max-width: 580px;
    margin-top: -100px;
    padding-bottom: 60px;
    z-index: 1;
}

.profile-card {
    text-align: center;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(15px);
    padding: 40px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 30%; /* Modern rounded shape */
    border: 3px solid #6366f1;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.profile-card:hover .profile-img {
    transform: rotate(5deg) scale(1.05);
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.tagline {
    color: #6366f1;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-section {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

h3 {
    font-size: 0.95rem;
    color: #818cf8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #a5b4fc;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-btn {
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    padding: 14px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wa { background: #075e54; }
.ig { background: #1a1a1a; border: 1px solid #333; }
.tiktok { background: #000; border: 1px solid #333; }
.mail { background: #1e293b; }

.contact-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

@media (max-width: 450px) {
    .contact-grid { grid-template-columns: 1fr; }
}