/* Same root and base styles as before */
:root {
    --primary: #D2FF00;
    --black: #050505;
    --card-bg: #0a0a0a;
    --border: rgba(255, 255, 255, 0.08);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

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

::selection {
    background: var(--primary);
    color: var(--black);
}

body {
    background-color: var(--black);
    color: white;
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2cpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    opacity: 0.04;
    pointer-events: none;
    z-index: 9000;
}

/* Preloader, Cursor, Nav styles remain same... */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s var(--easing);
}

.preloader.hide {
    transform: translateY(-100%);
}

.loader-content {
    width: 250px;
    text-align: center;
}

.loader-title {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: white;
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.1s linear;
}

.loader-percent {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    font-family: var(--font-display);
}

/*
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 100001;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-out;
} */

/* body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background: rgba(210, 255, 0, 0.1);
    border-color: var(--primary);
} */

.glass-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 600px;
    padding: 8px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.scrolled .glass-nav {
    top: 16px;
    background: rgba(5, 5, 5, 0.8);
    transform: translateX(-50%) scale(0.98);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    padding: 0 12px;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 100px;
    position: relative;
}

.nav-active-pill {
    position: absolute;
    left: 4px;
    top: 4px;
    height: calc(100% - 8px);
    width: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
}

.nav-links:hover .nav-active-pill {
    opacity: 1;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #888;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 100px;
    transition: color 0.3s;
    z-index: 2;
}

.nav-link:hover {
    color: white;
}

.join-btn {
    background: white;
    color: black;
    padding: 12px 28px;
    border-radius: 100px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s;
}

.join-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Hero */
/* --- 4. HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    /* Fix for mobile browser address bars */
    height: 100dvh;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    /* 'cover' ensures full screen fill (aesthetic).
       Use 'contain' if you strictly need to see 100% of video edges (adds black bars). */
    object-fit: cover;
    object-position: center center;
    opacity: 1.0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    /* Stronger gradient at bottom to make text readable */
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 0%, var(--black) 100%); */
}

.hero-content-lower {
    position: absolute;
    /* Moved lower: was 80px, now 40px.
       Use 'bottom: 10%' for relative vertical positioning. */
    bottom: 120px;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 0 5%;
}

.hero-text-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    /* Responsive font sizing */
    font-size: clamp(48px, 8vw, 140px);
    line-height: 0.85;
    /* text-transform: uppercase; */
    font-weight: 700;
    margin-bottom: 30px;
    /* Reduced margin */
    color: white;
}

.hero-title .line {
    display: block;
}

.hero-title .indent {
    margin-left: 12vw;
    color: rgba(255, 255, 255, 0.7);
    -webkit-text-stroke: 1px white;
}

.hero-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-details p {
    font-size: clamp(14px, 1.5vw, 18px);
    /* Responsive text */
    max-width: 450px;
    color: #ccc;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- RESPONSIVE HERO --- */
@media (max-width: 768px) {
    .hero-video {
        object-fit: cover !important;
    }

    .hero-content-lower {
        position: absolute;
        bottom: 20px;
        /* Lift slightly on mobile to clear bottom UI/Nav if any */
        padding: 0 20px;
    }

    .hero-title {
        font-size: 12vw;
        /* Larger relative text on mobile */
        margin-bottom: 20px;
    }

    .hero-title .indent {
        margin-left: 0;
        /* Align left on mobile for space */
    }

    .hero-details {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 20px;
    }

    .hero-details p {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .hero-btns {
        width: 100%;
    }

    .primary-btn {
        width: 100%;
        justify-content: center;
    }
}

.primary-btn {
    background: var(--primary);
    color: black;
    padding: 18px 36px;
    border-radius: 100px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(210, 255, 0, 0.4);
}

.text-link {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

/* Marquee */
.marquee-section {
    padding: 40px 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: #555;
    letter-spacing: 1px;
}

.marquee-content span.dot {
    color: var(--primary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features */
.features {
    padding: 150px 0;
    background: var(--black);
    position: relative;
    z-index: 5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
}

.badge {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    color: white;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 450px;
    transition: transform 0.4s var(--easing), border-color 0.3s;
}

.bento-card.large {
    grid-column: span 2;
    min-height: 550px;
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(115, 255, 45, 0.27);
}

.card-bg-media {
    position: absolute;
    inset: 0;
    opacity: 0.9;
    z-index: 0;
    transition: opacity 0.5s;
}

.bento-card:hover .card-bg-media {
    opacity: 0.99;
}

.card-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
}

.card-content p {
    font-size: 18px;
    color: #bbb;
    max-width: 90%;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-meta {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--primary);
    border: 1px solid rgba(210, 255, 0, 0.3);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(210, 255, 0, 0.05);
    margin-bottom: 20px;
}

/* .card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    pointer-events: none;
    background: radial-gradient(800px circle at var(--mx, 50%) var(--my, 50%), rgba(210, 255, 0, 0.1), transparent 40%);
    z-index: 1;
    border: 1px solid transparent;
} */
/* --- 7. FOUNDERS (REDUCED SIZE) --- */

/* 1. Reduce Section Padding */
#founders {
    padding: 80px 0;
    /* Reduced from 150px */
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.founder-card {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    /* cursor: none; */
    position: relative;

    /* 2. Reduce Card Height */
    height: 400px;
    /* Reduced from 550px */

    transition: all 0.5s var(--easing);
}

.founder-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.founder-img-wrap {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #080808;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.7s ease;
}

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

.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black 0%, transparent 60%);
}

.founder-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    /* 3. Tighter Info Padding */
    padding: 20px;
    /* Reduced from 30px */

    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.founder-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    /* Slightly smaller title */
    margin-bottom: 4px;
}

.founder-header .role {
    color: var(--primary);
    font-family: monospace;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.founder-hidden-details {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

/* Adjust margin for hidden details */
.founder-card:hover .founder-hidden-details {
    height: auto;
    opacity: 1;
    margin-top: 10px;
    /* Reduced margin */
    padding-bottom: 5px;
}

.founder-hidden-details p {
    font-size: 14px;
    /* Smaller text */
    margin-bottom: 10px;
    line-height: 1.3;
}

.founder-stats {
    display: flex;
    gap: 40px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.founder-stats span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.founder-stats strong {
    font-size: 18px;
    color: white;
    font-family: var(--font-display);
}

.expand-btn {
    position: absolute;
    bottom: 20px;
    /* Adjusted to match new padding */
    right: 20px;
    width: 36px;
    /* Slightly smaller button */
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    z-index: 3;
}

.founder-card:hover .expand-btn {
    transform: rotate(45deg);
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

.expand-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    z-index: 3;
}

.founder-card:hover .expand-btn {
    transform: rotate(45deg);
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

/* --- 8. FOOTER FIXED --- */
.future-footer {
    position: relative;
    background: #050505;
    padding: 100px 0 50px;
    overflow: hidden;
    border-top: 1px solid #222;
    z-index: 1;
}

#galaxy-footer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    z-index: -1;

    background-image: url('./asset/footer.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* MASK: Fades on Top, Bottom, Left, and Right */
    -webkit-mask-image:
        linear-gradient(to bottom, transparent, black 20%, black 80%, transparent),
        linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);

    mask-image:
        linear-gradient(to bottom, transparent, black 20%, black 80%, transparent),
        linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);

    /* Combines the vertical and horizontal masks */
    -webkit-mask-composite: source-in;
    mask-composite: intersect;

    opacity: 0.6;
}

/* Responsive adjustment to ensure sides don't fade too aggressively on mobile */
@media (max-width: 768px) {
    #galaxy-footer {
        -webkit-mask-image: radial-gradient(ellipse 120% 80% at center,
                black 40%,
                transparent 100%);
        mask-image: radial-gradient(ellipse 120% 80% at center,
                black 40%,
                transparent 100%);
    }
}

/* RESPONSIVE: Ensure it doesn't touch screen edges on mobile if container has padding */
@media (max-width: 1460px) {

    /* 1400px + 30px padding on each side */
    #galaxy-footer {
        width: calc(100% - 60px);
        /* Match container padding */
    }
}

/* Optional: Add an extra smooth gradient overlay on top just for the very top edge */
.future-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* Height of the top fade */
    background: linear-gradient(to bottom, #050505 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

/* Optional: Ensure text stays legible above the image */
.future-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.6);
    /* Dark overlay tint */
    z-index: -1;
}

/* Ensure text is above the galaxy */
.parallax-text-wrap,
.container,
.footer-bottom {
    position: relative;
    z-index: 2;
}

.parallax-text-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(-5deg);
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
}

.parallax-text {
    font-size: 15vw;
    font-family: var(--font-display);
    white-space: nowrap;
    font-weight: 900;
    color: white;
}

.footer-content-relative {
    position: relative;
    z-index: 2;
    pointer-events: none;
    /* Text shouldn't block canvas events */
}

.footer-content-relative * {
    pointer-events: auto;
}

/* Re-enable for links */
.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hover-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 24px;
    margin-bottom: 12px;
    transition: color 0.3s, transform 0.3s;
    font-family: var(--font-display);
}

.hover-link:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.magnetic-orb {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #333, #000);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 18px;
    transition: transform 0.4s, background 0.3s;
    /* cursor: none; */
}

.magnetic-orb:hover {
    background: var(--primary);
    color: black;
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(210, 255, 0, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #222;
    padding-top: 30px;
    color: #666;
    font-size: 14px;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.socials a:hover {
    color: white;
}

/* Modal & Mobile */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-glass {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 32px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s var(--easing);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-backdrop.active .modal-glass {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    /* cursor: pointer; */
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    color: white;
    outline: none;
}

.input-group input:focus {
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    /* cursor: pointer; */
}

.submit-btn:hover {
    background: var(--primary);
}

.join-btn-mobile {
    display: none;
}

@media(max-width: 768px) {
    .glass-nav {
        min-width: unset;
        width: 92%;
    }

    .nav-links {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.large {
        grid-column: span 1;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .magnetic-orb {
        display: none;
    }

    .hero-title {
        font-size: 14vw;
    }

    .join-btn-mobile {
        display: block;
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 64px;
        height: 64px;
        background: var(--primary);
        color: black;
        border-radius: 50%;
        text-align: center;
        line-height: 64px;
        font-size: 28px;
        font-weight: bold;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(210, 255, 0, 0.4);
    }

    @media (max-width: 768px) {
        #galaxy-footer {
            width: 100%;

            -webkit-mask-image:
                /* Top Gradient: Starts fading in at 0% and reaches full visibility at 40% (Very smooth/long fade) */
                linear-gradient(to bottom, transparent 0%, black 40%, black 90%, transparent 100%),

                /* Side Gradients: Keep sharp (10%) */
                linear-gradient(to right, transparent 0%, black 0%, black 90%, transparent 100%);

            mask-image:
                linear-gradient(to bottom, transparent 0%, black 40%, black 90%, transparent 100%),
                linear-gradient(to right, transparent 0%, black 0%, black 90%, transparent 100%);

            -webkit-mask-composite: source-in;
            mask-composite: intersect;
        }
    }
}

/* --- SOCIAL COLUMN ALIGNMENT --- */
/* --- FIXED SOCIAL COLUMN --- */
.social-col {
    display: flex !important;
    flex-direction: column !important;
    /* Forces vertical stacking */
    align-items: flex-end !important;
    /* Forces right alignment */
    text-align: right;
    margin-top: 0;
}

/* Target the links specifically to ensure they behave like the Explore links */
.social-col .hover-link {
    display: block;
    /* Ensures they take up their own line */
    margin-bottom: 12px;
    /* Matches spacing of Explore items */
    font-size: 24px;
    /* Matches Explore font size */
    color: white;
    /* Ensures white text */
    text-decoration: none;
    font-family: var(--font-display);
    transition: color 0.3s, transform 0.3s;
}

.social-col .hover-link:hover {
    color: var(--primary);
    transform: translateX(-10px);
    /* Slide LEFT on hover since it's right-aligned */
}

/* Responsive Mobile: Switch back to left */
@media (max-width: 768px) {
    .social-col {
        align-items: flex-start !important;
        text-align: left;
        margin-top: 30px;
    }

    .social-col .hover-link:hover {
        transform: translateX(10px);
        /* Standard right slide on mobile */
    }
}

/* Success View Styling */
#modal-success-view {
    text-align: center;
    padding: 1rem 0;
    animation: fadeIn 0.5s ease;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Checkmark */
.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--primary);
    /* Uses your #D2FF00 */
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--primary);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--primary);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Keyframes for Animation */
@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px rgba(210, 255, 0, 0.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
