* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #3b82f6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 480px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 28px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #1e40af;
}



/* Header Section */
.header {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
}

.profile-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.profile-image:hover img {
    transform: scale(1.1);
}

.brand-name {
    font-size: 36px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}



.tagline {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
}

.stat {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
}

.number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bio Section */
.bio-section {
    padding: 30px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    backdrop-filter: blur(15px);
}

.bio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(59, 130, 246, 0.3);
}

.bio-text {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 500;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.location i {
    color: #3b82f6;
    font-size: 16px;
}

/* Links Section */
.links-section {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: relative;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(59, 130, 246, 0.3);
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    margin-bottom: 18px;
    background: rgba(248, 250, 252, 0.95);
    border-radius: 18px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.06),
        0 2px 4px rgba(0, 0, 0, 0.08);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.98);
}

.link-card.primary {
    background: #1e40af;
    color: white;
    font-weight: 800;
    box-shadow: 
        0 12px 24px rgba(59, 130, 246, 0.25),
        0 6px 12px rgba(0, 0, 0, 0.1);
}

.link-card.primary:hover {
    background: #1e3a8a;
    border-color: #1e40af;
    box-shadow: 
        0 16px 32px rgba(59, 130, 246, 0.35),
        0 8px 16px rgba(0, 0, 0, 0.12);
}

.link-card i:first-child {
    font-size: 22px;
    margin-right: 18px;
    width: 28px;
    text-align: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.link-card:hover i:first-child {
    transform: scale(1.3) rotate(8deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.link-card i:last-child {
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.link-card:hover i:last-child {
    transform: translateX(3px);
    opacity: 1;
}

.link-card span {
    flex: 1;
    text-align: left;
}

/* Footer */
.footer {
    padding: 30px;
    background: rgba(248, 250, 252, 0.98);
    text-align: center;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(15px);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(59, 130, 246, 0.3);
}

.footer p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    font-size: 13px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.footer-links a:hover {
    color: #1e40af;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        margin: 10px;
        border-radius: 20px;
        max-width: 100%;
    }
    
    .header {
        padding: 30px 20px 20px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .brand-name {
        font-size: 28px;
    }
    
    .social-stats {
        gap: 25px;
    }
    
    .links-section {
        padding: 20px;
    }
    
    .link-card {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.container {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }
.link-card:nth-child(7) { animation-delay: 0.7s; }
.link-card:nth-child(8) { animation-delay: 0.8s; }
.link-card:nth-child(9) { animation-delay: 0.9s; }

.brand-name {
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.profile-image {
    animation: pulse 3s ease-in-out infinite;
} 