* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: #0f172a; /* Deep Slate 900 for dark mode aesthetic */
    color: #f8fafc;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Animated Blobs for dynamic modern look */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #0f172a;
}

.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: move 20s infinite alternate ease-in-out;
}

.background-animation::before {
    background: radial-gradient(circle, rgba(236,72,153,0.8), transparent 70%); /* Pink */
    top: -100px;
    left: -100px;
}

.background-animation::after {
    background: radial-gradient(circle, rgba(139,92,246,0.8), transparent 70%); /* Purple */
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 150px) scale(1.1); }
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

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

.title-img-container {
    width: 100%;
    margin: 0 auto 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.title-img:hover {
    transform: scale(1.05);
}

.profile-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    font-weight: 300;
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 28px;
    border-radius: 100px; /* Perfect pill shape */
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.15rem;
    /* Glassmorphic Base */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.link-btn .icon {
    position: absolute;
    right: 28px; /* RTL friendly */
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.9;
}

.link-btn span {
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Hover States with vibrant brand colors */
.whatsapp-btn:hover {
    background: linear-gradient(90deg, #25D366, #1DB954);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-4px);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
    transform: translateY(-4px);
}

.facebook-btn:hover {
    background: linear-gradient(90deg, #1877F2, #0C56C6);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
    transform: translateY(-4px);
}

.address-btn:hover {
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    transform: translateY(-4px);
}

.phone-btn:hover {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    transform: translateY(-4px);
}

/* Icon Animation on hover */
.link-btn:hover .icon {
    transform: scale(1.3) rotate(5deg);
    opacity: 1;
}

/* Active click effect */
.link-btn:active {
    transform: scale(0.97);
}

footer {
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
    font-weight: 300;
}

.red-text {
    color: #ef4444; /* Vivid Red */
    font-weight: 600;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.4);
}

/* Keyframe Animations */
@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

    .title-img {
        max-width: 320px;
    }
    
    .link-btn {
        padding: 18px 22px;
        font-size: 1.05rem;
    }
    
    .link-btn .icon {
        right: 22px;
        font-size: 1.3rem;
    }
}
