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

:root {
    --deep-blue: #0a1628;
    --midnight: #0d1f3c;
    --ocean: #1a3a5c;
    --azure: #2d5a87;
    --celestial: #4a90d9;
    --moonlight: #87ceeb;
    --starlight: #e8f4fc;
    --gold-accent: #d4af37;
    --rose-quartz: #f7cac9;
}

body {
    min-height: 100vh;
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--midnight) 50%, var(--ocean) 100%);
    color: var(--starlight);
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--celestial) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--rose-quartz) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--gold-accent) 0%, transparent 70%);
    top: 50%;
    right: -50px;
    animation-delay: -14s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 10px) scale(1.05);
    }
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--starlight), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--moonlight), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--starlight), transparent),
        radial-gradient(2px 2px at 130px 80px, var(--moonlight), transparent),
        radial-gradient(1px 1px at 160px 120px, var(--starlight), transparent),
        radial-gradient(2px 2px at 200px 50px, var(--starlight), transparent),
        radial-gradient(1px 1px at 250px 160px, var(--moonlight), transparent),
        radial-gradient(2px 2px at 300px 90px, var(--starlight), transparent),
        radial-gradient(1px 1px at 350px 200px, var(--moonlight), transparent),
        radial-gradient(2px 2px at 400px 130px, var(--starlight), transparent);
    background-repeat: repeat;
    background-size: 450px 250px;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Container */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avatar-glow {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--celestial), var(--rose-quartz), var(--gold-accent));
    padding: 4px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(74, 144, 217, 0.5), 0 0 40px rgba(74, 144, 217, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(247, 202, 201, 0.3);
    }
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--ocean) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--moonlight);
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--starlight), var(--moonlight), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1rem;
    color: var(--moonlight);
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: var(--starlight);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 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; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.whatsapp-group .link-icon,
.whatsapp-direct .link-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.ebook .link-icon {
    background: linear-gradient(135deg, var(--gold-accent), #b8860b);
    color: white;
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-title {
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.link-description {
    font-size: 0.85rem;
    color: var(--moonlight);
    opacity: 0.8;
}

.link-arrow {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--moonlight);
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Social Section */
.social-section {
    margin-top: 30px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.social-title {
    font-size: 0.9rem;
    color: var(--moonlight);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.1);
}

.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.tiktok {
    background: linear-gradient(135deg, #000000, #25F4EE);
}

.youtube {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}

.facebook {
    background: linear-gradient(135deg, #1877F2, #0d5bbd);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.footer p {
    font-size: 0.9rem;
    color: var(--moonlight);
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 30px 16px;
    }

    .title {
        font-size: 2.2rem;
    }

    .avatar-glow {
        width: 110px;
        height: 110px;
    }

    .avatar {
        font-size: 40px;
    }

    .link-card {
        padding: 16px 20px;
    }

    .link-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}



