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

:root {
    --text-dark: #2c3e50;
    --text-gray: #5a6c7d;
    --pink: #f8a5c2;
    --purple: #a78bfa;
    --light-pink: #fef7f7;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background: linear-gradient(180deg, var(--light-pink) 0%, var(--white) 60%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Logo Section */
.logo-section {
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.logo-text {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: #4a5568;
    letter-spacing: 1px;
    margin: 0;
}

.logo-img {
    width: 580px;
    max-width: 80vw;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

/* Main Content */
.main-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

/* Profile Section */
.profile-section {
    margin: 1.5rem 0 2rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.image-container {
    position: relative;
}

.image-wrapper {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    position: relative;
    /* padding: 1px; */
    /* background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%); */
    border-radius: 50%;
    border: 1px solid var(--white);
    box-shadow: 0 22px 48px rgba(44, 40, 57, 0.35), 0 8px 20px rgba(0, 0, 0, 0.12);
    animation: float 3s ease-in-out infinite;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    background: var(--white);
    object-fit: cover;
    object-position: center;
}

/* Name Section */
.name-section {
    text-align: center;
    margin: 1.5rem 0 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Description Section */
.description-section {
    text-align: center;
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Follower Section */
.follower-section {
    text-align: center;
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.follower-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.follower-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
}

.follower-count {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Social Section */
.social-section {
    margin: 2.5rem 0 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    color: var(--text-gray);
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--purple);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
}

.social-link.instagram:hover {
    color: #E4405F;
    border-color: #E4405F;
}

.social-link.website:hover {
    color: var(--purple);
    border-color: var(--purple);
}

.social-link.email:hover {
    color: #D44638;
    border-color: #D44638;
}

.social-link.tiktok:hover {
    color: white;
    border-color: #000000;
    background: #000000;
}

.social-link.shop:hover {
    color: var(--purple);
    border-color: var(--purple);
}

.social-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: auto;
    /* border-top: 1px solid #e2e8f0; */
    animation: fadeInUp 1s ease-out 1s both;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--purple);
}

.footer-separator {
    margin: 0 0.75rem;
    color: #cbd5e0;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-section {
        padding: 2rem 1rem 0.5rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .main-content {
        padding: 0 1rem 1.5rem;
    }

    .image-wrapper {
        width: 240px;
        height: 240px;
    }

    .name {
        font-size: 1.9rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .social-container {
        gap: 1.25rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.6rem;
    }

    .image-wrapper {
        width: 200px;
        height: 200px;
    }

    .name {
        font-size: 1.7rem;
    }

    .social-container {
        gap: 1rem;
    }

    .social-link {
        width: 46px;
        height: 46px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
