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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffe373;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 30px;
    padding: 40px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.6s ease-out;
}

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

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(32, 90, 65, 0.3);
    border: 4px solid #205a41;
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.brand-tagline {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.brand-tagline.handwriting {
    font-family: 'Great Vibes', 'Caveat', cursive;
    font-size: 28px;
    font-weight: 400;
    color: #914b21;
    margin-top: 15px;
}

/* Section Title */
.section-title {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Link Button Styles */
.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.link-button:hover::before {
    left: 0;
}

.link-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* Social Media Button Colors */
.link-button.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0A66C2 100%);
}

.link-button.twitter {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.link-button.instagram {
    background: linear-gradient(135deg, #FD1D1D 0%, #833AB4 50%, #FD1D1D 100%);
}

.link-button.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #C30C10 100%);
}

.link-button.tiktok {
    background: linear-gradient(135deg, #000000 0%, #25F4EE 100%);
}

.link-button.website {
    background: #205a41;
}

.link-button.line-shopping {
    background: linear-gradient(135deg, #00B900 0%, #00D920 100%);
}

/* Footer Styles */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.footer p {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
    margin: 5px 0;
}



/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .brand-name {
        font-size: 28px;
    }

    .brand-tagline {
        font-size: 14px;
    }

    .link-button {
        padding: 14px 18px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 25px 15px;
    }

    .profile-image {
        width: 80px;
        height: 80px;
    }

    .brand-name {
        font-size: 24px;
    }

    .link-button {
        padding: 12px 16px;
        font-size: 14px;
    }

    .icon {
        width: 20px;
        height: 20px;
    }
}

/* Tooltip Style */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: #333;
    color: white;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 8px;
    opacity: 0.9;
    pointer-events: none;
    animation: tooltipFade 0.3s ease;
}

[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    margin-bottom: -10px;
    opacity: 0.9;
}

@keyframes tooltipFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 0.9;
        transform: translateX(-50%) translateY(0);
    }
}
