/* ==========================================================================
   CALLAVI MOTORS - PREMIUM LINK-IN-BIO STYLE SHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg-dark: #0a0a0b;
    --color-card-bg: linear-gradient(135deg, rgba(20, 20, 22, 0.85) 0%, rgba(10, 10, 11, 0.95) 100%);
    --color-card-border: rgba(197, 168, 128, 0.12);
    --color-card-border-hover: rgba(197, 168, 128, 0.4);
    
    /* Gold Accents (Callavi Gold) */
    --gold-primary: #c5a880;
    --gold-bright: #e5c07b;
    --gold-metallic: linear-gradient(135deg, #a37c3f 0%, #e5c07b 50%, #b38e55 100%);
    --gold-glow: rgba(197, 168, 128, 0.25);
    --gold-glow-intense: rgba(197, 168, 128, 0.45);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-gold: #c5a880;
    --text-muted: #88888d;
    --text-dark: #121214;
    
    /* Layout & Animation */
    --border-radius-card: 16px;
    --border-radius-mockup: 40px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-primary: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #070708;
    /* Luxury Carbon Fiber Grid Pattern for screen margins (high-performance showroom vibe) */
    background-image: 
        linear-gradient(45deg, #030304 25%, transparent 25%), 
        linear-gradient(-45deg, #030304 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #030304 75%), 
        linear-gradient(-45deg, transparent 75%, #030304 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    font-family: var(--font-primary);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* --------------------------------------------------------------------------
   2. AMBIENT SHOWROOM BACKGROUNDS
   -------------------------------------------------------------------------- */
/* Soft golden showroom radial glows in the background corners with dynamic slow pulse */
.showroom-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    will-change: transform, opacity;
    animation: showroomBreathe 12s ease-in-out infinite alternate;
}

.glow-left {
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
}

.glow-right {
    bottom: -20%;
    right: -20%;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
    animation-delay: -6s; /* Offset breathing cycles */
}

@keyframes showroomBreathe {
    0% {
        transform: scale(1);
        opacity: 0.06;
    }
    100% {
        transform: scale(1.15);
        opacity: 0.12;
    }
}

.ambient-radial-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.04) 0%, rgba(0, 0, 0, 0) 80%);
    z-index: 0;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   3. MOBILE MOCKUP CONTAINER (DESKTOP STYLING)
   -------------------------------------------------------------------------- */
.page-container {
    width: 100%;
    max-width: 520px;
    height: 94vh;
    margin: 3vh auto;
    position: relative;
    background: linear-gradient(180deg, #0e0e10 0%, #050506 100%);
    border-radius: var(--border-radius-mockup);
    border: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.95),
        0 0 50px rgba(197, 168, 128, 0.02),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 10;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.page-container:hover {
    border-color: rgba(197, 168, 128, 0.28);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.98),
        0 0 60px rgba(197, 168, 128, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

/* Carbon/Metallic outer glow outline overlay - gradient-rich double borders */
.mockup-border {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-mockup);
    border: 1px solid transparent;
    /* Exquisite multi-stop luxury metal gold linear outline */
    background: linear-gradient(135deg, 
        rgba(197, 168, 128, 0.35) 0%, 
        rgba(255, 255, 255, 0.03) 25%, 
        rgba(197, 168, 128, 0.15) 50%, 
        rgba(255, 255, 255, 0.03) 75%, 
        rgba(197, 168, 128, 0.35) 100%
    ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 20;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.page-container:hover .mockup-border {
    opacity: 0.9;
    background: linear-gradient(135deg, 
        rgba(229, 192, 123, 0.55) 0%, 
        rgba(255, 255, 255, 0.06) 25%, 
        rgba(197, 168, 128, 0.25) 50%, 
        rgba(255, 255, 255, 0.06) 75%, 
        rgba(229, 192, 123, 0.55) 100%
    ) border-box;
}

.scroll-content {
    flex: 1;
    overflow-y: auto;
    padding: 55px 32px 40px 32px; /* Increased top padding to clear phone's top curved border radius on desktop */
    display: flex;
    flex-direction: column;
    align-items: center;
    scrollbar-width: none; /* Firefox */
}

.scroll-content::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

/* --------------------------------------------------------------------------
   4. HEADER COMPONENT
   -------------------------------------------------------------------------- */
.header-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px; /* Increased to give ample separation between slogan and BMW showcase */
    text-align: center;
    /* Fade-in-down entrance on page load */
    opacity: 0;
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.logo-container {
    width: 100%;
    max-width: 200px;
    margin-bottom: 22px; /* Increased to separate logo monogram and text from the slogan */
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.15));
    transition: var(--transition-smooth);
}

.logo-container:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 18px rgba(197, 168, 128, 0.3));
}

.brand-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slogan {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--text-white);
    text-transform: uppercase;
    margin-top: 8px; /* Increased from 5px to separate slogan text from logo elements */
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gold-accent {
    color: var(--text-gold);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.gold-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-metallic);
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   5. SHOWCASE SECTION (BMW & NEON PILLARS)
   -------------------------------------------------------------------------- */
.car-showcase-section {
    width: 100%;
    position: relative;
    height: 220px;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Staggered entrance on page load */
    opacity: 0;
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

/* Golden vertical neon pillar showroom lights */
.showroom-pillar {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(197, 168, 128, 0.8) 40%, 
        rgba(197, 168, 128, 0.8) 60%, 
        transparent 100%
    );
    box-shadow: 
        0 0 10px rgba(197, 168, 128, 0.4),
        0 0 20px rgba(197, 168, 128, 0.2);
    z-index: 1;
    opacity: 0.75;
    transition: var(--transition-smooth);
}

.pillar-left {
    left: 12%;
}

.pillar-right {
    right: 12%;
}

/* Intense neon glow behind the car on showcase hover */
.car-showcase-section:hover .showroom-pillar {
    opacity: 1;
    box-shadow: 
        0 0 15px rgba(197, 168, 128, 0.7),
        0 0 30px rgba(197, 168, 128, 0.35);
}

.car-image-wrapper {
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.car-image {
    width: 105%; /* Slightly overflow for extra premium look */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.85));
    transition: var(--transition-smooth);
}

/* Subtle gold halo glow under the car wheels */
.car-underglow {
    position: absolute;
    bottom: 5px;
    width: 80%;
    height: 15px;
    background: radial-gradient(ellipse, rgba(197, 168, 128, 0.25) 0%, transparent 70%);
    filter: blur(4px);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Dynamic creative headlight glow overlays (Fades and flares headlights on hover + blinks on load) */
.headlight-glow {
    position: absolute;
    top: 54.5%; /* Correct vertical alignment exactly on the BMW front angel-eye rings */
    width: 24px;
    height: 10px;
    border-radius: 50% / 50%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(240, 210, 160, 0.9) 35%, 
        rgba(197, 168, 128, 0.4) 65%, 
        transparent 100%
    );
    opacity: 0;
    filter: blur(1.5px);
    mix-blend-mode: screen;
    z-index: 3;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    box-shadow: 
        0 0 15px rgba(240, 210, 160, 0.75), 
        0 0 35px rgba(197, 168, 128, 0.35);
    /* Dynamic keyless entry blink animation when the page loads */
    animation: headlightUnlock 2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s 1 forwards;
    will-change: opacity, transform;
}

.hl-left {
    left: 36.5%; /* Positioned perfectly over left headlight */
}

.hl-right {
    left: 63.5%; /* Positioned perfectly over right headlight */
}

/* Turn headlights on when hovering over showcase */
.car-showcase-section:hover .headlight-glow {
    opacity: 0.92 !important; /* Force override load blink animation */
    transform: translate(-50%, -50%) scale(1.15) !important;
    filter: blur(0.8px) drop-shadow(0 0 12px rgba(240, 210, 160, 0.85)) !important;
}

.car-showcase-section:hover .car-image-wrapper {
    transform: translateY(-4px) scale(1.02);
}

.car-showcase-section:hover .car-underglow {
    background: radial-gradient(ellipse, rgba(197, 168, 128, 0.45) 0%, transparent 70%);
    transform: scaleX(1.1);
}

/* Headlight unlock blink animation frames */
@keyframes headlightUnlock {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    15% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1.1);
        filter: blur(0.8px) drop-shadow(0 0 10px rgba(240, 210, 160, 0.85));
    }
    30% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    45% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1.1);
        filter: blur(0.8px) drop-shadow(0 0 10px rgba(240, 210, 160, 0.85));
    }
    60% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    75% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1.15);
        filter: blur(0.8px) drop-shadow(0 0 12px rgba(240, 210, 160, 0.9));
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

/* --------------------------------------------------------------------------
   6. INTERACTIVE LINKS SECTION (LINK-IN-BIO)
   -------------------------------------------------------------------------- */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 5;
    margin-bottom: 30px;
}

.link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--border-radius-card);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.01), /* Extremely crisp inside bevel */
        inset 0 1px 0px rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
    will-change: transform, box-shadow;
    /* Cascading entrance on page load */
    opacity: 0;
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Diagonal glass shine overlay effect on hover */
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 30%, 
        rgba(255, 255, 255, 0.12) 50%, 
        rgba(255, 255, 255, 0.05) 70%, 
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

.link-left {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

/* Dynamic glow wrappers for icons */
.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    color: var(--gold-primary);
    font-size: 20px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 2px rgba(197, 168, 128, 0));
}

/* Sahibinden Yellow Custom Icon CSS */
.sahibinden-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #ffd200;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(255, 210, 0, 0.2);
    transition: var(--transition-smooth);
}

.sahibinden-s {
    font-family: Arial, Helvetica, sans-serif;
    color: #121214;
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    transform: translateY(0.5px);
}

.link-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.link-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
}

.link-subtitle {
    font-size: 9.5px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.chevron-arrow {
    color: var(--gold-primary);
    font-size: 13px;
    z-index: 2;
    transition: var(--transition-smooth);
}

/* Card Hover Interactions */
.link-card:hover {
    transform: translateY(-3px) scale(1.015);
    background: linear-gradient(135deg, rgba(26, 26, 29, 0.92) 0%, rgba(12, 12, 14, 0.99) 100%);
    border-color: rgba(197, 168, 128, 0.35);
    box-shadow: 
        0 14px 32px rgba(0, 0, 0, 0.55), 
        0 0 0 1px rgba(197, 168, 128, 0.22), /* Super sharp glowing gold outer border stroke */
        0 0 20px rgba(197, 168, 128, 0.18),  /* Soft gold neon blur underglow */
        inset 0 0 8px rgba(197, 168, 128, 0.06), /* Inset gold bevel glow */
        inset 0 1px 0px rgba(255, 255, 255, 0.06);
}

.link-card:hover::before {
    left: 150%;
    transition: all 0.8s ease-in-out;
}

.link-card:hover .link-title {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.link-card:hover .icon-wrapper {
    color: var(--gold-bright);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(197, 168, 128, 0.6));
}

.link-card:hover .sahibinden-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 210, 0, 0.4);
}

.link-card:hover .chevron-arrow {
    transform: translateX(4px) scale(1.1);
    color: var(--gold-bright);
    filter: drop-shadow(0 0 6px rgba(197, 168, 128, 0.5));
}

/* Link-specific subtle background card hints */
#btn-instagram:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 15px rgba(225, 48, 108, 0.15);
}
#btn-whatsapp:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 15px rgba(37, 211, 102, 0.15);
}
#btn-sahibinden:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 15px rgba(255, 210, 0, 0.15);
}
#btn-youtube:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 15px rgba(255, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   7. FOOTER TRUST BADGES
   -------------------------------------------------------------------------- */
.footer-badges-container {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 24px;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    z-index: 5;
    /* Cascading entrance on page load */
    opacity: 0;
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.badge-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 4px;
    transition: var(--transition-smooth);
}

.badge-icon-wrapper {
    font-size: 18px;
    color: var(--gold-primary);
    margin-bottom: 8px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 4px rgba(197, 168, 128, 0));
}

.badge-title {
    font-size: 8.5px;
    font-weight: 700;
    color: var(--text-gold);
    letter-spacing: 0.12em;
    margin-bottom: 3px;
}

.badge-subtitle {
    font-size: 7.5px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.badge-divider {
    width: 1px;
    background: linear-gradient(to bottom, 
        rgba(197, 168, 128, 0) 10%, 
        rgba(197, 168, 128, 0.25) 50%, 
        rgba(197, 168, 128, 0) 90%
    );
    align-self: stretch;
}

/* Badge Interaction */
.badge-item:hover {
    transform: translateY(-3px);
}

.badge-item:hover .badge-icon-wrapper {
    color: var(--gold-bright);
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.7));
}

.badge-item:hover .badge-title {
    color: var(--text-white);
    text-shadow: 0 0 8px rgba(197, 168, 128, 0.3);
}

/* --------------------------------------------------------------------------
   8. RESPONSIVE BREAKPOINTS (FLUID EXPERIENCE)
   -------------------------------------------------------------------------- */
/* Responsive layout for medium/small mobile devices */
@media screen and (max-width: 580px) {
    body {
        align-items: flex-start;
        background-color: var(--color-bg-dark);
    }

    .page-container {
        max-width: 100%;
        height: auto;
        min-height: 100vh;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: linear-gradient(180deg, #09090b 0%, #030304 100%);
    }

    .scroll-content {
        padding: 55px 20px 40px 20px; /* Increased top padding to push the logo down below top curved frame borders */
        overflow-y: visible;
    }

    .header-section {
        margin-bottom: 34px; /* Ample separation on mobile to prevent showcase overlapping slogan */
    }

    .logo-container {
        max-width: 170px; /* Scale logo down slightly for mobile harmony */
        margin-bottom: 22px; /* Additional breathing space */
    }

    .car-showcase-section {
        height: 180px;
        margin-top: 10px; /* Ensure vertical separation from the slogan text above */
        margin-bottom: 20px;
    }

    .showroom-pillar {
        opacity: 0.55;
    }
    
    .pillar-left {
        left: 8%;
    }

    .pillar-right {
        right: 8%;
    }

    .links-container {
        gap: 12px;
    }

    .link-card {
        padding: 14px 16px;
    }

    .footer-badges-container {
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .badge-title {
        font-size: 8px;
    }
    
    .badge-subtitle {
        font-size: 7px;
    }
}

/* Ultra small devices styling adjustments */
@media screen and (max-width: 360px) {
    .scroll-content {
        padding: 45px 12px 30px 12px; /* Increased top padding to prevent top cutoff on small screens */
    }

    .logo-container {
        max-width: 140px; /* Scale logo further down on narrow screens */
        margin-bottom: 18px;
    }

    .header-section {
        margin-bottom: 26px; /* Balance spacing on narrow screens */
    }

    .link-left {
        gap: 10px;
    }

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

    .link-title {
        font-size: 11px;
    }

    .link-subtitle {
        font-size: 8.5px;
    }

    .footer-badges-container {
        padding-top: 15px;
    }

    .badge-title {
        font-size: 7.5px;
        letter-spacing: 0.05em;
    }

    .badge-subtitle {
        display: none; /* Hide badge subtitles to prevent crowding */
    }
}

/* --------------------------------------------------------------------------
   9. EXTRA DYNAMIC ANIMATIONS (FADE IN DOWN & CASCADE DELAYS)
   -------------------------------------------------------------------------- */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered cascading delay values for the link cards */
.links-container .link-card:nth-child(1) { animation-delay: 0.4s; }
.links-container .link-card:nth-child(2) { animation-delay: 0.5s; }
.links-container .link-card:nth-child(3) { animation-delay: 0.6s; }
.links-container .link-card:nth-child(4) { animation-delay: 0.7s; }
.links-container .link-card:nth-child(5) { animation-delay: 0.8s; }
.links-container .link-card:nth-child(6) { animation-delay: 0.9s; }
.links-container .link-card:nth-child(7) { animation-delay: 1.0s; }
