@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&display=swap');

/* ======================
   Design System & Variables
   ====================== */
:root {
    --color-bg: #f5f5f5;
    --color-white: #ffffff;
    --color-black: #111111;
    --color-dark: #0d0d0d;
    --color-gray-dark: #333333;
    --color-gray-mid: #555555;
    --color-gray-light: #e1e1e1;
    --color-accent: #f1b91c;
    --color-accent-hover: #d4a218;
    --color-released: #1db954;

    --font-primary: 'Satoshi', 'Inter', sans-serif;
    --font-heading: 'Satoshi', 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 7rem;

    --radius-sm: 3px;
    --radius-md: 6px;

    --nav-height: 72px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================
   Base
   ====================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

/* ======================
   Toast Notification
   ====================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--color-accent);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ======================
   Navigation
   ====================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}

/* Over a dark section — white text, dark background */
.navbar.hero-passed {
    background: #0d0d0d;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar.hero-passed .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.navbar.hero-passed .logo-dark {
    display: none;
}

.navbar.hero-passed .logo-light {
    display: block;
}

/* Over a light section — black text, white background */
.navbar.hero-passed.nav-on-light {
    background: #ffffff;
    box-shadow: 0 1px 0 #e5e5e5;
}

.navbar.hero-passed.nav-on-light .nav-links a {
    color: #111;
}

.navbar.hero-passed.nav-on-light .nav-links a::after {
    background: var(--color-accent);
}

.navbar.hero-passed.nav-on-light .logo-dark {
    display: block;
}

.navbar.hero-passed.nav-on-light .logo-light {
    display: none;
}

.navbar.hero-passed.nav-on-light .nav-cta {
    background: var(--color-accent);
    color: #000 !important;
    border-color: var(--color-accent);
}

.navbar.hero-passed.nav-on-light .nav-cta:hover {
    background: transparent;
    color: var(--color-accent) !important;
    border-color: var(--color-accent);
}

.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-group-left {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-logo img {
    height: 52px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 0.4rem 0;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-links a:hover {
    color: #000;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--color-accent);
    color: #000 !important;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all var(--transition);
    border: 2px solid var(--color-accent);
}

.nav-cta:hover,
.navbar.hero-passed .nav-cta:hover {
    background: transparent;
    color: var(--color-accent) !important;
}

.navbar.hero-passed .nav-cta {
    color: #000 !important;
}

/* ======================
   Hero Section
   ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease-out;
    will-change: transform;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.4;
}

.hero-badge::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 7.5rem);
    line-height: 0.92;
    margin-bottom: 1.75rem;
    color: #111;
    max-width: 900px;
}

.hero-title-accent {
    color: var(--color-accent);
    -webkit-text-stroke: 0px;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 560px;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}



/* ======================
   Buttons
   ====================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-accent);
    color: #000;
    padding: 1rem 2.5rem;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(0, 0, 0, 0.3);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: #111;
    color: #111;
    background: rgba(0, 0, 0, 0.06);
}

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

/* ======================
   Section Shared
   ====================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) 3rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fff;
    margin: 0;
}

/* Light section variant */
.section-title--dark {
    color: var(--color-black);
}

.section-label--dark {
    color: var(--color-accent-hover);
}

/* ======================
   About Section
   ====================== */
.about {
    position: relative;
    background-color: var(--color-dark);
}

.about .section-label {
    color: var(--color-accent);
}

.about .section-title {
    color: #fff;
}

.about .section-header {
    margin-bottom: 7rem;
}

.about-content-centered {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.about-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.about-text {
    font-size: 1.45rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1.25rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-value-line {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--color-accent) !important;
    margin-top: 2.5rem !important;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-transform: uppercase;
    border-left: 4px solid var(--color-accent);
    padding-left: 1.25rem;
}


/* ======================
   Games / Projects Section
   ====================== */
.projects {
    position: relative;
    background-color: #ffffff;
    background-color: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.projects .section-container {
    position: relative;
    z-index: 1;
}

.projects .section-label {
    color: var(--color-accent);
}

.projects .section-title {
    color: #fff;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.see-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
    align-self: flex-end;
    margin-bottom: 0.4rem;
}

.see-more-link:hover {
    color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.projects .game-card-desc-panel {
    color: rgba(255, 255, 255, 0.85);
}

/* Slider Container */
.games-slider-container {
    position: relative;
    width: 100%;
    perspective: 1500px;
}

.games-slider-track {
    position: relative;
    width: 100%;
    height: 720px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: transparent;
    border: none;
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: none;
}

.slider-arrow:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-50%) scale(1.15);
    border-color: transparent;
}

.prev-arrow {
    left: -130px;
}

.next-arrow {
    right: -130px;
}

.games-feature-showcase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);

    /* Default hidden state (far right) */
    opacity: 0;
    transform: translateX(30%) scale(0.85);
    z-index: 1;
    pointer-events: none;
}

/* Front active card */
.games-feature-showcase.card-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
    pointer-events: auto;
    transform-origin: center center;
}

/* Card peeking from the right (next) */
.games-feature-showcase.card-next {
    opacity: 0.6;
    transform: translateX(8%) scale(0.92);
    transform-origin: right center;
    z-index: 9;
    cursor: pointer;
    pointer-events: auto;
}

/* Card peeking further right (next next) */
.games-feature-showcase.card-next-next {
    opacity: 0.3;
    transform: translateX(16%) scale(0.84);
    transform-origin: right center;
    z-index: 8;
    pointer-events: none;
}

/* Card exiting to the left (prev) */
.games-feature-showcase.card-prev {
    opacity: 0;
    transform: translateX(-15%) scale(0.95);
    transform-origin: left center;
    z-index: 9;
    pointer-events: none;
}

.game-feature-banner {
    position: relative;
    width: 100%;
    height: 720px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.game-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.75) 45%,
            rgba(0, 0, 0, 0.1) 85%,
            transparent 100%);
}

.game-feature-content {
    position: relative;
    z-index: 2;
    padding: 5rem 6rem;
    width: 100%;
    max-width: 800px;
}

.game-feature-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-released);
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-released);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-released);
}

.game-feature-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.game-feature-desc {
    font-size: 1.35rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
}

.game-feature-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.g-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.4rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-massive {
    padding: 1.1rem 2.2rem;
    font-size: 0.9rem;
}

/* ======================
   Vision Section — Diagonal Split
   ====================== */
.vision {
    position: relative;
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
    overflow: hidden;
}

/* Full-width container vision layout */
.vision-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem;
    display: flex;
    flex-direction: column;
}

.vision-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-label {
    color: var(--color-accent-hover);
    display: block;
    margin-bottom: 1rem;
}

.vision-mega-title {
    font-size: clamp(4rem, 8vw, 7rem);
    color: #111;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.vision-lead-text {
    font-size: 1.45rem;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.85);
}

.vision-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.pillar-box {
    background: #f8f8f8;
    border-top: 4px solid var(--color-accent-hover);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.pillar-mega-num {
    position: absolute;
    right: 1rem;
    top: -1.5rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
    pointer-events: none;
    line-height: 1;
}

.pillar-box-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #111;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.pillar-box-desc {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

.vision-quote-banner {
    margin-top: 6rem;
    text-align: center;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 4rem 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.vision-cite-text {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-hover);
}

/* ======================
   Founder Section
   ====================== */
.founder {
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
}

.founder-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.founder-img-wrapper {
    border: 2px solid var(--color-accent);
    padding: 4px;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: transparent;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 42%;
    display: block;
    border-radius: 2px;
}

.founder-role-badge {
    display: inline-block;
    border: 1px solid var(--color-accent);
    color: var(--color-accent-hover);
    padding: 0.4rem 0.8rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    border-radius: 3px;
}

.founder-name {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #111;
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.founder-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
}

.founder-stats-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.founder-stat {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-num {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-accent-hover);
    line-height: 1.1;
    margin-bottom: 0.25rem;
    display: block;
    text-transform: uppercase;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.6);
}

.founder-stat-divider {
    width: 1px;
    height: 45px;
    background: rgba(0, 0, 0, 0.1);
}

/* ======================
   Contact Section
   ====================== */
.contact {
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact .section-label {
    color: var(--color-accent);
}

.contact .section-title {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-desc {
    font-size: 1.45rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #fff;
    transition: all var(--transition);
}

.social-icon:hover {
    border-color: var(--color-accent-hover);
    color: var(--color-accent-hover);
    background: rgba(241, 185, 28, 0.08);
}

.contact-form-container {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.6rem;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    font-weight: 400;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: border-color var(--transition), background var(--transition);
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(241, 185, 28, 0.04);
}

/* ======================
   Footer
   ====================== */
.footer {
    background: #060606;
    padding: 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
    height: 52px;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

.footer-social:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

.back-to-top:hover {
    color: var(--color-accent);
}

/* ======================
   Scroll Reveal
   ====================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================
   Responsive
   ====================== */
@media (max-width: 1200px) {
    .vision-centered {
        padding: 5rem 2rem;
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --spacing-xl: 5rem;
    }

    .about-content-centered,
    .founder-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-content-centered {
        gap: 3rem;
        text-align: center;
    }

    .about-logo {
        margin: 0 auto;
    }

    .founder-content {
        gap: 3rem;
    }

    .founder-img {
        height: 100%;
    }

    .vision-centered {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vision-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-quote-block {
        padding-top: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
    }

    .nav-container,
    .hero-content,
    .section-container,
    .vision-container,
    .footer-inner {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-bottom: 5rem;
    }

    .hero-title {
        font-size: 10.5vw;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content-centered {
        gap: 2rem;
    }

    .about-logo {
        max-width: 80%;
    }

    .games-slider-track,
    .game-feature-banner {
        height: 500px;
    }

    .game-feature-content {
        padding: 2rem 1.5rem;
    }

    .game-feature-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .game-feature-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slider-arrow {
        display: none;
    }

    .games-feature-showcase.card-next {
        transform: translateX(12%) scale(0.92);
    }

    .vision-container {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .vision-mega-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .vision-lead-text {
        font-size: 1.15rem;
    }

    .vision-pillars-grid {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .pillar-box {
        padding: 2.5rem 1.5rem;
    }

    .pillar-mega-num {
        font-size: 6rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .founder-img-wrapper {
        max-width: 100%;
        height: auto;
    }

    .founder-stats-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .founder-stat-divider {
        display: none;
    }

    .contact-content {
        gap: 3rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .footer-top {
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}