:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --green: #2ecc71;
    --blue: #3498db;
    --font-main: 'Clash Display', sans-serif;
    --font-clash: 'Clash Display', sans-serif;
    --font-orbitron: 'Orbitron', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[style*='"Clash Display"'] {
    font-family: 'Clash Display', sans-serif !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    /* Carbon mesh background pattern */
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    pointer-events: none;
    z-index: -1;
}

.background-grid .line {
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 12vw;
    position: relative;
    z-index: 10;
}

.time-element {
    font-family: var(--font-clash);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0px;
}

.time-element .muted {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.time-element .bold {
    color: rgb(255, 255, 255);
}

.logo-container .logo {
    height: 30px;
}

.apply-btn {
    text-decoration: none;
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-clash);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    transition: transform 0.5s ease, color 0.5s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.apply-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(100%);
}

.apply-btn:hover {
    transform: scale(1.05);
    color: var(--bg-color); /* Siyah zemin efekti yaratmak için metin siyah (#050505) olur */
}

.apply-btn:hover::before {
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-orbitron);
    font-size: 18vw;
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -3px;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
}

/* Features Row */
.features-row {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    margin-bottom: 5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1rem;
}

.feature-icon.green { stroke: var(--green); }
.feature-icon.white { stroke: var(--text-primary); }
.feature-icon.blue { stroke: var(--blue); }

.feature-text {
    font-size: 0.75rem;
    line-height: 1.4;
    letter-spacing: 1px;
}

.feature-text strong {
    font-weight: 700;
}

.feature-text .muted {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Image container */
.hero-image-container {
    width: 80%;
    max-width: 1400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
}

/* Steps Section */
.steps-section {
    padding: 5rem 12vw 10rem 12vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.steps-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
    font-family: var(--font-clash);
    font-size: 14px;
    font-weight: 500;
}

.steps-header .header-left,
.steps-header .header-center,
.steps-header .header-right {
    flex: 1;
}

.steps-header .header-left { text-align: left; }
.steps-header .header-center { text-align: center; }
.steps-header .header-right { text-align: right; }

.steps-header .muted-text {
    color: rgb(128, 128, 128);
}

.steps-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.steps-title {
    font-family: var(--font-clash);
    font-size: 90px;
    font-weight: 600;
    line-height: 87px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.steps-title span {
    display: inline-block;
}

.steps-desc {
    font-family: var(--font-inter);
    color: rgb(128, 128, 128);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    max-width: 600px;
    margin: 0 auto;
}

.stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
    align-items: center;
    justify-items: center;
}

.stepper-line {
    position: absolute;
    top: 50%;
    left: 16.666%;
    width: 66.666%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
    transform: translateY(-50%);
}

.step-circle {
    width: 32px;
    height: 32px;
    background-color: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.step-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05); /* matching styling */
    padding: 4rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: background-color 0.3s ease;
}

.step-card:nth-child(1) { border-right: none; }
.step-card:nth-child(2) { border-right: none; }

.step-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.card-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
}

.card-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.card-dots .dot.active {
    background-color: #fff;
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.card-title {
    font-family: var(--font-clash);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 24px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.card-desc {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 500;
    line-height: 23.4px;
    color: rgb(128, 128, 128);
}

/* Showcase Section */
.showcase-section {
    padding: 5rem 12vw 10rem 12vw;
    position: relative;
    z-index: 10;
}

.showcase-hero {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Changed from flex-end to better align visually */
    margin-bottom: 8rem;
    gap: 4rem; /* Ensure space between title and desc */
}

.showcase-title {
    font-family: var(--font-clash);
    font-size: 108px;
    font-weight: 600;
    line-height: 107px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    letter-spacing: -1.6px;
    flex: 1; /* Let it take needed space */
}

.showcase-title span {
    display: inline-block;
}

.showcase-desc-container {
    flex: 0 0 300px; /* Fixed width for desc container to keep it narrow on right */
    padding-top: 15rem; /* Push text down to align with bottom of title more naturally */
}

.showcase-desc {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: rgb(255, 255, 255);
    text-align: left;
}

.showcase-gallery {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    min-height: 220vh;
    margin-top: 2rem;
}

.gallery-item-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #000;
    border-radius: 10px;
    padding-bottom: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Positioning the masonry/staggered layout */
.item-1 { width: 44%; top: 0; left: 0; z-index: 2; }
.item-2 { width: 36%; top: 12%; right: 2%; z-index: 1; }
.item-3 { width: 48%; top: 40%; left: 24%; z-index: 3; }
.item-4 { width: 40%; top: 70%; left: 5%; z-index: 2; }
.item-5 { width: 45%; top: 82%; right: 0; z-index: 1; }

.gallery-item-card:hover {
    transform: translateY(-5px);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item-card:hover .gallery-grid-img {
    transform: scale(1.05);
}

.gallery-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-item-card:hover .gallery-card-bottom {
    opacity: 1;
}

.gallery-card-indicators {
    display: flex;
    gap: 6px;
}

.gallery-card-indicators .indicator {
    width: 24px;
    height: 4px;
    border-radius: 13px;
    background-color: #292929;
    transition: background-color 0.3s ease;
}

.gallery-card-indicators .indicator.active {
    background-color: #fff;
}

.gallery-item-card:hover .gallery-card-indicators .indicator.active {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.gallery-card-arrows {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg); 
    overflow: hidden; 
}

.arrow-svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.gallery-item-card:hover .arrow-svg {
    transform: translateY(-4px); 
}

/* More Crew Section */
.more-crew-section {
    padding: 5rem 12vw 10rem 12vw;
    position: relative;
    z-index: 10;
}

.more-crew-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
    position: relative;
    padding-bottom: 5rem;
}

.more-crew-title-group {
    text-align: center;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.more-crew-title-small {
    font-family: var(--font-clash);
    font-size: 90px;
    font-weight: 600;
    line-height: 70px;
}

.more-crew-title-small span, 
.more-crew-title-large span {
    display: inline-block;
}

.more-crew-title-large {
    font-family: var(--font-clash);
    font-size: 120px;
    font-weight: 600;
    line-height: 90px;
    letter-spacing: -1.6px;
}

.sliding-image-container {
    position: relative;
    width: 380px;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Adds a shadow since it pops over text */
    margin-top: 15rem; /* Forces space between top title and picture before scroll */
    margin-bottom: 12rem; /* Yeterli boşluk bırakıyoruz ki büyüdüğünde aşağıdaki metne girmesin */
}

.sliding-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.more-crew-text-section {
    z-index: 2;
    position: relative;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.more-crew-subtitle {
    font-family: var(--font-clash);
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    color: rgb(255, 255, 255);
    margin-bottom: 3rem;
}

.more-crew-desc {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 23.4px;
    letter-spacing: 0px;
    text-align: center;
    color: rgb(128, 128, 128);
    margin-bottom: 5rem;
}

/* Image Break Section */
.image-break-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 12vw 10rem 12vw;
    position: relative;
    z-index: 10;
}

.image-break-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 80vh; /* Adjust height appropriately */
    border-radius: 20px;
    overflow: hidden;
    /* Optional edge border to match the design */
    border: 1px solid rgba(255,255,255,0.05);
}

.parallax-break-img {
    width: 100%;
    height: 120%; /* To allow parallax movement */
    object-position: center center;
    object-fit: cover;
    display: block;
    position: absolute;
    top: -10%; /* Center the initial offset */
    left: 0;
}

/* Message Section (05) */
.message-section {
    width: 100%;
    position: relative;
    z-index: 10;
    /* min-height: 250vh; kaldırıldı - içerik kadar uzayacak */
}

.message-content-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 0 12vw;
}

.message-text-group {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 05 | //CREW'DEN MESAJ header'ını message-section içine aldık, bu sayede diğerleriyle birebir aynı hizada ve kaydırırken tepede sabit kalıyor */
.message-content-wrapper .steps-header {
    position: absolute;
    top: 5rem;
    left: 12vw;
    right: 12vw;
    width: auto;
    margin-bottom: 0;
}

.message-images-gallery {
    position: relative;
    z-index: 2;
    padding: 0 5vw 35vh 5vw; /* Alt taraftaki boşluk (35vh), image-15 tam ortaya geldiğinde sticky kısmını çözmek için ayarlandı */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15rem; /* Boşlukları daralt */
    margin-top: -15vh;
}

.msg-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px; /* Yatay mesafeleri azaltmak için 1400px'den 900px'e düşürüldü */
}

.msg-col {
    display: flex;
}

.msg-col:nth-child(1) {
    justify-content: flex-start;
}

.msg-col:nth-child(2) {
    justify-content: flex-end;
}

/* 2. ve 4. satırdaki tekli resimleri ortala */
.msg-row:nth-child(2), .msg-row:nth-child(4) {
    justify-content: center;
}
.msg-row:nth-child(2) .msg-col, .msg-row:nth-child(4) .msg-col {
    justify-content: center;
}

.msg-col img {
    width: 100%;
    max-width: 240px; /* Resimleri iyice ufalt - sticker/kutu havası varsın */
    height: auto;
    /* Optional: fixed height for uniform look, or just depend on aspect ratio */
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8); /* Gölgelerini artırarak popup efekti ver */
}

/* En alttaki image-15 dördüncü satırda, onu vurgulamak için büyütüyoruz */
.msg-row:nth-child(4) .msg-col img {
    max-width: 450px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9);
}

.message-title {
    font-family: var(--font-clash);
    font-size: 48px;
    font-weight: 600;
    line-height: 57.8px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.message-signature-img {
    height: 70px;
    object-fit: contain;
    margin-top: 1rem;
    opacity: 0.9;
}




/* =========================================
   RULES SECTION
========================================= */
.rules-section {
    position: relative;
    width: 100%;
    color: var(--text-primary);
    padding-top: 15vh;
    padding-bottom: 20vh;
    z-index: 10;
}

.rules-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 18vw 0 8vw; /* Sağ taraf boşaltıldı, sol tarafa yaklaştırıldı */
    box-sizing: border-box;
    align-items: flex-start;
}

/* LEFT PANEL (Sticky) */
.rules-left {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 25%; /* Sabit kısım küçültüldü */
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
}

.rules-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-inter), sans-serif;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 30vh;
    width: 100%;
}

.rules-title-wrapper {
    display: flex;
    align-items: center;
}

.rules-main-title {
    font-family: var(--font-clash), sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
}

/* RIGHT PANEL (Scrollable) */
.rules-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
}

.rule-category {
    margin-bottom: 5rem;
}

.rule-cat-top {
    height: 1px;
    width: 100%;
    background-color: #333;
    margin-bottom: 3rem;
}

.rule-cat-title {
    font-family: var(--font-clash), sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: #fff;
    text-transform: uppercase;
}

.rule-cat-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-clash), sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3rem;
    color: gray;
    text-transform: uppercase;
}

.rule-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rule-list p {
    font-family: "Inter", "Inter Display", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0;
}

/* =========================================
   SCROLLING GALLERY SECTION
========================================= */
.scrolling-gallery-section {
    position: relative;
    width: 100%;
    background: transparent;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scrolling-gallery-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    /* Adding subtle gradient mask like the reference */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scrolling-gallery-track {
    display: inline-flex;
    width: max-content;
    animation: scrollGallery 80s linear infinite;
}

.scrolling-gallery-wrapper {
    display: inline-flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.scrolling-gallery-wrapper img {
    height: 200px;
    width: 350px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0b0b0b;
    pointer-events: none;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.final-image-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 12vw 5rem 12vw;
    position: relative;
    z-index: 10;
}

.final-image-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.final-image {
    width: 100%;
    height: auto;
    object-position: center;
    display: block;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
    padding: 10rem 12vw 15rem 12vw;
    position: relative;
    z-index: 10;
    color: var(--text-primary);
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
}

.faq-title {
    font-family: var(--font-clash);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 6rem;
    letter-spacing: -1.5px;
}

.faq-list {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
}

.faq-item {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.faq-num {
    font-family: var(--font-clash);
    font-size: 14px;
    font-weight: 600;
    width: 60px;
    flex-shrink: 0;
}

.faq-question {
    font-family: var(--font-clash);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    flex-grow: 1;
    padding-right: 2rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    font-family: var(--font-inter);
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 60px;
    width: 100%;
    box-sizing: border-box;
}

.faq-answer.open {
    margin-top: 1rem;
    opacity: 1;
}

.faq-icon {
    font-family: var(--font-inter);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* Footer Section */
.site-footer {
    width: 100%;
    padding: 6rem 4rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 5vh;
}

.footer-cta-title {
    font-family: var(--font-clash);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 600;
    letter-spacing: -1.6px;
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
}

.footer-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 5rem;
}

.footer-center-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #f0f0f0; /* Fallback */
    background: transparent;
    color: #000;
    font-family: var(--font-clash);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    border: 3px solid #fff;
    transition: transform 0.5s ease, color 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0);
}

.footer-cta-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(100%);
}

.footer-cta-btn:hover {
    transform: scale(1.05);
    color: #fff;
}

.footer-cta-btn:hover::after {
    transform: translateY(0);
}

.footer-location, .footer-slogan {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-location {
    text-align: left;
}

.footer-slogan {
    text-align: right;
}

.footer-text-main {
    font-family: var(--font-clash);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.footer-text-sub {
    font-family: var(--font-clash);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #808080;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-link {
    font-family: var(--font-clash);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-giant-text-wrapper {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.footer-giant-text {
    font-family: var(--font-clash);
    font-size: clamp(110px, 24vw, 450px);
    font-weight: 600;
    line-height: 0.8;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: -2px;
    word-break: break-word;
    max-width: 100%;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    font-family: var(--font-clash);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.footer-scroll-top {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-scroll-top:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 1.5rem 4vw;
        flex-direction: column;
        gap: 1.5rem;
    }

    .time-element {
        font-size: 14px;
    }

    .apply-btn {
        font-size: 14px;
        padding: 0.5rem 1rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 12vw;
        margin-bottom: 2rem;
    }

    /* Features Row */
    .features-row {
        width: 90%;
        flex-direction: column;
        gap: 2rem;
    }

    .feature-text {
        font-size: 0.65rem;
    }

    /* Hero Image */
    .hero-image-container {
        width: 90%;
        margin-bottom: 5rem;
        border-radius: 12px;
    }

    /* Steps Section */
    .steps-section {
        padding: 3rem 4vw 5rem 4vw;
    }

    .steps-header {
        flex-direction: column;
        gap: 1rem;
        font-size: 12px;
        margin-bottom: 4rem;
    }

    .steps-header .header-left,
    .steps-header .header-center,
    .steps-header .header-right {
        text-align: center !important;
    }

    .steps-title {
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 1rem;
    }

    .steps-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .stepper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .stepper-line {
        display: none;
    }

    .cards-container {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .step-card {
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding: 2rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .card-title {
        font-size: 18px;
    }

    .card-desc {
        font-size: 14px;
    }

    /* Showcase Section */
    .showcase-section {
        padding: 3rem 4vw 5rem 4vw;
    }

    .showcase-hero {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
        align-items: flex-start;
    }

    .showcase-title {
        font-size: 48px;
        line-height: 48px;
    }

    .showcase-desc-container {
        flex: 1;
        padding-top: 0;
    }

    .showcase-desc {
        font-size: 14px;
        text-align: left;
    }

    .showcase-gallery {
        min-height: auto;
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .gallery-item-card {
        position: static !important;
        width: 100% !important;
        max-width: 350px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: auto !important;
    }

    .item-1, .item-2, .item-3, .item-4, .item-5 {
        position: static !important;
        width: 100% !important;
        max-width: 350px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }

    /* More Crew Section */
    .more-crew-section {
        padding: 3rem 4vw 5rem 4vw;
    }

    .more-crew-content {
        margin-top: 2rem;
    }

    .more-crew-title-small {
        font-size: 48px;
        line-height: 48px;
    }

    .more-crew-title-large {
        font-size: 60px;
        line-height: 60px;
    }

    .sliding-image-container {
        width: 100%;
        max-width: 280px;
        height: 400px;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .more-crew-subtitle {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }

    .more-crew-desc {
        font-size: 14px;
        margin-bottom: 2rem;
    }

    /* Image Break Section */
    .image-break-section {
        padding: 0 4vw 5rem 4vw;
    }

    .image-break-container {
        height: 50vh;
    }

    /* Message Section */
    .message-content-wrapper {
        height: auto;
        padding: 2rem 4vw;
        position: static;
    }

    .message-content-wrapper .steps-header {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-bottom: 2rem;
    }

    .message-text-group {
        padding: 2rem 0;
    }

    .message-title {
        font-size: 28px;
        line-height: 36px;
    }

    .message-images-gallery {
        padding: 2rem 0;
        gap: 2rem;
        margin-top: 0;
    }

    .msg-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .msg-col {
        justify-content: center !important;
        width: 100%;
    }

    .msg-col img {
        max-width: 200px;
    }

    .msg-row:nth-child(4) .msg-col img {
        max-width: 250px;
    }

    .message-signature-img {
        height: 50px;
    }

    /* Rules Section */
    .rules-section {
        padding-top: 5rem;
        padding-bottom: 10rem;
    }

    .rules-container {
        flex-direction: column;
        padding: 0 4vw;
        align-items: stretch;
    }

    .rules-left {
        position: static;
        height: auto;
        width: 100%;
        padding-top: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #333;
    }

    .rules-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 12px;
    }

    .rules-main-title {
        font-size: clamp(1rem, 2vw, 1.5rem);
    }

    .rules-right {
        width: 100%;
        padding-top: 0;
    }

    .rule-cat-title {
        font-size: 20px;
    }

    .rule-list p {
        font-size: 14px;
    }

    /* Scrolling Gallery */
    .scrolling-gallery-wrapper img {
        height: 120px;
        width: 200px;
    }

    /* Final Image */
    .final-image-section {
        padding: 0 4vw 3rem 4vw;
    }

    /* FAQ Section */
    .faq-section {
        padding: 5rem 4vw 10rem 4vw;
    }

    .faq-title {
        font-size: clamp(28px, 4vw, 40px);
        margin-bottom: 3rem;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-item {
        padding: 1.5rem 0;
    }

    .faq-num {
        font-size: 12px;
        width: 40px;
    }

    .faq-question {
        font-size: 14px;
        padding-right: 1rem;
    }

    .faq-answer {
        font-size: 14px;
        padding-left: 40px;
    }

    /* Footer */
    .site-footer {
        padding: 3rem 2rem 1rem 2rem;
    }

    .footer-cta-title {
        font-size: clamp(40px, 8vw, 80px);
        margin-bottom: 1.5rem;
    }

    .footer-info-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        align-items: center;
    }

    .footer-location, .footer-slogan {
        text-align: center;
        align-items: center;
    }

    .footer-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 12px;
    }

    .footer-text-main, .footer-text-sub {
        font-size: 11px;
    }

    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer-giant-text {
        font-size: clamp(60px, 18vw, 200px);
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-width: 100%;
        font-size: 12px;
        text-align: center;
    }
}
