:root {
    --green: #00E640;
    /* Neon green matching the image */
    --bg-dark: #070707;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

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

/* Hide default browser scrollbars for a cleaner UI */
::-webkit-scrollbar {
    display: none;
}

html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    background-image: none;
    position: relative;
}

/* Fixed city wallpaper for all non-hero sections — no background-attachment:fixed to prevent mobile shake */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('assets/ghost_city_pc.png');
    background-size: cover;
    background-position: center top;
    background-color: rgba(0, 0, 0, 0.60);
    background-blend-mode: darken;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}





.text-green {
    color: var(--green) !important;
}

.hero-container {
    width: 100vw;
    min-height: 100svh;
    height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background Setup */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cyber artwork wallpaper */
    background-image: url('assets/artwork_hacker.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient to make text readable, darker on the left */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 4rem 1rem 1rem;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo {
    height: 160px;
    object-fit: contain;
    margin-top: -25px;
}

.logo-text {
    margin-left: -30px;
    margin-top: -25px;
}

.logo-text h2 {
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Socials */
.socials {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.social-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-main);
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons svg {
    width: 100%;
    height: 100%;
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
    padding: 0 4rem 1.5rem 4rem;
    /* Reduced bottom padding from 4rem to 1.5rem to push content down ~40px */
    z-index: 10;
}

.content-left {
    max-width: 900px;
    margin-bottom: 2rem;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    white-space: normal;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Features Row */
.features-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

/* Vertical separator line between features */
.feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Icon circle — no box, just the raw SVG */
.icon-circle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg {
    width: 22px;
    height: 22px;
    color: var(--green);
    opacity: 0.9;
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    line-height: 1.3;
}

.feature-text strong {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-text span {
    color: var(--text-muted);
}

/* Live indicator dot styling */
.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff3333;
    /* Vibrant red for live indicator */
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
    animation: live-dot-pulse 1.6s infinite;
}

@keyframes live-dot-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(255, 51, 51, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
    }
}

/* CTA Container */
.hero-cta-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Join Link */
.join-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1px;
    display: inline-block;
    transition: transform 0.2s ease;
    color: var(--green);
}

.join-link:hover {
    transform: translateX(5px);
}

/* Explore ShadowFox — Premium Animated Button */
.explore-link {
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    color: #fff;
    position: relative;
    overflow: hidden;
    /* Gradient border via background-clip trick */
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.08) 0%, rgba(0, 188, 255, 0.06) 100%);
    border: 1px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 0 0 1px rgba(0, 255, 102, 0.35),
        0 0 18px rgba(0, 255, 102, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

/* Shimmer sweep on idle */
.explore-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 255, 102, 0.18),
            rgba(255, 255, 255, 0.08),
            transparent);
    transform: skewX(-15deg);
    animation: sfShimmer 3.5s infinite ease-in-out;
    pointer-events: none;
}

@keyframes sfShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        left: 160%;
        opacity: 1;
    }

    51% {
        opacity: 0;
    }

    100% {
        left: 160%;
        opacity: 0;
    }
}

/* Green corner accent top-left */
.explore-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #00ff66, transparent);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.explore-link:hover::after {
    width: 60%;
}

.explore-link:hover {
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.13) 0%, rgba(0, 188, 255, 0.09) 100%);
    box-shadow:
        0 0 0 1px rgba(0, 255, 102, 0.65),
        0 0 30px rgba(0, 255, 102, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
    letter-spacing: 2.5px;
}

/* Trust Line */
.hero-trust-line {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
    max-width: 450px;
}

/* Sub-brands strip — desktop base */
.m-subbrands {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 800px;
    margin: 2rem 0;
    position: relative;
    z-index: 10;
}

.m-subbrands-label {
    display: none;
}

.m-subbrands-row {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: auto;
    background: transparent;
    border: none;
    padding: 0;
}

.m-subbrand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.m-subbrand:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.m-subbrand-sep {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.m-subbrand-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(1.2);
}

.ht-icon {
    width: auto !important;
    transform: translateY(-5px);
}

.whate-icon {
    width: 66px !important;
    height: 38px !important;
}

.sf-icon {
    width: 52px !important;
    height: 52px !important;
}

.m-subbrand span {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

/* Event Carousel Section */
.event-carousel-section {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: auto;
    padding: 0;
    background: transparent;
    border: none;
    z-index: 50;
    overflow: visible;
}

.event-carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.event-card {
    position: relative;
    width: 450px;
    height: 300px;
    background: rgba(6, 8, 12, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    animation: ghostCardFloat 6s ease-in-out infinite, ghostCardGlow 5s ease-in-out infinite;
}

@keyframes ghostCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes ghostCardGlow {

    0%,
    100% {
        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.04) inset;
        border-color: rgba(255, 255, 255, 0.07);
    }

    50% {
        box-shadow:
            0 30px 70px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(0, 255, 102, 0.08),
            0 0 0 1px rgba(0, 255, 102, 0.06) inset;
        border-color: rgba(0, 255, 102, 0.2);
    }
}

.event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.012) 50%, transparent 50%);
    background-size: 100% 3px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.25;
}

.event-card.logo-state {
    height: 180px;
    background: transparent !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    animation: none !important;
}

.event-card.logo-state::after {
    display: none !important;
}

.card-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.card-state.active {
    opacity: 1;
    pointer-events: auto;
}

.state-logo {
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.state-logo.active .logo-wrapper {
    transform: scale(1);
}

.state-logo:not(.active) .logo-wrapper {
    transform: scale(0.4);
}

.anim-logo {
    width: 115px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(57, 255, 20, 0.5));
    animation: logo-pulsate 2.5s infinite ease-in-out;
}

@keyframes logo-pulsate {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 12px rgba(57, 255, 20, 0.4));
    }

    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 22px rgba(57, 255, 20, 0.75));
    }
}

.event-info {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.card-state.active .event-info {
    opacity: 1;
    transform: translateX(0);
}

.event-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.event-image {
    width: 170px;
    height: 100%;
    background: #000;
    border-left: 1px solid rgba(0, 230, 64, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.card-state.active .event-image {
    opacity: 1;
    transform: translateX(0);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.95;
    transition: transform 0.5s ease;
}

.event-image img.cover-image {
    object-fit: cover;
}

.event-card:hover .event-image img {
    transform: scale(1.04);
}



/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 2.8rem;
    }

    .features-row {
        flex-wrap: wrap;
    }

    .feature:not(:last-child)::after {
        display: none;
    }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.overview-section {
    background-color: transparent;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.overview-sub {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.overview-mobile-img {
    display: none;
}

.overview-artwork {
    position: relative;
    max-width: 520px;
    width: 100%;
    aspect-ratio: 1.5;
    margin: 0 auto;
    border-radius: 12px;
    border: 1.5px solid var(--green);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 230, 64, 0.15), inset 0 0 20px rgba(0, 230, 64, 0.05);
    background: #000;
}

.overview-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% 0%;
    display: block;
    filter: brightness(0.9);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

.overview-artwork:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.hud-line {
    position: absolute;
    top: 55%;
    /* Directly aligned over the glitched hand */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
    box-shadow: 0 0 10px var(--green), 0 0 20px var(--green);
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.hud-label {
    position: absolute;
    left: 15px;
    transform: translateY(-50%);
    background: #000;
    border: 1.5px solid var(--green);
    color: var(--green);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    letter-spacing: 1.5px;
    border-radius: 3px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(0, 230, 64, 0.4);
}

.overview-artwork:hover .hud-line {
    transform: scaleY(1.5);
}

/* Projects */
/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--green);
    box-shadow: 0 12px 35px rgba(0, 230, 64, 0.15), inset 0 0 15px rgba(0, 230, 64, 0.05);
}

.project-media {
    height: 240px;
    background: #050505;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-badge-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 230, 64, 0.25);
}

.project-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.project-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(0, 230, 64, 0.04);
    border: 1px solid rgba(0, 230, 64, 0.2);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.github-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: transform 0.2s ease, color 0.2s ease;
    align-self: flex-start;
}

.github-link:hover {
    transform: translateX(5px);
    color: #fff !important;
}

/* Mobile Scroll Indicators */
.project-indicators {
    display: none;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.project-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.project-indicators .dot.active {
    background-color: var(--green);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--green);
}

/* Mobile Responsiveness for Projects Section */
@media (max-width: 768px) {
    .projects-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0.5rem 0.2rem 1rem 0.2rem;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
        -webkit-overflow-scrolling: touch;
    }

    .projects-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .project-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        max-width: 360px;
    }

    .project-media {
        height: 200px;
    }

    .project-indicators {
        display: flex;
    }
}

/* Announcements */
.announcement-banner {
    background: rgba(0, 230, 64, 0.05);
    border: 1px solid var(--green);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--green);
    border-radius: 50%;
    margin-right: 1.5rem;
    box-shadow: 0 0 0 0 rgba(0, 230, 64, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 64, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 230, 64, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 64, 0);
    }
}

.announcement-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.announcement-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Featured Session Layout */
/* ===== HACKTALKS ACCORDION ===== */
/* Featured Session Layout - Overhauled HackTalks Accordion (Shadow Fox Model) */
.ht-accordion-container {
    margin-top: 2rem;
    width: 100%;
}

.ht-accordion {
    display: flex;
    width: 100%;
    height: 520px;
    gap: 14px;
}

.ht-panel {
    flex: 1;
    height: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #030303;
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Background image backdrop for panel when collapsed/active */
.ht-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.15;
    filter: blur(10px);
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Dark overlay */
.ht-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Active panel style overrides */
.ht-panel.active {
    flex: 8.5;
}

.ht-panel-1 {
    --panel-glow: rgba(0, 255, 102, 0.35);
    --panel-border: rgba(0, 255, 102, 0.45);
}

.ht-panel-2 {
    --panel-glow: rgba(176, 38, 255, 0.35);
    --panel-border: rgba(176, 38, 255, 0.45);
}

.ht-panel-3 {
    --panel-glow: rgba(255, 255, 255, 0.15);
    --panel-border: rgba(255, 255, 255, 0.25);
}

.ht-panel-4 {
    --panel-glow: rgba(0, 188, 255, 0.35);
    --panel-border: rgba(0, 188, 255, 0.45);
}

.ht-panel.active.ht-panel-1 {
    border-color: var(--panel-border);
    box-shadow: 0 0 35px var(--panel-glow);
}

.ht-panel.active.ht-panel-2 {
    border-color: var(--panel-border);
    box-shadow: 0 0 35px var(--panel-glow);
}

.ht-panel.active.ht-panel-3 {
    border-color: var(--panel-border);
    box-shadow: 0 0 35px var(--panel-glow);
}

.ht-panel.active.ht-panel-4 {
    border-color: var(--panel-border);
    box-shadow: 0 0 35px var(--panel-glow);
}

/* Vertical Side Label for Collapsed Panels */
.ht-panel-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: rgba(255, 255, 255, 0.45);
    font-weight: 900;
}

.ht-label-tag {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: rgba(0, 0, 0, 0.7);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ht-label-title {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.ht-panel-1 .ht-label-title {
    color: #00ff66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.25);
}

.ht-panel-2 .ht-label-title {
    color: #b026ff;
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.25);
}

.ht-panel-3 .ht-label-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.ht-panel-4 .ht-label-title {
    color: #00bcff;
    text-shadow: 0 0 10px rgba(0, 188, 255, 0.25);
}

/* Hide vertical labels when panel is active */
.ht-panel.active .ht-panel-label {
    opacity: 0;
    transform: translate(-50%, -100%) rotate(-90deg) scale(0.9);
    filter: blur(5px);
}

/* Panel Content Layout: split side-by-side */
.ht-panel-content {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ht-panel.active .ht-panel-content {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Left Pane: Poster contain */
.ht-panel-poster {
    flex: 1.1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.ht-panel-poster img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

/* Right Pane: Info & Actions */
.ht-panel-details {
    flex: 0.9;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    overflow-y: auto;
}

.ht-session-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.ht-session-badge {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-mono, monospace);
}

.badge-upcoming {
    background: rgba(0, 255, 102, 0.1);
    color: #00ff66;
    border: 1px solid rgba(0, 255, 102, 0.25);
}

.badge-completed {
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-ai {
    background: rgba(176, 38, 255, 0.15);
    color: #b026ff;
    border: 1px solid rgba(176, 38, 255, 0.25);
}

.ht-session-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
}

.ht-session-title {
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.ht-panel-1 .ht-session-title {
    color: #00ff66;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
}

.ht-panel-2 .ht-session-title {
    color: #b026ff;
    text-shadow: 0 0 20px rgba(176, 38, 255, 0.15);
}

.ht-panel-3 .ht-session-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.ht-panel-4 .ht-session-title {
    color: #00bcff;
    text-shadow: 0 0 20px rgba(0, 188, 255, 0.15);
}

.ht-session-speaker {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.ht-session-speaker .highlight {
    font-weight: 700;
}

.ht-panel-1 .ht-session-speaker .highlight {
    color: #00ff66;
}

.ht-panel-2 .ht-session-speaker .highlight {
    color: #b026ff;
}

.ht-panel-3 .ht-session-speaker .highlight {
    color: #ffffff;
}

.ht-panel-4 .ht-session-speaker .highlight {
    color: #00bcff;
}

.ht-session-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    max-width: 95%;
}

.ht-panel-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ht-countdown-block {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ht-meta-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.ht-action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-linkedin {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #fff !important;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(10, 102, 194, 0.4);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #000 !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 6px;
    border: 1px solid var(--green);
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 42px;
    box-sizing: border-box;
}

.btn-register:hover {
    background: transparent;
    color: var(--green) !important;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

.btn-register.disabled {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #888 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile Overrides (Scroll snap horizontal slider!) */
@media (max-width: 768px) {
    .ht-accordion-container {
        padding: 0 10px;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }

    .ht-accordion {
        display: flex;
        flex-direction: row;
        height: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 10px 0 25px 0;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        box-sizing: border-box;
    }

    /* Hide scrollbar but preserve swipe functionality */
    .ht-accordion::-webkit-scrollbar {
        display: none;
    }

    .ht-accordion {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .ht-panel {
        flex: 0 0 88% !important;
        height: auto;
        border-radius: 16px;
        scroll-snap-align: center;
        border: 1px solid var(--panel-border) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important;
        position: relative;
        overflow: hidden;
        background: #020202;
        transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
    }

    .ht-panel.active {
        flex: 0 0 88% !important;
        box-shadow: 0 4px 25px var(--panel-glow) !important;
    }

    /* Force all panel contents to be visible but display block with natural height flow */
    .ht-panel-content {
        position: relative;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        display: block;
        height: auto;
        width: 100%;
        box-sizing: border-box;
        transition: none !important;
    }

    .ht-panel-label {
        display: none !important;
    }

    /* Top: Poster container (sizing naturally with image ratio, no cropping or height bounds) */
    .ht-panel-poster {
        flex: none;
        height: auto;
        width: 100%;
        border-right: none;
        border-bottom: none;
        background: transparent;
        display: block;
        overflow: hidden;
        position: relative;
    }

    .ht-panel-poster img {
        padding: 0;
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    /* Hint to tap for details overlaid on poster bottom right */
    .ht-panel-poster::after {
        content: 'TAP TO INFO';
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.85);
        color: rgba(255, 255, 255, 0.9);
        font-family: var(--font-mono, monospace);
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 5px 10px;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        pointer-events: none;
        z-index: 5;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease;
    }

    .ht-panel.show-details .ht-panel-poster::after {
        opacity: 0;
    }

    /* Overlay: Details container covering the poster */
    .ht-panel-details {
        position: absolute;
        inset: 0;
        z-index: 10;
        padding: 16px;
        background: rgba(4, 4, 6, 0.98) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
        /* Scroll internally if text overflows container */
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .ht-panel.show-details .ht-panel-details {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ht-panel-details::after {
        content: 'TAP OUTSIDE BUTTONS TO CLOSE';
        display: block;
        text-align: center;
        font-family: var(--font-mono, monospace);
        font-size: 0.52rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0.5px;
        margin-top: 15px;
        padding-bottom: 5px;
        pointer-events: none;
    }

    .ht-session-header {
        margin-bottom: 6px;
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .ht-session-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
        font-weight: 800;
    }

    .ht-session-date {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .ht-session-title {
        font-size: 1.05rem;
        margin-bottom: 4px;
        font-weight: 900;
        letter-spacing: 0.5px;
    }

    .ht-session-speaker {
        font-size: 0.7rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .ht-session-desc {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 12px;
        max-width: 100%;
        display: block;
        overflow: visible;
        opacity: 0.75;
    }

    .ht-panel-meta {
        gap: 10px;
        margin-top: auto;
        display: flex;
        flex-direction: column;
    }

    .ht-action-buttons {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .btn-linkedin {
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .btn-register {
        flex: 1;
        padding: 0 12px;
        font-size: 0.7rem;
        justify-content: center;
        height: 38px;
        display: flex;
        align-items: center;
        font-weight: 700;
        border-radius: 6px;
        box-sizing: border-box;
    }
}

.text-white {
    color: #fff;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--green);
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--green);
    color: #000;
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Hide mobile image on desktop */
.mobile-only-hero-img {
    display: none;
}

/* --- Master Mobile Responsiveness --- */
@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    /* Title + subtitle stay at top */
    .overview-text {
        order: 1;
        display: flex;
        flex-direction: column;
    }

    /* Hide the original desktop artwork on mobile */
    .overview-artwork {
        display: none !important;
    }

    /* Show the mobile inline image in the middle of the text */
    .overview-mobile-img {
        display: block !important;
        width: 100%;
        border-radius: 12px;
        border: 1.5px solid var(--green);
        margin: 1.5rem 0;
        box-shadow: 0 5px 20px rgba(0, 230, 64, 0.15);
    }
}

@media (max-width: 991px) {

    body,
    html {
        overflow-x: hidden;
    }

    /* ===== MOBILE HERO — IMMERSIVE FULL-SCREEN ===== */
    .hero-container {
        height: 100svh !important;
        min-height: 100svh !important;
        max-height: 100svh !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        position: relative !important;
        padding-bottom: 0 !important;
    }

    /* Hero artwork — clipped inside hero-container, stays static */
    .background-overlay {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: -1 !important;
        background-image: url('assets/artwork_hacker.png') !important;
        background-size: cover !important;
        background-position: center 10% !important;
        background-attachment: scroll !important;
        animation: none !important;
        transform: translateZ(0) !important;
        will-change: transform !important;
    }

    /* Dark shade at top for logo/name visibility, fades into the art */
    .background-overlay::after {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.92) 0%,
                rgba(0, 0, 0, 0.75) 15%,
                rgba(0, 0, 0, 0.2) 40%,
                rgba(0, 0, 0, 0.65) 70%,
                rgba(4, 4, 6, 0.97) 100%) !important;
    }

    .mobile-only-hero-img {
        display: none !important;
    }

    .m-hero-overlay {
        display: none !important;
    }

    /* ---- Header ---- */
    .header {
        padding: 0 1.1rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
    }

    .logo-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
        margin: 0 !important;
    }

    .logo {
        height: 80px !important;
        width: auto !important;
        margin: 0 !important;
    }

    .logo-text {
        margin: 0 0 0 -12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .logo-text h2 {
        font-size: 1.15rem !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        line-height: 1.1 !important;
    }

    .logo-text p {
        font-size: 0.55rem !important;
        display: block !important;
        letter-spacing: 1.5px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        margin: 0 !important;
    }

    .socials {
        display: none !important;
    }

    /* ======================================
       MOBILE HERO — DESKTOP-STYLE LAYOUT
       Badge → Headline → Features → Buttons
       ====================================== */
    .main-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-end !important;
        padding: 0 1.2rem 4rem 1.2rem !important;
        gap: 0 !important;
        text-align: left !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    .content-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    /* ---- Badge ---- */
    .hero-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        font-size: 0.58rem !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.75) !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-badge-dot {
        width: 6px !important;
        height: 6px !important;
        border-radius: 50% !important;
        background: #00ff66 !important;
        box-shadow: 0 0 8px #00ff66 !important;
        display: inline-block !important;
        flex-shrink: 0 !important;
        animation: pulseDot 1.5s infinite !important;
    }

    @keyframes pulseDot {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.5;
            transform: scale(0.75);
        }
    }

    /* ---- Headline — fits in 2 lines on mobile ---- */
    .main-heading {
        display: block !important;
        position: static !important;
        transform: none !important;
        font-size: clamp(1.2rem, 6.2vw, 1.75rem) !important;
        font-weight: 900 !important;
        color: #fff !important;
        text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8) !important;
        letter-spacing: -0.5px !important;
        line-height: 1.1 !important;
        text-align: left !important;
        width: 100% !important;
        margin: 0 0 0.7rem 0 !important;
        padding: 0 !important;
    }

    .description {
        display: none !important;
    }

    /* ---- Features — ALL 4 in one tight row ---- */
    .features-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: 100% !important;
        margin: 0 0 1rem 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        overflow: visible !important;
        position: static !important;
        transform: none !important;
    }

    /* Kill the old panel ::before headline injection */
    .features-row::before {
        display: none !important;
        content: none !important;
    }

    /* Each feature — compact: icon + text, no padding */
    .feature {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 1 !important;
        min-width: 0 !important;
        gap: 0.28rem !important;
        padding: 0 0.35rem 0 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        position: relative !important;
        text-align: left !important;
        overflow: hidden !important;
    }

    /* Thin vertical separator — between features */
    .feature:not(:last-child)::after {
        content: '' !important;
        position: absolute !important;
        right: 0 !important;
        top: 10% !important;
        height: 80% !important;
        width: 1px !important;
        background: rgba(255, 255, 255, 0.15) !important;
        transform: none !important;
        box-shadow: none !important;
        display: block !important;
    }

    /* Icon — no box, raw SVG */
    .icon-circle {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .icon-circle svg {
        width: 13px !important;
        height: 13px !important;
        color: #00ff66 !important;
        opacity: 0.9 !important;
    }

    .feature-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        text-align: left !important;
    }

    .feature-text strong {
        font-size: 0.54rem !important;
        font-weight: 800 !important;
        color: #fff !important;
        letter-spacing: 0.3px !important;
        text-transform: uppercase !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    .feature-text span {
        font-size: 0.42rem !important;
        color: rgba(255, 255, 255, 0.42) !important;
        font-weight: 400 !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* ---- CTA BUTTONS — side by side like desktop ---- */
    .hero-cta-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        width: 100% !important;
        margin-top: -1rem !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.8rem !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    /* Primary CTA — green text link like desktop */
    .join-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
        flex: 0 0 auto !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        color: #00ff66 !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        box-shadow: none !important;
        transition: transform 0.2s ease !important;
        white-space: nowrap !important;
    }

    .join-link:hover,
    .join-link:active {
        transform: translateX(4px) !important;
        box-shadow: none !important;
        background: none !important;
    }

    /* Secondary CTA — Premium EXPLORE SHADOWFOX button */
    .explore-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        padding: 0.75rem 1rem !important;
        background: linear-gradient(135deg, rgba(0, 255, 102, 0.08) 0%, rgba(0, 188, 255, 0.05) 100%) !important;
        border: 1px solid transparent !important;
        border-radius: 6px !important;
        color: #fff !important;
        font-size: 0.65rem !important;
        font-weight: 800 !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        box-shadow:
            0 0 0 1px rgba(0, 255, 102, 0.35),
            0 0 14px rgba(0, 255, 102, 0.1) !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
    }

    /* Suppress desktop shimmer & corner accent on mobile */
    .explore-link::before,
    .explore-link::after {
        display: none !important;
        animation: none !important;
    }

    .explore-link:hover,
    .explore-link:active {
        box-shadow:
            0 0 0 1px rgba(0, 255, 102, 0.65),
            0 0 22px rgba(0, 255, 102, 0.25) !important;
        background: linear-gradient(135deg, rgba(0, 255, 102, 0.14) 0%, rgba(0, 188, 255, 0.08) 100%) !important;
    }

    /* Trust line — HIDDEN on mobile */
    .hero-trust-line {
        display: none !important;
    }

    /* ---- Mobile explore-link: hidden, replaced by sub-brands ---- */
    .explore-link {
        display: none !important;
    }

    /* ======================================
       MOBILE SUB-BRANDS STRIP
       HGEMA | HACK TALKS | SHADOW FOX
       ====================================== */
    .m-subbrands {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        width: 100% !important;
        margin-top: 0.6rem !important;
    }

    .m-subbrands-label {
        font-size: 0.45rem !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.35) !important;
    }

    .m-subbrands-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 3rem !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .m-subbrand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        gap: .35rem !important;
        padding: 0.2rem 0 !important;
        text-decoration: none !important;
        position: relative !important;
        transition: all 0.3s ease !important;
        opacity: 0.85 !important;
    }

    .m-subbrand:hover,
    .m-subbrand:active {
        background: transparent !important;
        opacity: 1 !important;
        transform: translateY(-2px) !important;
    }

    /* Thin separator between brands */
    .m-subbrand-sep {
        display: none !important;
    }

    .m-subbrand-img {
        width: 30px !important;
        height: 30px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
        filter: brightness(1.3) drop-shadow(0 0 5px rgba(0, 255, 102, 0.4)) !important;
    }

    .ht-icon {
        width: auto !important;
        height: 30px !important;
    }

    .whate-icon {
        width: auto !important;
        height: 24px !important;
    }

    .m-subbrand span {
        font-size: 0.46rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.82) !important;
        white-space: nowrap !important;
    }


    /* Hide event carousel on mobile */
    .event-carousel-section {
        display: none !important;
    }

    /* ---- Section-level mobile tweaks (other sections) ---- */
    .section {
        padding: 50px 0;
    }

    .container {
        width: 95%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .overview-features,
    .projects-grid,
    .sessions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .announcement-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 1.5rem;
    }

    .pulse-dot {
        margin-bottom: 1rem;
    }
}



/* Countdown Timer Styles */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0.8rem 0;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(0, 230, 64, 0.05);
    border: 1px dashed rgba(0, 230, 64, 0.3);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    width: fit-content;
}

.countdown-timer .time-block {
    display: flex;
    align-items: baseline;
}

.countdown-timer .time-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 2px;
}

.countdown-timer .time-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    margin: 0 0.1rem;
}

/* Fix large gap between Projects and Sessions sections */
#sessions.section {
    padding-top: 5rem;
    margin-top: -4rem;
}

#sessions .section-desc {
    margin-bottom: 2rem;
}

/* -------------------------------------------
   NEW PREMIUM CYBERSECURITY SECTIONS
------------------------------------------- */

/* What We Do - Glassmorphism Cards */
.bg-darker {
    background-color: rgba(5, 5, 5, 0.8);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 230, 64, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 230, 64, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glow-hover:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 230, 64, 0.5);
    box-shadow: 0 15px 35px rgba(0, 230, 64, 0.15);
}

.glow-hover:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 230, 64, 0.5);
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

/* Cyber Domains */
.domains-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.domain-tag {
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.domain-tag:hover {
    background: rgba(0, 230, 64, 0.15);
    box-shadow: 0 0 20px rgba(0, 230, 64, 0.3);
    text-shadow: 0 0 8px rgba(0, 230, 64, 0.8);
}

/* Statistics Matrix Section */
.bg-matrix {
    position: relative;
    background-color: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.stat-number::after {
    content: '+';
    color: var(--green);
}

.stat-label {
    color: var(--green);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.92)),
        url('assets/pc_hacker_wallpaper.png') no-repeat center center / cover;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 230, 64, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.border-green-top {
    border-top: none;
    position: relative;
}

.border-green-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 230, 64, 0.3) 50%, transparent 100%);
}

.text-center {
    text-align: center;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* =========================================
   WHAT WE DO — PREMIUM RESPONSIVE LAYOUT
   Desktop: Bento grid | Mobile: Vertical
========================================= */

.wwd-section {
    background: linear-gradient(180deg, #050505 0%, #080808 100%);
}

.wwd-header {
    margin-bottom: 3rem;
}

.wwd-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* --- DESKTOP BENTO GRID (≥ 992px) --- */
.wwd-bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

/* Featured card spans left column, both rows */
.wwd-featured {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

/* Right side stacked mini-cards */
.wwd-small-col {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Bottom row spans both columns */
.wwd-bento>.wwd-card:not(.wwd-featured):not(:nth-child(3)):not(:nth-child(4)) {
    grid-column: span 1;
}

.wwd-bento>.wwd-card.glow-hover:nth-last-child(-n+2) {
    grid-row: 2;
}

/* Shared card styles */
.wwd-card {
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 230, 64, 0.08);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.wwd-card:hover {
    border-color: rgba(0, 230, 64, 0.35);
    box-shadow: 0 0 30px rgba(0, 230, 64, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
}

.wwd-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 1rem 0 0.5rem 0;
    color: #fff;
}

.wwd-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Icon */
.wwd-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(0, 230, 64, 0.08);
    border: 1px solid rgba(0, 230, 64, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green);
    flex-shrink: 0;
}

.pulse-green {
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 64, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 230, 64, 0);
    }
}

/* Featured card layout */
.wwd-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
}

.wwd-card-body {
    flex: 1;
}

/* Glowing background blob inside featured card */
.wwd-glow-bg {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 230, 64, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* LIVE tag pill */
.wwd-tag {
    display: inline-block;
    background: rgba(0, 230, 64, 0.15);
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.6rem;
}

/* Feature pills */
.wwd-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.wwd-feature-pills span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.78rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* ---- MOBILE VERTICAL LAYOUT (< 992px) ---- */
.wwd-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wwd-mobile-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(0, 230, 64, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.35s ease;
}

.wwd-mobile-card:hover {
    border-color: rgba(0, 230, 64, 0.3);
    box-shadow: 0 0 20px rgba(0, 230, 64, 0.08);
    transform: translateX(4px);
}

.featured-mobile {
    border-color: rgba(0, 230, 64, 0.2);
    background: rgba(0, 230, 64, 0.03);
}

.wwd-mobile-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 230, 64, 0.08);
    border: 1px solid rgba(0, 230, 64, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.wwd-mobile-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.4rem 0;
    color: #fff;
}

.wwd-mobile-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* Show/hide logic */
.desktop-only-grid {
    display: grid;
}

.mobile-only-grid {
    display: none;
}

@media (max-width: 991px) {
    .desktop-only-grid {
        display: none !important;
    }

    .mobile-only-grid {
        display: flex !important;
    }
}

/* Alternating Feature Rows */
.feature-rows-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-icon-wrapper {
    width: 150px;
    height: 150px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 230, 64, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--green);
    box-shadow: 0 0 40px rgba(0, 230, 64, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-row:hover .visual-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 230, 64, 0.25);
    border-color: rgba(0, 230, 64, 0.4);
}

.visual-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border: 1px solid rgba(0, 230, 64, 0.3);
    border-radius: 50%;
    animation: spin 10s linear infinite;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-rows-container {
        gap: 3rem;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .visual-icon-wrapper {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
}


/* =========================================
   SHADOW FOX SQUAD SECTION
   ========================================= */
.shadow-fox-section {
    padding: 5rem 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    background: rgba(5, 10, 8, 0.8);
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.shadow-fox-banner {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 255, 102, 0.1);
    padding-bottom: 3rem;
}

.shadow-fox-logo-wrap {
    flex-shrink: 0;
}

.shadow-fox-logo {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid #00ff66;
    animation: sf-pulse-glow 3s infinite alternate;
}

@keyframes sf-pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
    }

    100% {
        box-shadow: 0 0 40px rgba(0, 255, 102, 0.6);
    }
}

.shadow-fox-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 1rem 0;
}

.shadow-fox-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.shadow-fox-pill {
    display: inline-block;
    background: rgba(0, 255, 102, 0.1);
    color: #00ff66;
    border: 1px solid rgba(0, 255, 102, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* 4-Column Grid */
.squad-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.squad-event-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.squad-event-card:hover {
    transform: translateY(-8px);
    border-color: #00ff66;
    box-shadow: 0 15px 30px rgba(0, 255, 102, 0.15);
}

.squad-event-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.squad-event-info {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.squad-event-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

@media (max-width: 1024px) {
    .squad-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shadow-fox-banner {
        flex-direction: column;
        text-align: center;
    }

    .squad-events-grid {
        grid-template-columns: 1fr;
    }
}

/* Locked Ghost Session Styles */
.featured-session.border-red:hover {
    border-color: #ff003c !important;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
}

.session-locked-ghost {
    background: rgba(255, 0, 60, 0.02) !important;
    border-color: rgba(255, 0, 60, 0.15) !important;
}

.session-locked-ghost .session-poster {
    position: relative;
}

.session-locked-ghost .locked-blur img {
    filter: blur(8px) grayscale(100%) brightness(0.4);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.session-locked-ghost:hover .locked-blur img {
    filter: blur(6px) grayscale(80%) brightness(0.5);
    transform: scale(1.05);
}

.session-locked-ghost .lock-overlay {
    transition: all 0.3s ease;
}

.session-locked-ghost:hover .lock-overlay {
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 0, 60, 0.6) !important;
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.4) !important;
}

.session-selector-pills .selector-btn.locked-session {
    border-color: rgba(255, 0, 60, 0.2);
}

.session-selector-pills .selector-btn.locked-session:hover {
    border-color: rgba(255, 0, 60, 0.6) !important;
    color: #ff003c !important;
}

.session-selector-pills .selector-btn.locked-session.active {
    background: rgba(255, 0, 60, 0.08) !important;
    border-color: #ff003c !important;
    color: #ff003c !important;
}

.session-selector-pills .selector-btn.locked-session.active .sel-dot {
    background: #ff003c !important;
    box-shadow: 0 0 8px #ff003c !important;
}

@media (max-width: 991px) {
    .session-locked-ghost .session-poster {
        width: 100% !important;
        height: 250px !important;
    }

    .session-locked-ghost .session-info {
        width: 100% !important;
        padding: 2rem !important;
    }
}

/* ===== HACKTALK ABOUT BOX ===== */
.hacktalk-about-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 230, 64, 0.04);
    border: 1px solid rgba(0, 230, 64, 0.15);
    border-left: 3px solid rgba(0, 230, 64, 0.7);
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    margin: 0 0 2rem 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.hacktalk-about-box:hover {
    background: rgba(0, 230, 64, 0.05);
    border-color: rgba(0, 230, 64, 0.25);
    border-left-color: var(--green);
}

.hacktalk-about-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(0, 230, 64, 0.08);
    border: 1px solid rgba(0, 230, 64, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
}

.hacktalk-about-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.hacktalk-about-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* Visibility triggers */
.desktop-only-about {
    display: flex;
}

.mobile-only-about {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only-about {
        display: none !important;
    }

    .mobile-only-about {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 1rem !important;
        margin: 1.5rem 10px 1rem 10px !important;
        background: transparent !important;
        border: none !important;
    }

    .hacktalk-mob-title-row {
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
        margin-bottom: 1.2rem !important;
    }

    .hacktalk-mob-title-row h4 {
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        margin: 0 !important;
        color: #fff !important;
    }

    .hacktalk-mob-quote {
        border-left: 3px solid #00ff66 !important;
        padding-left: 1rem !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        font-style: italic !important;
        color: rgba(255, 255, 255, 0.9) !important;
        line-height: 1.6 !important;
        margin-bottom: 0.8rem !important;
    }

    .hacktalk-mob-sub {
        font-size: 0.8rem !important;
        color: rgba(255, 255, 255, 0.55) !important;
        line-height: 1.6 !important;
        padding-left: 1.2rem !important;
        margin: 0 !important;
    }
}

/* Speaker LinkedIn Links */
.speaker-linkedin-link {
    text-decoration: none !important;
    border-bottom: 1px dashed transparent;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.speaker-linkedin-link:hover {
    color: #fff !important;
    border-bottom-color: var(--green);
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.6);
}


/* ===== SESSION SELECTOR PILLS ===== */
.session-selector-container {
    display: flex;
    justify-content: center;
    margin: 0 0 2.5rem 0;
    width: 100%;
}

.session-selector-pills {
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 230, 64, 0.15);
    flex-wrap: wrap;
    justify-content: center;
}

.selector-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.selector-btn:hover {
    color: #fff;
    background: rgba(0, 230, 64, 0.05);
}

.selector-btn.active {
    background: rgba(0, 230, 64, 0.12);
    color: #fff;
    border: 1px solid rgba(0, 230, 64, 0.3);
    box-shadow: 0 0 15px rgba(0, 230, 64, 0.15);
}

.sel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    transition: all 0.3s ease;
}

.selector-btn.active .sel-dot {
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
}

@media (max-width: 576px) {
    .session-selector-pills {
        flex-direction: column;
        border-radius: 16px;
        width: 100%;
        padding: 0.8rem;
    }

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

/* ===== HACKTALKS POSTER LIGHTBOX (DESKTOP) ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox-overlay.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
    color: var(--green);
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .ht-panel-poster img {
        cursor: zoom-in;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    }

    .ht-panel-poster img:hover {
        filter: drop-shadow(0 0 15px rgba(0, 255, 102, 0.2));
    }
}

/* =========================================
   PROJECT MODAL & KNOW MORE BUTTON
   ========================================= */

.know-more-btn {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.know-more-btn:hover {
    background: var(--green);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.project-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.project-modal-content {
    background: #0f0f11;
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 650px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 255, 102, 0.05);
}

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

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.project-modal-close:hover {
    opacity: 1;
    color: #ff003c;
    transform: scale(1.1);
}

.project-modal-body h3 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 28px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.project-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.project-modal-tags span {
    background: rgba(0, 255, 102, 0.1);
    color: #00ff66;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 102, 0.2);
}

.project-modal-body p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 15px;
    text-align: left;
}

@media (max-width: 768px) {
    .project-modal-content {
        padding: 2rem 1.5rem;
    }

    .project-modal-body h3 {
        font-size: 22px;
    }
}

/* =========================================
   ROYAL ENFIELD STYLE PROJECTS SECTION
   ========================================= */

.re-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.re-tab {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 8px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.re-tab.active {
    color: #fff;
}

.re-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.re-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.re-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 2rem auto;
    position: relative;
}

.re-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    z-index: 10;
}

.re-arrow:hover {
    border-color: #fff;
    color: #fff;
}

.re-titles {
    flex: 1;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.re-title {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    pointer-events: none;
    font-family: 'Oswald', 'Inter', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.re-title.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    font-size: 28px;
    color: #fff;
    font-weight: 700;
}

.re-title.prev {
    opacity: 0.3;
    transform: translateX(-350px) scale(0.65);
    font-size: 28px;
    color: #aaa;
}

.re-title.next {
    opacity: 0.3;
    transform: translateX(350px) scale(0.65);
    font-size: 28px;
    color: #aaa;
}

.re-showcase-container {
    position: relative;
    height: 550px;
    width: 100%;
}

.re-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.re-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.re-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.re-slide-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.5s ease;
}

.re-slide:hover .re-slide-img {
    transform: scale(1.03);
}

.re-shadow-podium {
    position: absolute;
    bottom: -10px;
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(30, 30, 30, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.re-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.re-link-red {
    color: #e62b1e;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.re-link-red:hover {
    color: #ff3c2e;
}

.re-btn-group {
    display: flex;
    gap: 1.5rem;
}

.re-btn {
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.re-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.re-btn-outline:hover {
    background: #fff;
    color: #000;
}

.re-btn-solid {
    background: #3a3a3a;
    color: #f1b434;
    border: 1px solid #3a3a3a;
}

.re-btn-solid:hover {
    background: #4a4a4a;
}

@media (max-width: 768px) {
    .re-nav-container {
        margin: 0 auto 1.5rem auto;
    }

    .re-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
        z-index: 20;
        /* Ensure arrows are above titles */
    }

    .re-title.active {
        font-size: 18px;
        /* Reduce font size to fit between arrows */
        white-space: normal;
        /* Allow wrapping if still too long */
        text-align: center;
        line-height: 1.2;
    }

    .re-title.prev,
    .re-title.next {
        display: none;
        /* Hide prev/next titles on mobile to avoid clutter */
    }

    .re-showcase-container {
        height: 450px;
    }

    .re-img-wrapper {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .re-btn {
        padding: 12px 25px;
        font-size: 12px;
    }

    .re-actions .re-desc {
        font-size: 0.85rem !important;
        padding: 0 15px;
    }
}

/* =========================================
   IN THE HEADLIGHTS (RESEARCH) SECTION
   ========================================= */

.hl-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    font-family: 'Oswald', sans-serif;
    text-transform: none;
    /* "In the headlights" uses sentence case */
    letter-spacing: 0;
    text-align: left;
}

.headlights-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
}

.hl-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.hl-prev {
    left: 5%;
}

.hl-next {
    right: 5%;
}

.hl-arrow:hover {
    background: #fff;
    color: #000;
}

.hl-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.hl-slide {
    position: absolute;
    width: 600px;
    background: #1a1a1a;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.hl-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
    pointer-events: auto;
}

.hl-slide.prev {
    opacity: 0.5;
    transform: translateX(-45%) scale(0.85);
    z-index: 5;
    pointer-events: auto;
    cursor: pointer;
}

.hl-slide.next {
    opacity: 0.5;
    transform: translateX(45%) scale(0.85);
    z-index: 5;
    pointer-events: auto;
    cursor: pointer;
}

.hl-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.hl-image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.hl-image-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    z-index: 3;
    margin: 0;
    transition: font-size 0.3s ease;
}

.hl-slide.prev .hl-image-title,
.hl-slide.next .hl-image-title {
    font-size: 18px;
}

.hl-body {
    padding: 2rem;
    display: none;
    background: #1a1a1a;
}

.hl-slide.active .hl-body {
    display: block;
    animation: hlFadeIn 0.5s ease forwards;
}

.hl-body p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hl-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hl-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

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

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

@media (max-width: 992px) {
    .hl-slide {
        width: 450px;
    }

    .hl-slide.prev {
        transform: translateX(-40%) scale(0.85);
    }

    .hl-slide.next {
        transform: translateX(40%) scale(0.85);
    }
}

@media (max-width: 768px) {
    .hl-slide {
        width: 90%;
    }

    .hl-slide.prev,
    .hl-slide.next {
        opacity: 0;
        pointer-events: none;
    }

    .hl-arrow {
        display: flex;
        top: 30%;
        /* Position roughly over the image area */
        width: 36px;
        height: 36px;
        z-index: 20;
    }

    .hl-prev {
        left: 5%;
    }

    .hl-next {
        right: 5%;
    }
}

/* =========================================
   PEAK PC FOOTER
   ========================================= */
.footer-desktop {
    display: block;
    position: relative;
    background: #0f0f11;
    border-top: 1px solid rgba(0, 255, 102, 0.2);
    overflow: hidden;
    padding: 6rem 0 2rem 0;
}

.fd-watermark {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    font-family: 'Oswald', sans-serif;
}

.fd-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.fd-top {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.fd-logo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fd-logo-row img {
    height: 140px;
    object-fit: contain;
    margin: -40px 0 -40px -20px;
}

.fd-logo-row h3 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0 -36px;
    /* Adjusted right by ~0.5cm */
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.fd-brand p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 350px;
}

.fd-terminal {
    background: #000;
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    border: 1px solid #222;
}

.fd-prompt {
    color: #00ff66;
}

.fd-cursor {
    color: #ccc;
    animation: blink 1s step-end infinite;
}

.fd-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.fd-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.fd-col a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.fd-col a:hover {
    color: #00ff66;
}

.fd-social-action h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
}

.fd-social-action p {
    color: #888;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.fd-social-grid {
    display: flex;
    gap: 1rem;
}

.fd-social-grid a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.fd-social-grid a:hover {
    background: #00ff66;
    color: #000;
    border-color: #00ff66;
    transform: translateY(-3px);
}

.fd-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fd-bottom p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.fd-back-to-top {
    background: transparent;
    border: 1px solid #00ff66;
    color: #00ff66;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fd-back-to-top:hover {
    background: #00ff66;
    color: #000;
}

/* =========================================
   PEAK MOBILE FOOTER
   ========================================= */
.footer-mobile {
    display: none;
    background-color: #050505;
    border-top: 1px solid rgba(0, 255, 102, 0.2);
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.fm-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 2.5rem 1.5rem 1rem 1.5rem;
}

.fm-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.fm-links-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
}

.fm-links-col a {
    display: block;
    color: #888;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.fm-links-col a:hover {
    color: #00ff66;
}

.fm-social-dock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.fm-social-links {
    display: flex;
    gap: 1.5rem;
}

.fm-social-links a {
    color: #fff;
    font-size: 22px;
    transition: color 0.3s ease;
}

.fm-social-links a:hover {
    color: #00ff66;
}

.fm-image-banner {
    width: 100%;
    position: relative;
    display: flex;
    font-size: 0;
    line-height: 0;
    margin-top: 0;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.fm-image-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    vertical-align: bottom;
    /* Removes sub-pixel gaps at the bottom of block-level images */
}

.fm-image-overlay-text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.fm-image-overlay-text p {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 8px !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.3px !important;
}

.fm-image-overlay-text .fm-built-with {
    font-weight: 500 !important;
}

.fm-back-to-top {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 102, 0.1);
    color: #00ff66;
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.fm-back-to-top:hover {
    background: #00ff66;
    color: #000;
}

@media (max-width: 768px) {
    .footer-desktop {
        display: none;
    }

    .footer-mobile {
        display: block;
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.contact-text {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-email-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 102, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-email-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.08);
}

.contact-email-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-email {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #00ff66;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #00ff66;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-action-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.contact-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.1);
    height: 400px;
}

@media (max-width: 768px) {
    .contact-map {
        height: 300px;
        margin-top: 2rem;
    }
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.8s ease;
}

.contact-map:hover img {
    transform: scale(1.03);
}

.contact-map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 255, 102, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 2;
}

.map-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: #00ff66;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
}

.stat-label {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

    .contact-action-btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .contact-text {
        font-size: 0.95rem;
    }

    .contact-email-box {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        width: 100%;
        padding: 1.2rem;
        box-sizing: border-box;
    }

    .contact-email {
        font-size: 1rem;
        word-break: break-all;
    }
}

/* =========================================
   AEGIS AI CHATBOT WIDGET
   ========================================= */

.aegis-bot-toggle-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    mix-blend-mode: screen;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aegis-bot-toggle-widget.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.aegis-bot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

/* Floating Toggle Button */
.aegis-bot-toggle-btn {
    width: 120px;
    height: 120px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 768px) {
    .aegis-bot-toggle-btn {
        width: 60px;
        height: 60px;
    }

    .aegis-bot-toggle-widget,
    .aegis-bot-widget {
        bottom: 20px;
        right: 20px;
    }
}

.aegis-bot-toggle-btn:hover {
    transform: scale(1.15);
}

.aegis-glow-ring {
    display: none;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.aegis-tooltip {
    position: absolute;
    left: -90px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: #00ff66;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.aegis-bot-toggle-btn:hover .aegis-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Chat Window Panel */
.aegis-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: rgba(8, 8, 10, 0.45);
    /* Dark ghost transparency */
    backdrop-filter: blur(25px);
    /* Removed saturate for a colder ghost feel */
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    /* Deep dark shadow, no glow */
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aegis-chat-window::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/logowithoutbg.png') center/55% no-repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.aegis-chat-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.aegis-chat-header {
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aegis-chat-input-bar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.aegis-bot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aegis-bot-avatar {
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.aegis-bot-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aegis-bot-avatar .aegis-bot-img-wrapper {
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.aegis-bot-icon {
    width: 160%;
    height: 160%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: screen;
    filter: contrast(1.6) brightness(1.2);
}

.aegis-bot-icon-inside {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.aegis-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff66;
    border: 2px solid #0a0a0c;
}

.aegis-bot-details h4 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

.aegis-bot-details p {
    margin: 0;
    font-size: 11px;
    color: #888;
}

.online-text {
    color: #00ff66;
}

.aegis-chat-close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.aegis-chat-close-btn:hover {
    color: #ff3333;
}

/* Messages Area */
.aegis-chat-messages {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-behavior: smooth;
}

.aegis-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.aegis-msg.bot {
    align-self: flex-start;
}

.aegis-msg.user {
    align-self: flex-end;
}

.aegis-msg-bubble {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.55;
    word-break: break-word;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.aegis-msg.bot .aegis-msg-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    border-top-left-radius: 4px;
}

.aegis-msg.user .aegis-msg-bubble {
    background: rgba(0, 255, 102, 0.15);
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: #fff;
    border-top-right-radius: 4px;
}

.aegis-typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border-top-left-radius: 2px;
    align-self: flex-start;
}

.aegis-typing-indicator span {
    width: 6px;
    height: 6px;
    background: #00ff66;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.aegis-typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.aegis-typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Recommendations */
.aegis-recommendations {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rec-label {
    margin: 0;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.rec-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.aegis-rec-btn {
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.25);
    color: #00ff66;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.aegis-rec-btn:hover {
    background: rgba(0, 255, 102, 0.15);
    border-color: #00ff66;
    color: #fff;
}

/* Input Bar */
.aegis-chat-input-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    display: flex;
    gap: 12px;
    background: rgba(10, 10, 12, 0.5);
    backdrop-filter: blur(10px);
}

.aegis-chat-input-bar input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.aegis-chat-input-bar input:focus {
    outline: none;
    border-color: rgba(0, 255, 102, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.aegis-chat-send-btn {
    background: #00ff66;
    border: none;
    color: #000;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.aegis-chat-send-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Custom Scrollbar for Chat */
.aegis-chat-messages::-webkit-scrollbar {
    width: 4px;
}

.aegis-chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.aegis-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 102, 0.2);
    border-radius: 10px;
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .aegis-chat-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 120px);
        max-height: 650px;
        right: -15px;
        bottom: 80px;
        border-radius: 20px;
    }
}
}
}