@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #09090b;
    --accent-color: #38bdf8;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --card-bg: rgba(18, 18, 23, 0.6);
}

a, img {
    -webkit-user-drag: none;
    user-drag: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.05) 0%, transparent 60%), #09090b;
    z-index: -1;
    pointer-events: none;
}

svg {
    -webkit-user-drag: none;
}

.top-header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    padding: 0 4%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    -webkit-user-drag: none;
}

.top-header.header-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.monolith-header {
    pointer-events: auto;
    background: rgba(18, 18, 23, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.store-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: inline-block;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.store-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
    -webkit-user-drag: none;
}

.store-brand:hover {
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links a.nav-item {
    position: relative;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: color 0.2s ease;
}

.nav-links a.nav-item:hover,
.nav-links a.nav-item.active {
    color: var(--text-main);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: var(--text-main);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 18, 23, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover, .btn-secondary:hover {
    color: var(--text-main);
    border-color: var(--border-hover);
    background: rgba(18, 18, 23, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    padding: 8px;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: bounceArrow 2s infinite;
    transition: stroke 0.2s ease, transform 0.2s ease;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(2px);
    }
}

.scroll-indicator:hover svg {
    stroke: var(--text-main);
    transform: scale(1.1);
}

.summary-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 4%;
}

.showcase-wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
    text-align: center;
}

.collage-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collage-box {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    height: 460px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-box:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.collage-box-header {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(18, 18, 23, 0.4);
    letter-spacing: -0.01em;
    z-index: 5;
}

.collage-box-body {
    position: relative;
    width: 100%;
    height: calc(100% - 53px);
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: slideLeft 24s linear infinite;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slide-item {
    width: 380px;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    text-decoration: none;
    padding-right: 6px;
}

.slide-item-inner {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.slide-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.hover-prompt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
    z-index: 10;
    text-decoration: none;
}

.collage-box:hover .hover-prompt-overlay {
    opacity: 1;
    visibility: visible;
}

.prompt-badge {
    font-family: 'Inter', sans-serif;
    background: rgba(18, 18, 23, 0.88);
    border: 1px solid var(--border-subtle);
    padding: 12px 22px;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
    transform: scale(0.96);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, color 0.25s ease;
}

.collage-box:hover .prompt-badge {
    transform: scale(1);
    border-color: var(--border-hover);
    color: var(--text-main);
}

.prompt-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.25s ease;
}

.prompt-badge:hover svg {
    transform: translateX(3px);
    stroke: var(--accent-color);
}

footer {
    width: 100%;
    padding: 28px 4%;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.825rem;@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #09090b;
    --accent-color: #38bdf8;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --card-bg: rgba(18, 18, 23, 0.6);
}

a, img {
    -webkit-user-drag: none;
    user-drag: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.05) 0%, transparent 60%), #09090b;
    z-index: -1;
    pointer-events: none;
}

svg {
    -webkit-user-drag: none;
}

.top-header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    padding: 0 4%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    -webkit-user-drag: none;
}

.top-header.header-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.monolith-header {
    pointer-events: auto;
    background: rgba(18, 18, 23, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.store-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: inline-block;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.store-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
    -webkit-user-drag: none;
}

.store-brand:hover {
    color: var(--accent-color);
}

/* === UPDATED NAVIGATION CSS === */
.nav-links {
    list-style: none;
    display: flex;
    gap: 8px; /* Reduced gap since the padding now creates space */
}

.nav-links a.nav-item {
    position: relative;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    padding: 10px 16px; /* Creates the large clickable hitbox */
    border-radius: 8px; /* Rounds the edges for the hover background */
    transition: color 0.2s ease, background-color 0.2s ease; /* Added background transition */
}

.nav-links a.nav-item:hover,
.nav-links a.nav-item.active {
    color: var(--text-main);
    background-color: var(--border-subtle); /* Adds a nice subtle background on hover */
}
/* ============================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: var(--text-main);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 18, 23, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover, .btn-secondary:hover {
    color: var(--text-main);
    border-color: var(--border-hover);
    background: rgba(18, 18, 23, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    padding: 8px;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: bounceArrow 2s infinite;
    transition: stroke 0.2s ease, transform 0.2s ease;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(2px);
    }
}

.scroll-indicator:hover svg {
    stroke: var(--text-main);
    transform: scale(1.1);
}

.summary-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 4%;
}

.showcase-wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
    text-align: center;
}

.collage-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collage-box {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    height: 460px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-box:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.collage-box-header {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(18, 18, 23, 0.4);
    letter-spacing: -0.01em;
    z-index: 5;
}

.collage-box-body {
    position: relative;
    width: 100%;
    height: calc(100% - 53px);
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: slideLeft 24s linear infinite;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slide-item {
    width: 380px;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    text-decoration: none;
    padding-right: 6px;
}

.slide-item-inner {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.slide-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.hover-prompt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
    z-index: 10;
    text-decoration: none;
}

.collage-box:hover .hover-prompt-overlay {
    opacity: 1;
    visibility: visible;
}

.prompt-badge {
    font-family: 'Inter', sans-serif;
    background: rgba(18, 18, 23, 0.88);
    border: 1px solid var(--border-subtle);
    padding: 12px 22px;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
    transform: scale(0.96);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, color 0.25s ease;
}

.collage-box:hover .prompt-badge {
    transform: scale(1);
    border-color: var(--border-hover);
    color: var(--text-main);
}

.prompt-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.25s ease;
}

.prompt-badge:hover svg {
    transform: translateX(3px);
    stroke: var(--accent-color);
}

footer {
    width: 100%;
    padding: 28px 4%;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.825rem;
    background: rgba(9, 9, 11, 0.8);
}

footer .links {
    display: flex;
    gap: 20px;
}

/* === UPDATED FOOTER LINKS === */
footer .links a {
    cursor: pointer;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

footer .links a:hover {
    color: var(--text-main);
}
/* ============================== */

@media (max-width: 1024px) {
    .collage-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
}
    background: rgba(9, 9, 11, 0.8);
}

footer .links {
    display: flex;
    gap: 20px;
}

footer .links span {
    cursor: pointer;
    transition: color 0.2s ease;
}

footer .links span:hover {
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .collage-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
}