
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* Background iframe */
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(0px);
    border-bottom: 2px solid rgba(162, 68, 239, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    color: #a244ef;
    font-size: 1.25rem;
    font-weight: bold;
}

.nav {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

/* Main Content */
.main {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
}

.content-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 6rem);
}

.profile-card-container {
    max-width: 40rem;
    width: 100%;
    position: relative;
}

/* Profile Card */
.profile-card {
    position: relative;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(140, 0, 255), rgb(140, 0, 255));
    border-radius: 1.5rem;
    filter: blur(30px);
}

.card-content {
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgb(45, 0, 87));
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 5px solid rgb(0, 0, 0);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Profile Image */
.profile-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.profile-image-ring {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(to right, #ff00ff, #000000);
    padding: 4px;
}

.profile-image-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, #ff00ff, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(to right, #ff00ff, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-emoji {
    font-size: 1.5rem;
}

/* Profile Info */
.profile-info {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-name {
    font-size: 2.25rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
    animation: pulse 1s ease-in-out infinite;
}

.profile-title {
    color: #ffffff;
    font-size: 1.125rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-card {
    background: rgb(47, 0, 90);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 3px solid rgb(0, 0, 0);
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: rgba(0, 0, 0, 0.5);
}

.service-title {
    color: #9857ff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: #36018b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-link:hover {
    background: #5602dd;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(42, 1, 109, 0.514);
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: transparent;
}



.social-letter {
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5900ff;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .profile-name {
        font-size: 1.875rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.icon-btn {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: transform 0.2s ease;
}
button:hover .icon-btn {
  transform: scale(1.1);
}
.icon-btn:active {
  transform: scale(0.9);
}