/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sky-blue: #e3f2fd;
    --light-blue: #bbdefb;
    --soft-blue: #90caf9;
    --medium-blue: #64b5f6;
    --accent-blue: #42a5f5;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --cream: #fef9f3;
    --vanilla: #faf6f0;
    --text-primary: #2c3e50;
    --text-secondary: #546e7a;
    --text-muted: #78909c;
    --shadow: rgba(66, 165, 245, 0.15);
    --shadow-hover: rgba(66, 165, 245, 0.25);
    --whatsapp: #25D366;
    --instagram: #E4405F;
    --tiktok: #000000;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 40%, #e3f2fd 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-top: 80px; /* Space for fixed banner */
}

.container {
    width: 100%;
    max-width: 480px;
    animation: fadeIn 0.6s ease-in-out;
}

/* Zunta Banner - Fixed Top */
.zunta-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #8B1538;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
    transition: all 0.3s ease;
}

.zunta-banner:hover {
    background: rgba(10, 10, 10, 1);
    border-bottom-color: #C92952;
    box-shadow: 0 4px 25px rgba(139, 21, 56, 0.5);
}

.banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.banner-text {
    font-size: 0.9rem;
    color: #B8B8B8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.banner-logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B1538 0%, #C92952 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.banner-icon {
    font-size: 0.85rem;
    color: #8B1538;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.zunta-banner:hover .banner-icon {
    color: #C92952;
    transform: translateX(3px) translateY(-2px);
}

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

/* Profile Card */
.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px var(--shadow);
    border: 1px solid rgba(144, 202, 249, 0.3);
    animation: slideUp 0.8s ease-out;
}

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

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(144, 202, 249, 0.4);
}

/* Logo Container */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-blue) 50%, var(--medium-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(66, 165, 245, 0.3), 0 0 40px rgba(144, 202, 249, 0.2);
    animation: logoFloat 3s ease-in-out infinite;
    border: 3px solid rgba(66, 165, 245, 0.4);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.logo-placeholder i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--medium-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(66, 165, 245, 0.3));
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--soft-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Description Section */
.description {
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.8) 0%, rgba(187, 222, 251, 0.6) 100%);
    border-radius: 20px;
    border: 2px solid rgba(144, 202, 249, 0.3);
}

.description .slogan {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    text-align: center;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.description .products {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 400;
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

/* Link Cards */
.link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #faf6f0;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid rgba(144, 202, 249, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
    background: #ffffff;
}

.link-card:active {
    transform: translateY(-2px);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.link-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.instagram-card .icon-wrapper {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-card .icon-wrapper {
    background: linear-gradient(135deg, #000000 0%, #ee1d52 50%, #69c9d0 100%);
}

.whatsapp-card .icon-wrapper {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #1ea952 100%);
}

/* Link Content */
.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.link-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Arrow */
.arrow {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.link-card:hover .arrow {
    transform: translateX(5px);
    color: var(--accent-blue);
}

/* Specific Card Hover Effects */
.instagram-card:hover {
    border-color: #E4405F;
}

.tiktok-card:hover {
    border-color: #69c9d0;
}

.whatsapp-card:hover {
    border-color: var(--whatsapp);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(144, 202, 249, 0.4);
}

.footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }

    .profile-card {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .banner-wrapper {
        padding: 12px 20px;
    }

    .banner-text {
        font-size: 0.75rem;
    }

    .banner-logo {
        font-size: 1.2rem;
    }

    .banner-icon {
        font-size: 0.75rem;
    }

    .logo-placeholder {
        width: 80px;
        height: 80px;
    }

    .logo-placeholder i {
        font-size: 2.5rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .description {
        padding: 20px;
    }

    .description .slogan {
        font-size: 1rem;
    }

    .description .products {
        font-size: 0.9rem;
    }

    .link-card {
        padding: 18px 20px;
        gap: 15px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .link-content h3 {
        font-size: 1rem;
    }

    .link-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .brand-name {
        font-size: 1.75rem;
    }

    .link-card {
        padding: 15px 18px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
