/* ===========================
   KEBAP HOCASI — Bio Link
   Mint Green Theme
   =========================== */

:root {
    --mint-50: #f0fdf4;
    --mint-100: #dcfce7;
    --mint-200: #bbf7d0;
    --mint-300: #86efac;
    --mint-400: #4ade80;
    --mint-500: #22c55e;
    --mint-600: #16a34a;
    --mint-700: #15803d;
    --mint-800: #166534;
    --mint-900: #14532d;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.15);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--mint-50);
    color: var(--gray-800);
    min-height: 100vh;
    line-height: 1.5;
}

/* Fixed Top Bar */
.fixed-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.fixed-topbar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fixed-topbar-inner {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--mint-100);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.fixed-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fixed-topbar-logo {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--mint-200);
    padding: 2px;
    background: var(--white);
}

.fixed-topbar-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-800);
}

.fixed-topbar-share {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--mint-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--mint-600);
    transition: all 0.2s ease;
}

.fixed-topbar-share:hover {
    background: var(--mint-50);
    border-color: var(--mint-300);
}

/* Page Wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(34, 197, 94, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(74, 222, 128, 0.1), transparent),
        radial-gradient(ellipse 50% 40% at 10% 60%, rgba(134, 239, 172, 0.08), transparent);
    pointer-events: none;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    padding: 24px 20px 40px;
    margin: 0 auto;
}

/* Share Button */
.share-btn {
    position: absolute;
    top: 28px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--mint-200);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--mint-700);
    transition: all 0.2s ease;
    z-index: 10;
}

.share-btn:hover {
    background: var(--mint-100);
    border-color: var(--mint-300);
    transform: scale(1.05);
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 28px;
}

.avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
    border-radius: var(--radius-full);
    background: var(--white);
    padding: 3px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.avatar.has-story {
    cursor: pointer;
    padding: 4px;
}

.avatar-story-ring {
    display: none;
}

.avatar.has-story .avatar-story-ring {
    display: block;
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-full);
    background: linear-gradient(45deg,
        #f09433, #e6683c, #dc2743, #cc2366, #bc1888,
        #8a3ab9, #4c68d7, #6b9ce3, #45b5aa, #79c267,
        #f09433
    );
    background-size: 400% 400%;
    animation: storyRingShift 3s ease infinite;
    z-index: 0;
}

.avatar.has-story .avatar-inner {
    position: relative;
    z-index: 1;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
}

@keyframes storyRingShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.avatar.has-story.seen .avatar-story-ring {
    background: conic-gradient(
        var(--gray-300), var(--gray-200), var(--gray-300)
    );
    animation: none;
}


.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--mint-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-inner img,
.avatar-inner svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.profile-bio {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 340px;
    margin: 0 auto;
    line-height: 1.6;
}

.profile-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mint-600);
    text-decoration: none;
    transition: all 0.2s ease;
}

.profile-location:hover {
    color: var(--mint-700);
    transform: translateY(-1px);
}

/* Highlight Banner */
.highlight-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, var(--mint-600), var(--mint-500));
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.highlight-banner.open {
    background: linear-gradient(135deg, var(--mint-600), var(--mint-500));
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.highlight-banner.closed {
    background: linear-gradient(135deg, var(--gray-600), var(--gray-500));
    box-shadow: 0 4px 14px rgba(107, 114, 128, 0.3);
}

.highlight-dot {
    width: 8px;
    height: 8px;
    background: #86efac;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid var(--mint-100);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
}

.link-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--mint-400), var(--mint-500));
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    transition: width 0.25s ease;
}

.link-card:hover {
    border-color: var(--mint-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.link-card:hover::before {
    width: 4px;
}

.link-card:active {
    transform: scale(0.985);
}

@property --border-animate-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.link-card.featured {
    background: linear-gradient(135deg, var(--mint-50), var(--white));
    border-color: transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: visible;
}

.link-card.featured .border-animate {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    border: 3px solid transparent;
    pointer-events: none;
    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-clip: content-box, border-box;
    mask-composite: exclude;
    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
}

.link-card.featured .border-animate::after {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(
        from var(--border-animate-angle),
        transparent 30%,
        #f59e0b,
        #4ade80,
        #16a34a,
        #f59e0b,
        transparent 70%
    );
    animation: border-animate-beam 3s linear infinite;
}

@keyframes border-animate-beam {
    to { --border-animate-angle: 360deg; }
}

.link-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--mint-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--mint-600);
    transition: all 0.25s ease;
}

.delivery-icon {
    width: 48px;
    height: 44px;
    animation: driveBounce 1s ease-in-out infinite alternate;
}

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

.link-card:hover .link-icon {
    background: var(--mint-100);
    color: var(--mint-700);
}

.link-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.link-text strong {
    font-size: 0.925rem;
    font-weight: 650;
    color: var(--gray-800);
    display: block;
}

.link-text small {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.link-promo {
    color: #d97706;
    font-weight: 600;
    font-size: 0.72rem;
    margin-top: 4px;
    display: inline;
    min-height: 1.1em;
}

.link-promo .cursor {
    display: inline-block;
    width: 2px;
    height: 0.85em;
    background: #d97706;
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: blinkCursor 0.7s step-end infinite;
}

.link-promo .cursor.blink-final {
    animation: blinkCursor 0.5s step-end 3 forwards;
}

.link-promo .cursor.hidden {
    display: none;
}

@keyframes blinkCursor {
    50% { background: transparent; }
}

.link-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--mint-500), var(--mint-400));
    color: var(--white);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.link-badge-corner {
    position: absolute;
    top: -8px;
    right: -6px;
    padding: 2px 10px;
    font-size: 0.62rem;
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
    z-index: 2;
}

.link-arrow {
    color: var(--gray-300);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.link-card:hover .link-arrow {
    color: var(--mint-500);
    transform: translateX(2px);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    background: #25D366;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    margin-bottom: 32px;
}

.whatsapp-btn:hover {
    background: #22c35e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:active {
    transform: scale(0.98);
}

/* Campaign Button */
.campaign-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 32px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.campaign-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}

.campaign-btn:active {
    transform: scale(0.98);
}

/* Social Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1.5px solid var(--mint-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    border-color: var(--mint-300);
    color: var(--mint-600);
    background: var(--mint-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    text-align: center;
    padding: 16px 0 8px;
    border-top: 1px solid var(--mint-100);
}

.footer p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ===========================
   Directions Modal
   =========================== */
.directions-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.directions-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.directions-address {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    padding-left: 38px;
}

.directions-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 650;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.directions-btn:active {
    transform: scale(0.98);
}

.google-btn {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-800);
}

.google-btn:hover {
    border-color: #4285F4;
    background: #f0f6ff;
}

.yandex-btn {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-800);
}

.yandex-btn:hover {
    border-color: #FC3F1D;
    background: #fff5f3;
}

/* Link card as button reset */
button.link-card {
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    text-align: left;
}

/* ===========================
   Share Modal
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(180deg, var(--mint-50), var(--white));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-top: 3px solid var(--mint-400);
    padding: 28px 24px 36px;
    width: 100%;
    max-width: 480px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--mint-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--mint-600);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--mint-100);
    border-color: var(--mint-300);
}

.modal-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--mint-800);
}

.share-url-box {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.share-url-box input {
    flex: 1;
    padding: 12px 14px;
    border: 1.5px solid var(--mint-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--gray-700);
    background: var(--white);
    outline: none;
}

.share-url-box input:focus {
    border-color: var(--mint-400);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.copy-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--mint-600), var(--mint-500));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--mint-700), var(--mint-600));
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}

.share-options {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1.5px solid var(--mint-100);
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.share-option:hover {
    border-color: var(--mint-300);
    background: var(--mint-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--gray-800);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 200;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: var(--shadow-xl);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===========================
   Story Viewer
   =========================== */
.story-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.story-overlay.active {
    opacity: 1;
    visibility: visible;
}

.story-container {
    position: relative;
    height: 100dvh;
    width: calc(100dvh * 9 / 16);
    max-width: 100%;
    background: #000;
    overflow: hidden;
}

.story-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 4px;
    padding: 12px 12px 0;
    z-index: 10;
}

.story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--white);
    border-radius: 2px;
    transition: none;
}

.story-progress-bar.watched .story-progress-fill {
    width: 100%;
}

.story-progress-bar.active .story-progress-fill {
    width: 0%;
}

.story-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 10;
}

.story-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    border: 2px solid var(--white);
    background: var(--white);
    padding: 2px;
}

.story-username {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.story-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: background 0.2s ease;
}

.story-close:hover {
    background: rgba(0, 0, 0, 0.5);
}

.story-video {
    width: auto;
    height: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.story-nav {
    position: absolute;
    top: 60px;
    bottom: 60px;
    width: 35%;
    z-index: 5;
    cursor: pointer;
}

.story-nav-prev {
    left: 0;
}

.story-nav-next {
    right: 0;
}

.story-mute {
    position: absolute;
    bottom: 24px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    z-index: 10;
    border: none;
    transition: background 0.2s ease;
}

.story-mute:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section {
    animation: fadeInUp 0.6s ease forwards;
}

.highlight-banner {
    animation: fadeInUp 0.6s ease 0.15s both;
}

.whatsapp-btn {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.social-section {
    animation: fadeInUp 0.6s ease 0.6s both;
}

/* ===========================
   Responsive
   =========================== */
@media (min-width: 481px) {
    .container {
        padding: 40px 24px 48px;
    }

    .modal-content {
        border-radius: var(--radius-lg);
        margin-bottom: 20px;
    }

    .modal-overlay {
        align-items: center;
    }
}

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

    .link-card {
        padding: 12px 14px;
        gap: 12px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
    }

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