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

:root {
    --bg-dark: #03040b;
    --bg-deep: #031214;
    --muted-text: #e6fff2;
    --neon-green: #39ff14;
    --neon-cyan: #00f0ff;
    --neon-purple: #6ef2b8;
    --glass: rgba(255,255,255,0.03);
    --header-h: 96px;
    --page-pad: clamp(14px, 3vw, 28px);
}

/* ── GLOBAL ── */
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
:target { scroll-margin-top: calc(var(--header-h) + 18px); }
img, video { max-width: 100%; height: auto; display: block; }
a, button { touch-action: manipulation; }

body {
    margin: 0;
    padding: 0;
    background-image: url('images/imagebackgroundhackabull.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #0a0008;
    font-family: 'Inter', sans-serif;
    color: var(--muted-text);
    min-height: 100vh;
}

/* ── TOP BAR ── */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.social-icons-top {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-right: auto;
}

.social-icons-top img {
    width: 72px;
    height: 72px;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.social-icons-top a:hover img {
    transform: scale(1.2) translateY(-2px);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255,255,255,1)) drop-shadow(0 0 40px rgba(255,255,255,0.6));
}

/* NAV PILL */
.nav-pill {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    display: flex;
    gap: 50px;
    align-items: center;
    white-space: nowrap;
    margin-left: auto;
    margin-right: 150px;
}

.nav-pill a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    text-shadow: 0 0 12px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.5);
    font-family: 'HK Modular', 'Orbitron', sans-serif;
    position: relative;
}

.nav-pill a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
    transition: transform 0.35s ease;
}

.nav-pill a:hover {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(255,255,255,1), 0 0 40px rgba(255,255,255,0.8), 0 0 60px rgba(255,255,255,0.4);
    letter-spacing: 2.5px;
    transform: translateY(-2px);
}

.nav-pill a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.apply-btn {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    color: #ffffff !important;
    font-weight: 800 !important;
    text-shadow: 0 0 12px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.5) !important;
    box-shadow: none;
    transition: all 0.35s ease !important;
    position: relative;
}

.apply-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
    transition: transform 0.35s ease;
}

.apply-btn:hover {
    background: transparent;
    box-shadow: none;
    text-shadow: 0 0 18px rgba(255,255,255,1), 0 0 40px rgba(255,255,255,0.8), 0 0 60px rgba(255,255,255,0.4) !important;
    letter-spacing: 2.5px !important;
    transform: translateY(-2px);
}

.apply-btn:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* MLH */
.mlh {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.mlh:hover { transform: scale(1.05); }

.mlh img {
    width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    margin-top: -10px;
    margin-right: 20px;
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 22px 30px;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    max-width: 95%;
}

.hero-logo-wrap {
    line-height: 1;
    margin: 0;
}

/* hero-pack: wrapper that holds logo + subtitles as one unit */
.hero-pack {
    display: inline-block;
}

/* SITE LOGO */
.hero-content .site-logo {
    max-height: 1200px;
    max-width: 56vw;
    width: auto;
    display: block;
    margin: 0 auto 12px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(57,255,20,0.10));
    transform: translateX(-300px) translateY(0px);
}

/* SHINY TEXT */
.text-shine-white {
    color: #ffffff;
    font-family: 'HK Modular', 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255,255,255,0.80), 0 0 30px rgba(255,255,255,0.50);
    transition: text-shadow 0.35s ease;
}

.text-shine-red {
    color: #f7444c;
    text-shadow: 0 0 12px rgba(247,68,76,0.80), 0 0 30px rgba(247,68,76,0.50);
}

.text-shine-white:hover {
    text-shadow: 0 0 18px rgba(255,255,255,1), 0 0 40px rgba(255,255,255,0.80), 0 0 60px rgba(255,255,255,0.40);
}

.hero-tagline {
    margin-top: 18px;
    font-size: clamp(18px, 2.2vw, 32px);
    text-align: center;
    opacity: 0.95;
}

.hero-tagline.text-shine-red { margin-top: 6px; }

/* SUBTITLES wrapper + individual offsets (desktop default) */
.hero-subtitles {
    transform: translateX(-405px) translateY(-390px);
}

.hero-subtitle-1 {
    transform: translateX(0px) translateY(0px);
}

.hero-subtitle-2 {
    transform: translateX(-103px) translateY(-15px);
}

/* SHPE LOGO */
.shpe-logo-link {
    display: inline-block;
    margin-top: 14px;
}

.shpe-logo {
    height: 70px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 14px rgba(57,255,20,0.10));
    transform: translateX(50px) translateY(-100px) scale(6.6);
    transform-origin: center;
}

/* GLOW */
.glow {
    text-shadow:
        0 0 6px rgba(153,194,224,0.95),
        0 0 18px rgba(0,240,255,0.65),
        0 0 36px rgba(110,242,184,0.45);
}

/* ── BUTTONS ── */
button {
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid rgba(57,255,20,0.14);
    background: linear-gradient(90deg, rgba(57,255,20,0.10), rgba(0,240,255,0.06));
    color: var(--muted-text);
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: linear-gradient(90deg, rgba(57,255,20,0.18), rgba(0,240,255,0.12));
    box-shadow: 0 6px 30px rgba(110,242,184,0.10), 0 0 18px rgba(0,240,255,0.06);
}

/* ── ABOUT ── */
.about {
    padding: 340px 40px 100px;
    margin-top: -2%;
    max-width: 100%;
    min-height: 100vh;
    position: relative;
}

.about-inner {
    max-width: 800px;
    margin: 0 80px 0 auto;
    text-align: center;
    padding: 120px 20px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    margin-bottom: 20px;
    color: #ffffff;
}

.about .lead {
    font-family: 'HK Modular', 'Orbitron', sans-serif;
    color: rgba(230,246,255,0.85);
    margin-bottom: 40px;
    font-size: 22px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 30px;
}

.pill-btn {
    background: transparent;
    border: 2px solid #ff2d78;
    border-radius: 50px;
    padding: 16px 36px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.pill-btn:hover {
    background: transparent;
    box-shadow: none;
    transform: translateY(-2px);
}

.faq-link {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(230,255,245,0.7);
}

.faq-link a {
    color: #ff2d78;
    text-decoration: none;
    font-weight: 700;
}

.faq-link a:hover { text-shadow: 0 0 10px rgba(255,45,120,0.8); }

/* ── TRACKS ── */
.tracks {
    padding: 200px 40px 100px;
    margin: 0;
    max-width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.tracks-inner {
    max-width: 800px;          /* match .about-inner */
    margin: 0 20px 0 auto;     /* same vertical axis as ABOUT */
    display: flex;
    flex-direction: column;    /* STACK title above carousel */
    align-items: center;
    gap: 40px;
    width: auto;
    position: relative;
    z-index: 1;
}

.tracks-left {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* align with ABOUT left edge */
}

.track-title {
    margin: 0;                  /* remove the crazy offsets */
    text-align: left;
    align-self: auto;
}

.tracks-title {
    font-family: 'HK Modular', 'Orbitron', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.carousel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0;
  perspective: 1000px;
}

.carousel {
    position: relative;
    width: 572px;
    height: 572px;
    transform-style: preserve-3d;
    cursor: pointer;
}

.carousel-item {
    position: absolute;
    width: 198px;
    height: 198px;
    top: 50%;
    left: 50%;
    margin: -99px 0 0 -99px;
    border-radius: 16px;
    background: rgba(10,6,20,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, box-shadow 0.3s;
    backface-visibility: visible;
}

.carousel-item:nth-child(1) { transform: rotateY(0deg)   translateZ(297px); }
.carousel-item:nth-child(2) { transform: rotateY(90deg)  translateZ(297px); }
.carousel-item:nth-child(3) { transform: rotateY(180deg) translateZ(297px); }
.carousel-item:nth-child(4) { transform: rotateY(270deg) translateZ(297px); }

.carousel-item img { width: 132px; height: 132px; object-fit: contain; }

.carousel-item.active {
    border-color: #c44dff;
    box-shadow: 0 0 30px rgba(196,77,255,0.5), 0 0 60px rgba(196,77,255,0.2);
}

.carousel-info { text-align: center; min-height: 80px; }

.carousel-title {
    font-family: 'HK Modular', 'Orbitron', sans-serif;
    font-size: 29px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(196,77,255,0.6);
    transition: opacity 0.3s ease;
}

.carousel-desc {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    color: rgba(230,255,245,0.75);
    max-width: 400px;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

/* ── GALLERY ── */
.gallery {
    padding: 100px 40px;
    margin: 0;
    margin-left: 40%;
    max-width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.gallery-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(255,230,0,0.8),
        0 0 40px rgba(255,230,0,0.5),
        0 0 80px rgba(255,230,0,0.3),
        inset 0 0 20px rgba(255,230,0,0.1);
    border: 2px solid rgba(255,230,0,0.9);
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active { opacity: 1; }

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,230,0,0.4);
    color: #ffffff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.slide-btn:hover {
    background: rgba(255,230,0,0.2);
    border-color: rgba(255,230,0,0.9);
    box-shadow: 0 0 12px rgba(255,230,0,0.5);
}

.slide-btn.prev { left: -20px; }
.slide-btn.next { right: -20px; }

.slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255,230,0,0.9);
    box-shadow: 0 0 8px rgba(255,230,0,0.7);
}

.gallery-caption {
    font-family: 'HK Modular', 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-align: center;
}

/* ── SPONSORS ── */
.sponsors {
    padding: 100px 40px;
    margin: 0;
    max-width: 100%;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.sponsors-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.sponsors-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-card {
    background: rgba(10,6,20,0.24);
    padding: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(57,255,20,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: none;
}

.sponsor-card.visible {
    animation: fadeSlideIn 0.6s ease forwards;
}

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

.sponsor-card:nth-child(1) { animation-delay: 0.0s; }
.sponsor-card:nth-child(2) { animation-delay: 0.1s; }
.sponsor-card:nth-child(3) { animation-delay: 0.2s; }
.sponsor-card:nth-child(4) { animation-delay: 0.3s; }
.sponsor-card:nth-child(5) { animation-delay: 0.4s; }
.sponsor-card:nth-child(6) { animation-delay: 0.5s; }
.sponsor-card:nth-child(7) { animation-delay: 0.6s; }

.sponsor-card:nth-child(1):hover { border-color: rgba(255,50,50,0.6);   box-shadow: 0 0 25px rgba(255,50,50,0.3),   0 0 50px rgba(255,50,50,0.1);   transform: translateY(-4px); }
.sponsor-card:nth-child(2):hover { border-color: rgba(0,120,212,0.6);   box-shadow: 0 0 25px rgba(0,120,212,0.3),   0 0 50px rgba(0,120,212,0.1);   transform: translateY(-4px); }
.sponsor-card:nth-child(3):hover { border-color: rgba(130,80,255,0.6);  box-shadow: 0 0 25px rgba(130,80,255,0.3),  0 0 50px rgba(130,80,255,0.1);  transform: translateY(-4px); }
.sponsor-card:nth-child(4):hover { border-color: rgba(255,200,0,0.6);   box-shadow: 0 0 25px rgba(255,200,0,0.3),   0 0 50px rgba(255,200,0,0.1);   transform: translateY(-4px); }
.sponsor-card:nth-child(5):hover { border-color: rgba(0,220,100,0.6);   box-shadow: 0 0 25px rgba(0,220,100,0.3),   0 0 50px rgba(0,220,100,0.1);   transform: translateY(-4px); }
.sponsor-card:nth-child(6):hover { border-color: rgba(0,180,255,0.6);   box-shadow: 0 0 25px rgba(0,180,255,0.3),   0 0 50px rgba(0,180,255,0.1);   transform: translateY(-4px); }
.sponsor-card:nth-child(7):hover { border-color: rgba(255,100,200,0.6); box-shadow: 0 0 25px rgba(255,100,200,0.3), 0 0 50px rgba(255,100,200,0.1); transform: translateY(-4px); }

.sponsor-card img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.sponsor-card:nth-child(5) img          { transform: scale(1.25); }
.sponsor-card:nth-child(5):hover img    { transform: scale(1.35); }
.sponsor-card:hover img                 { transform: scale(1.08); }

/* Marquee ticker */
.sponsors-ticker {
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.sponsors-ticker::before,
.sponsors-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.sponsors-ticker::before { left: 0;  background: linear-gradient(90deg,  #0a0008, transparent); }
.sponsors-ticker::after  { right: 0; background: linear-gradient(-90deg, #0a0008, transparent); }

.ticker-track {
    display: flex;
    gap: 80px;
    align-items: center;
    width: max-content;
    animation: ticker 20s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.ticker-item:hover { opacity: 1; }

.ticker-item img {
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ── FAQ ── */
.faq {
    padding: 60px 40px 100px;
    margin: 0;
    max-width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}
.faq-inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.faq .section-title {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
}
.faq-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}
.faq-tab {
    background: rgba(10,6,20,0.7);
    border: 1px solid rgba(255,45,120,0.2);
    border-radius: 16px;
    padding: 20px 28px;
    color: rgba(255,255,255,0.5);
    font-family: 'HK Modular', 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    min-width: unset;
    white-space: nowrap;
}
.faq-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,45,120,0.08), rgba(255,45,120,0.04));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 16px;
}
.faq-tab:hover::before,
.faq-tab.active::before { opacity: 1; }
.faq-tab:hover,
.faq-tab.active {
    background: rgba(10,6,20,0.9);
    border-color: #ff2d78;
    color: #ff2d78;
    box-shadow:
        0 0 20px rgba(255,45,120,0.25),
        0 0 60px rgba(255,45,120,0.10),
        inset 0 0 20px rgba(255,45,120,0.05);
    transform: translateY(-3px);
    text-shadow: 0 0 12px rgba(255,45,120,0.6);
}

.faq-list {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(10,6,20,0.7) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,45,120,0.12) !important;
    width: 100%;
    position: relative;
    transition:
        border-color 0.4s cubic-bezier(0.16,1,0.3,1),
        background   0.4s cubic-bezier(0.16,1,0.3,1),
        box-shadow   0.4s cubic-bezier(0.16,1,0.3,1),
        transform    0.3s ease;
}
.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,45,120,0.04), rgba(255,45,120,0.02), transparent);
    pointer-events: none;
}
.faq-item:hover {
    border-color: rgba(255,45,120,0.35) !important;
    box-shadow: 0 0 30px rgba(255,45,120,0.08), 0 8px 32px rgba(0,0,0,0.3) !important;
    transform: translateY(-2px);
}
.faq-item.open {
    border-color: rgba(255,45,120,0.5) !important;
    background: rgba(20,4,12,0.95) !important;
    box-shadow: 0 0 40px rgba(255,45,120,0.15), 0 8px 40px rgba(0,0,0,0.4) !important;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 26px 32px;
    font-weight: 700;
    background: transparent !important;
    color: #ff2d78;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: 'HK Modular', 'Orbitron', sans-serif;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 17px;
    transition: color 0.3s ease;
    box-shadow: none !important;
}
.faq-question:hover {
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(255,45,120,0.8);
}
.faq-question:active,
.faq-question:focus {
    outline: none;
    box-shadow: none !important;
    background: transparent !important;
    -webkit-tap-highlight-color: transparent;
}
.faq-question::after {
    content: '+';
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    color: rgba(255,45,120,0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease;
}
.faq-item.open .faq-question {
    color: #ff2d78;
    background: transparent !important;
}
.faq-item.open .faq-question::after {
    content: '\2212';
    color: #ff2d78;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: transparent !important;
    color: rgba(255,210,220,0.85);
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid transparent;
    transition:
        max-height 0.5s cubic-bezier(0.16,1,0.3,1),
        opacity    0.4s cubic-bezier(0.16,1,0.3,1),
        padding    0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer {
    max-height: 600px;
    opacity: 1;
    padding: 20px 32px 28px;
    border-top-color: rgba(255,45,120,0.15);
}
.faq-answer a {
    color: #ff2d78;
    text-decoration: none;
    font-weight: 600;
    transition: text-shadow 0.3s ease;
}
.faq-answer a:hover { text-shadow: 0 0 10px rgba(255,45,120,0.6); }

/* fade-in utility */
.fade-in { animation: fadeIn 1s ease forwards; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* HERO APPLY CTA (GOLD VERSION + DOTTED ARROW) */

.hero-apply-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  position: relative;
  z-index: 10;

  --heroApplyX: 0px;
  --heroApplyY: 0px;

  transform: translate(var(--heroApplyX), var(--heroApplyY));
}

/* optional press scale */
.hero-apply-wrap.is-pressed{
  transform: translate(var(--heroApplyX), var(--heroApplyY)) scale(0.96);
}

/* BIG TEXT BUTTON */
.hero-apply-btn.Btn-Container{
  display: inline-flex;
  align-items: center;
  gap: 18px;

  background: transparent;
  border: none;
  box-shadow: none;

  padding: 16px 10px;
  cursor: pointer;
  text-decoration: none;

  font-family: 'HK Modular', 'Orbitron', sans-serif;
  font-weight: 800;

  font-size: 50px;
  letter-spacing: 4px;
  text-transform: uppercase;

  color: #ffec4e;

  text-shadow:
    0 0 8px rgba(255,236,78,0.55),
    0 0 18px rgba(255,236,78,0.35);

  transition:
    transform 0.25s ease,
    text-shadow 0.35s ease;
}

.hero-apply-btn .text{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* arrow container */
.hero-apply-btn .icon-Container{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* arrow automatically matches text color */
.hero-apply-btn .arrow{
  color: currentColor;
}

/* Hover = brighter gold + lift */
.hero-apply-btn:hover{
  transform: translateY(-4px);

  text-shadow:
    0 0 18px rgba(255,236,78,0.9),
    0 0 40px rgba(255,236,78,0.8),
    0 0 80px rgba(255,236,78,0.6);
}

/* reveal arrow */
.hero-apply-btn:hover .icon-Container{
  opacity: 1;
  transform: translateX(0);
}

/* animated dotted arrow */
.hero-apply-btn:hover .arrow{
  animation: dottedArrow 0.9s ease-in-out infinite;
}

@keyframes dottedArrow{
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(12px);
    opacity: 1;
  }
}

.hero-apply-btn:focus-visible{
  outline: none;
}


/* ─────────────────────────────────────────────────────────────────────────────
   MQ-NARROW │ max-width: 505px
   Hide TRACKS (2nd) and SPONSORS (3rd) nav links, center the remaining ones.
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 505px) {
  .nav-pill a:nth-child(2),
  .nav-pill a:nth-child(3) { display: none; }

  .nav-pill {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }
}



/* ─────────────────────────────────────────────────────────────────────────────
   MQ-1 │ max-width: 768px  (mobile)
   All hero offsets zeroed. Content centered. Sections stacked cleanly.
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  :root { --header-h: 86px; }

  body { background-size: cover; background-position: center top; }

  .social-icons-top { display: none; }

  .top-bar { padding-left: var(--page-pad); padding-right: var(--page-pad); }

  .nav-pill {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 2px;
    gap: 14px;
    align-items: center;
    line-height: 1;
    margin-right: 0;
  }
  .nav-pill::-webkit-scrollbar { display: none; }

  .nav-pill a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
  }

  .mlh img { width: 72px; height: auto !important; }

  .hero                      { min-height: min(84svh, 900px); height: auto; padding-top: calc(var(--header-h) + 22px); justify-content: center; text-align: center; }

  .hero-content              { max-width: 100%; width: 100%; padding: 0 var(--page-pad); }
  .hero-pack                 { display: block; transform: translateY(-70px); }
  .hero-content .site-logo   { width: min(88vw, 480px); max-width: 600px; height: auto; margin: 0 auto 10px; transform:translateY(-100px) scale(1.3) }
  .hero-subtitles            { transform: none !important; margin-top: -250px; text-align: center; }
  .hero-subtitle-1           { transform: none !important; font-size: clamp(18px, 5.2vw, 30px); margin: clamp(8px, 2.5vw, 14px) 0 0; text-align: center; }
  .hero-subtitle-2           { transform: none !important; font-size: clamp(16px, 4.8vw, 26px); margin: 6px 0 0; text-align: center; }
  .shpe-logo                 { transform: TranslateY(150px) scale(1.6); height: auto; width: min(52vw, 220px); max-width: 220px; margin: clamp(14px, 3vw, 22px) auto 0; display: block; }
                                /*150px and 1.3 scalefor 360*/
  .hero-apply-wrap           { /*--heroApplyX: 300px; --heroApplyY: 150px;*/ display: flex; transform:TranslateY(150px) TranslateX(0px) scale(1);}

  .hero-apply-btn.Btn-Container { font-size: clamp(26px, 7.5vw, 38px); letter-spacing: 2px; padding: 10px 8px; }

  .about, .tracks, .gallery, .sponsors, .faq {
    min-height: auto;
    margin: 0 !important;
    padding: calc(var(--header-h) + 40px) var(--page-pad) 60px;
  }

  .about-inner, .tracks-inner, .gallery-inner, .sponsors-inner, .faq-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .about-inner    { padding-top: 0; }
  .sponsors-inner { padding-top: 0; }

  .section-title { font-size: clamp(26px, 7vw, 38px); }
  .about .lead   { font-size: clamp(14px, 3.7vw, 16px); line-height: 1.65; }

  .about-pills { gap: 10px; }
  .pill-btn    { width: 100%; max-width: 400px; padding: 12px 18px; font-size: 14px; }

  .tracks-inner {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    width: 100%;
  }

  .tracks-left               { align-items: center; text-align: center; justify-content: center; width: 100%; }
  .track-title               { text-align: center !important; margin: 0 auto !important; align-self: center; }

  .carousel-container { padding-left: 0 !important; gap: 20px; }

  .carousel { width: clamp(250px, 74vw, 310px); height: clamp(250px, 74vw, 310px); }

  .carousel-item {
    width: clamp(96px, 26vw, 116px);
    height: clamp(96px, 26vw, 116px);
    margin: calc(clamp(96px, 26vw, 116px) * -0.5) 0 0 calc(clamp(96px, 26vw, 116px) * -0.5);
  }

  .carousel-item img { width: clamp(68px, 17vw, 82px); height: clamp(68px, 17vw, 82px); }

  .carousel-item:nth-child(1) { transform: rotateY(0deg)   translateZ(clamp(130px, 37vw, 165px)); }
  .carousel-item:nth-child(2) { transform: rotateY(90deg)  translateZ(clamp(130px, 37vw, 165px)); }
  .carousel-item:nth-child(3) { transform: rotateY(180deg) translateZ(clamp(130px, 37vw, 165px)); }
  .carousel-item:nth-child(4) { transform: rotateY(270deg) translateZ(clamp(130px, 37vw, 165px)); }

  .carousel-title { font-size: 23px; }
  .carousel-desc  { font-size: 18px; max-width: 100%; }

  .gallery          { margin-left: 0 !important; }
  .slideshow-wrapper { max-width: 100%; width: 100%; }
  .slide-btn.prev   { left: 4px; }
  .slide-btn.next   { right: 4px; }

  .sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
    margin: 20px auto 0;
  }

  .sponsor-card img                 { height: 56px; transform: none; }
  .sponsor-card:nth-child(5) img    { transform: scale(1.4); }

  .faq-tabs     { flex-wrap: wrap; gap: 8px; }
  .faq-tab      { padding: 10px 16px; font-size: 12px; letter-spacing: 1px; }
  .faq-question { padding: 16px 20px; font-size: 14px; }
  .faq-answer   { font-size: 14px; }
}


/* ─────────────────────────────────────────────────────────────────────────────
   MQ-2 │ 768px – 1023px  (iPad Air 820, iPad Pro 834, Surface Pro 912)
   Wide enough for desktop background but transforms are too extreme at this size.
   Zero everything out — centered like mobile, clean and simple.
   ───────────────────────────────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {

 .top-bar { padding-left: var(--page-pad); padding-right: var(--page-pad); }

  .nav-pill {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 2px;
    gap: 14px;
    align-items: center;
    line-height: 1;
    margin-right: 0;
  }
  .nav-pill::-webkit-scrollbar { display: none; }

  .nav-pill a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
  }

  body { background-size: cover; background-position: center top; }

  .social-icons-top { display: none; }

  /*HERO*/
 .hero                      { min-height: min(84svh, 900px); height: auto; padding-top: calc(var(--header-h) + 22px); justify-content: center; text-align: center; }

  .hero-content              { max-width: 100%; width: 100%; padding: 0 var(--page-pad); }
  .hero-pack                 { display: block; transform: translateY(-70px); }
  .hero-content .site-logo   { width: min(88vw, 480px); max-width: 600px; height: auto; margin: 0 auto 10px; transform:translateY(-100px) scale(1.5) }
  .hero-subtitles            { transform: TranslateY(-60px) !important; margin-top: -250px; text-align: center; }
  .hero-subtitle-1           { transform: none !important; font-size: clamp(18px, 5.2vw, 30px); margin: clamp(8px, 2.5vw, 14px) 0 0; text-align: center; }
  .hero-subtitle-2           { transform: none !important; font-size: clamp(16px, 4.8vw, 26px); margin: 6px 0 0; text-align: center; }
  .shpe-logo                 { transform: TranslateY(150px) scale(1.6); height: auto; width: min(52vw, 220px); max-width: 220px; margin: clamp(14px, 3vw, 22px) auto 0; display: block; }
                                /*150px and 1.3 scalefor 360*/
  .hero-apply-wrap           { /*--heroApplyX: 300px; --heroApplyY: 150px;*/ display: flex; transform:TranslateY(150px) TranslateX(0px) scale(1);}



  .hero-apply-btn.Btn-Container { font-size: clamp(28px, 4.5vw, 42px); }

  .tracks-inner              { gap: 50px; margin: 0 auto; width: 100%; flex-direction: column; align-items: center; }

  .carousel                  { width: clamp(396px, 55vw, 506px); height: clamp(396px, 55vw, 506px); }
  .carousel-item             { width: clamp(132px, 17.6vw, 165px); height: clamp(132px, 17.6vw, 165px); margin: calc(clamp(132px, 17.6vw, 165px) * -0.5) 0 0 calc(clamp(132px, 17.6vw, 165px) * -0.5); }
  .carousel-item img         { width: clamp(90px, 12vw, 116px); height: clamp(90px, 12vw, 116px); }
  .carousel-item:nth-child(1) { transform: rotateY(0deg)   translateZ(clamp(207px, 28.6vw, 264px)); }
  .carousel-item:nth-child(2) { transform: rotateY(90deg)  translateZ(clamp(207px, 28.6vw, 264px)); }
  .carousel-item:nth-child(3) { transform: rotateY(180deg) translateZ(clamp(207px, 28.6vw, 264px)); }
  .carousel-item:nth-child(4) { transform: rotateY(270deg) translateZ(clamp(207px, 28.6vw, 264px)); }
}


/* ─────────────────────────────────────────────────────────────────────────────
   OVERRIDE │ 1024px to 1439px
   Paste at the very bottom of your CSS, above the reduced-motion rule.
   ───────────────────────────────────────────────────────────────────────────── */


/*-------------- 1024px – 1231px--------- */
@media (min-width: 1025px) and (max-width: 1231px) {


    /*HIDE SOCIAL ICONS*/
    .social-icons-top { display: none; }


  .hero-content .site-logo {
    transform: translateX(-150px) translateY(-10px) scale(1.4);
  }
  .hero-subtitle-1 {
    transform:
      translateX(clamp(125px, calc(125px + (1232px - 100vw) * 0.1202), 150px))
      translateY(clamp(70px, calc(70px + (1232px - 100vw) * 0.1923), 110px))
      scale(1.4);
  }
  .hero-subtitle-2 {
    transform:
      translateX(clamp(5px, calc(5px + (1232px - 100vw) * 0.2163), 50px))
      translateY(clamp(70px, calc(70px + (1232px - 100vw) * 0.1923), 110px))
      scale(1.4);
  }
  .shpe-logo {
    transform:
      translateX(clamp(-320px, calc(-320px + (1232px - 100vw) * 0.0481), -310px))
      translateY(clamp(100px, calc(100px + (1232px - 100vw) * 0.1442), 130px))
      scale(6.2);
  }
  .hero-apply-wrap {
    --heroApplyX: clamp(400px, calc(450px - (1232px - 100vw) * 0.2404), 450px);
    --heroApplyY: 300px;
  }
}

/*------------- 1232 TO 1439-------------*/




/*------------- 1232 TO 1439 (FINAL) -------------*/
@media (min-width: 1232px) and (max-width: 1439px) {

  /* ✅ IMPORTANT: move the *whole* subtitles group (prevents overlap as width shrinks) */
  .hero-subtitles{
    transform:
      translateX(clamp(-405px, calc(-405px + (1439px - 100vw) * 0.4106), -320px))
      translateY(clamp(-390px, calc(-390px + (1439px - 100vw) * 0.3382), -320px));
  }

  .hero-content .site-logo {
    transform:
      translateX(clamp(-235px, calc(-235px + (1439px - 100vw) * 0.4106), -150px))
      translateY(-10px)
      scale(clamp(1.2, calc(1.2 + (1439px - 100vw) * 0.000966), 1.4));
  }

  .hero-subtitle-1 {
    transform:
      translateX(clamp(0px, calc(0px + (1439px - 100vw) * 0.6039), 125px))
      translateY(clamp(0px, calc(0px + (1439px - 100vw) * 0.3382), 70px))
      scale(clamp(1.0, calc(1.0 + (1439px - 100vw) * 0.001932), 1.4));
  }

  .hero-subtitle-2 {
    transform:
      translateX(clamp(-100px, calc(-100px + (1439px - 100vw) * 0.5072), 5px))
      translateY(clamp(-15px, calc(-15px + (1439px - 100vw) * 0.4106), 70px))
      scale(clamp(1.0, calc(1.0 + (1439px - 100vw) * 0.001932), 1.4));
  }

  .shpe-logo {
    transform:
      translateX(clamp(-380px, calc(-380px + (1439px - 100vw) * 0.2899), -320px))
      translateY(clamp(-80px, calc(-80px + (1439px - 100vw) * 0.8696), 100px))
      scale(6.2);
  }

  .hero-apply-wrap {
    --heroApplyX: 450px;
    --heroApplyY: clamp(170px, calc(170px + (1439px - 100vw) * 0.6280), 300px);
  }
}



















/*
@media (min-width: 1232px) and (max-width: 1439px) {
  .hero-content .site-logo {
    transform:
      translateX(clamp(-235px, calc(-235px + (1439px - 100vw) * 0.4106), -150px))
      translateY(-10px)
      scale(clamp(1.2, calc(1.2 + (1439px - 100vw) * 0.000966), 1.4));
  }
  .hero-subtitle-1 {
    transform:
      translateX(clamp(0px, calc(0px + (1439px - 100vw) * 0.6039), 125px))
      translateY(clamp(0px, calc(0px + (1439px - 100vw) * 0.3382), 70px))
      scale(clamp(1.0, calc(1.0 + (1439px - 100vw) * 0.001932), 1.4));
  }
  .hero-subtitle-2 {
    transform:
      translateX(clamp(-100px, calc(-100px + (1439px - 100vw) * 0.5072), 5px))
      translateY(clamp(-15px, calc(-15px + (1439px - 100vw) * 0.4106), 70px))
      scale(clamp(1.0, calc(1.0 + (1439px - 100vw) * 0.001932), 1.4));
  }
  .shpe-logo {
    transform:
      translateX(clamp(-380px, calc(-380px + (1439px - 100vw) * 0.2899), -320px))
      translateY(clamp(-80px, calc(-80px + (1439px - 100vw) * 0.8696), 100px))
      scale(6.2);
  }
  .hero-apply-wrap {
    --heroApplyX: 450px;
    --heroApplyY: clamp(170px, calc(170px + (1439px - 100vw) * 0.6280), 300px);
  }
}
*/







/*--------------------ADJUST FOR 1280-1340-------------------
@media (min-width: 1280px) and (max-width: 1340px){
  .hero-content .site-logo {
    transform: translateX(-150px) translateY(-10px) scale(1.4);
  }
  .hero-subtitle-1 {
    transform:
      translateX(clamp(125px, calc(125px + (1232px - 100vw) * 0.1202), 150px))
      translateY(clamp(70px, calc(70px + (1232px - 100vw) * 0.1923), 110px))
      scale(1.4);
  }
  .hero-subtitle-2 {
    transform:
      translateX(clamp(5px, calc(5px + (1232px - 100vw) * 0.2163), 50px))
      translateY(clamp(70px, calc(70px + (1232px - 100vw) * 0.1923), 110px))
      scale(1.4);
  }
  .shpe-logo {
    transform:
      translateX(clamp(-320px, calc(-320px + (1232px - 100vw) * 0.0481), -310px))
      translateY(clamp(100px, calc(100px + (1232px - 100vw) * 0.1442), 130px))
      scale(6.2);
  }
  .hero-apply-wrap {
    --heroApplyX: clamp(400px, calc(450px - (1232px - 100vw) * 0.2404), 450px);
    --heroApplyY: 300px;
  }

}



*/














/* ─────────────────────────────────────────────────────────────────────────────
   MQ-5 │ 1440px – 1869px  (wide desktop)
   hero-pack stays at translateX(0). All child X-offsets are vw-based so the
   entire composition — logo, subtitles, SHPE logo, apply button — scales as
   one rigid unit proportional to viewport width, just as it looks at 1870px.
   Math anchor: at 1870px →  -500px = -26.74vw | -300px = -16.04vw
                              -103px = -5.51vw  |  550px =  29.41vw
   ───────────────────────────────────────────────────────────────────────────── */
@media (min-width: 1440px) and (max-width: 1869px) {

  body { background-size: cover; background-position: center top; }

  /* Pack stays centred — no rightward drift */
  .hero-pack {
    transform: translateX(0px) !important;
  }

  /* Logo shifts left by the same proportion as at 1870px */
  .hero-content .site-logo {
    transform: translateX(-16.04vw) translateY(0px);
  }

  /* Subtitles wrapper: X and Y both scale with vw */
  .hero-subtitles {
    transform: translateX(-26.74vw) translateY(-26.74vw);
  }

  /* Small rightward nudge to match 1870px relative alignment */
    .hero-subtitle-1 { transform: translateX(clamp(0px, calc(47px - (100vw - 1440px) * 0.109), 47px)) translateY(0px); }
    .hero-subtitle-2 { transform: translateX(clamp(-100px, calc(-55px - (100vw - 1440px) * 0.1047), -55px)) translateY(-15px); }

  /* SHPE logo: same -26.74vw as subtitles — mirrors apply-button behaviour */
  .shpe-logo {
    transform: translateX(-26.74vw) translateY(-100px) scale(6.6);
  }

  /* Apply button: 550px at 1870px = 29.41vw — stays centred as width narrows */
  .hero-apply-wrap { --heroApplyX: 29.41vw; --heroApplyY: 120px; }

}


/* ─────────────────────────────────────────────────────────────────────────────
   OVERRIDE │ min-width: 1920px  (1920×1080 pin)
   Paste at the very bottom of your CSS, above the reduced-motion rule.
   Tweak the transform values until it looks perfect on your screen.
   ───────────────────────────────────────────────────────────────────────────── */
@media (min-width: 1870px) {

    body {
  background-size: cover;
  background-position: center -250px; /* adjust this value */
  background-repeat: no-repeat;
}

  .hero-pack {
    transform: translateX(0px) ;
  }

  .hero-content .site-logo  { transform: translateX(-300px) translateY(0px); }
  .hero-subtitles            { transform: translateX(-500px) translateY(-500px); }
  .hero-subtitle-1           { transform: translateX(0px) translateY(0px); }
  .hero-subtitle-2           { transform: translateX(-103px) translateY(-15px); }
  .shpe-logo                 { transform: translateX(-500px) translateY(-100px) scale(6.6); }

  /* Center button by cancelling parent's X offset; push down with Y */
  .hero-apply-wrap           { --heroApplyX: 550px; --heroApplyY: 120px; }

}

/*APPLY BUTTON EFFECT ALWAYS ACTIVE ON MOBILE AND IPAD*/
@media (max-width: 1024px) {
  .hero-apply-btn .icon-Container { opacity: 1; transform: translateX(0); }
  .hero-apply-btn .arrow { animation: dottedArrow 0.9s ease-in-out infinite; }
  .hero-apply-btn.Btn-Container {
    text-shadow:
      0 0 18px rgba(255,236,78,0.9),
      0 0 40px rgba(255,236,78,0.8),
      0 0 80px rgba(255,236,78,0.6);

  }

.hero-apply-btn.Btn-Container   { flex-direction: column; gap: 4px; }
.hero-apply-btn .icon-Container { opacity: 1 !important; transform: rotate(90deg) translateX(0) !important; }
.hero-apply-btn .arrow          { animation: dottedArrow 0.9s ease-in-out infinite !important; }

}

@media (min-width: 1440px) {
  .carousel-container {
    transform: translateX(-200px);
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

