/* =========================================================
HARITHA'S BOREDOM LAB
Main Stylesheet
========================================================= */

/* =========================================================
RESET
========================================================= */

*,
*::before,
*::after {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: #05070d;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
overflow-x: hidden;
}

a {
color: inherit;
}

button,
input,
textarea,
select {
font: inherit;
}

/* =========================================================
GLOBAL
========================================================= */

:root {
--bg: #05070d;
--bg-soft: #080b13;
--surface: #0c101a;
--surface-light: #111722;

--text: #ffffff;
--muted: rgba(255, 255, 255, 0.52);
--faint: rgba(255, 255, 255, 0.25);

--border: rgba(255, 255, 255, 0.1);
--border-strong: rgba(255, 255, 255, 0.2);

--blue: #4b8dff;
--blue-bright: #68a0ff;

--max-width: 1440px;
}

::selection {
background: var(--blue);
color: #ffffff;
}

/* =========================================================
HEADER
========================================================= */

.site-header {
position: absolute;
z-index: 50;

top: 0;
left: 0;
right: 0;

height: 88px;

padding: 0 5vw;

display: flex;
align-items: center;
justify-content: space-between;

border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* BRAND */

.brand {
display: flex;
align-items: center;
gap: 12px;

color: #ffffff;
text-decoration: none;
}

.brand-symbol {
width: 38px;
height: 38px;

display: grid;
place-items: center;

border: 1px solid rgba(255, 255, 255, 0.35);

font-size: 13px;
font-weight: 800;
letter-spacing: -0.08em;
}

.brand-text {
font-size: 9px;
line-height: 1.25;
letter-spacing: 0.12em;

opacity: 0.65;
}

.brand-text strong {
color: #ffffff;
opacity: 1;
}

/* NAVIGATION */

.main-navigation {
display: flex;
align-items: center;
gap: 38px;
}

.main-navigation a {
position: relative;

color: rgba(255, 255, 255, 0.55);
text-decoration: none;

font-size: 10px;
font-weight: 600;
letter-spacing: 0.15em;

transition:
color 0.25s ease,
opacity 0.25s ease;
}

.main-navigation a::after {
content: "";

position: absolute;

left: 0;
bottom: -8px;

width: 0;
height: 1px;

background: var(--blue);

transition: width 0.25s ease;
}

.main-navigation a:hover {
color: #ffffff;
}

.main-navigation a:hover::after {
width: 100%;
}

/* STATUS */

.system-status {
display: flex;
align-items: center;
gap: 8px;

font-family: monospace;

font-size: 8px;
letter-spacing: 0.16em;

color: rgba(255, 255, 255, 0.45);
}

.status-indicator {
width: 5px;
height: 5px;

border-radius: 50%;

background: var(--blue);

box-shadow:
0 0 8px rgba(75, 141, 255, 0.9),
0 0 20px rgba(75, 141, 255, 0.45);
}

/* =========================================================
HERO
========================================================= */

.hero {
position: relative;

min-height: 100vh;

overflow: hidden;

display: flex;
align-items: center;

background:
radial-gradient(
circle at 70% 45%,
rgba(35, 90, 210, 0.14),
transparent 30%
),
radial-gradient(
circle at 25% 70%,
rgba(20, 60, 150, 0.08),
transparent 35%
),
var(--bg);
}

/* GRID */

.hero-grid {
position: absolute;
inset: 0;

opacity: 0.14;

background-image:
linear-gradient(
rgba(255, 255, 255, 0.06) 1px,
transparent 1px
),
linear-gradient(
90deg,
rgba(255, 255, 255, 0.06) 1px,
transparent 1px
);

background-size: 72px 72px;

mask-image:
linear-gradient(
to bottom,
transparent 0%,
black 25%,
black 75%,
transparent 100%
);
}

/* AMBIENT ORBS */

.hero-orb {
position: absolute;

width: 500px;
height: 500px;

border-radius: 50%;

background: rgba(50, 110, 255, 0.07);

filter: blur(100px);

pointer-events: none;
}

.hero-orb-one {
top: 15%;
right: 5%;
}

.hero-orb-two {
bottom: -250px;
left: 25%;
}

/* HERO META */

.hero-meta {
position: absolute;

top: 120px;
left: 10vw;

display: flex;
align-items: center;
gap: 15px;

font-family: monospace;

font-size: 8px;
letter-spacing: 0.2em;

color: rgba(255, 255, 255, 0.4);
}

.hero-meta-line {
width: 40px;
height: 1px;

background: rgba(255, 255, 255, 0.25);
}

/* HERO CONTENT */

.hero-content {
position: relative;
z-index: 5;

width: 100%;
max-width: var(--max-width);

margin: 0 auto;

padding:
140px
10vw
100px;
}

/* WELCOME */

.hero-welcome {
margin: 0 0 25px;

font-family: monospace;

font-size: 10px;
letter-spacing: 0.25em;

color: rgba(255, 255, 255, 0.5);
}

/* TITLE */

.hero-title {
margin: 0;

font-size: clamp(5rem, 13vw, 12rem);

line-height: 0.78;

letter-spacing: -0.095em;

font-weight: 300;
}

.hero-title span {
display: block;
}

.hero-title strong {
display: block;

font-weight: 800;
}

.hero-title-outline {
color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.42);

text-stroke:
1px
rgba(255, 255, 255, 0.42);
}

/* INTRO */

.hero-introduction {
display: flex;

gap: 20px;

margin-top: 65px;
}

.hero-accent-line {
width: 2px;

min-height: 74px;

background: var(--blue);

box-shadow:
0 0 12px rgba(75, 141, 255, 0.5);
}

.hero-tagline {
margin: 0;

font-size: clamp(1.1rem, 2vw, 1.5rem);

font-weight: 500;

letter-spacing: -0.025em;
}

.hero-description {
margin: 10px 0 0;

max-width: 450px;

font-size: 12px;

line-height: 1.75;

color: rgba(255, 255, 255, 0.42);
}

/* HERO CTA */

.hero-cta {
position: absolute;

right: 10vw;
bottom: 22%;

width: 155px;
height: 155px;

display: grid;
place-items: center;

border:
1px solid
rgba(255, 255, 255, 0.25);

border-radius: 50%;

text-decoration: none;

transition:
transform 0.4s ease,
background 0.4s ease,
border-color 0.4s ease,
box-shadow 0.4s ease;
}

.hero-cta-ring {
position: absolute;

inset: -12px;

border:
1px solid
rgba(75, 141, 255, 0.18);

border-radius: 50%;

transition:
transform 0.4s ease,
border-color 0.4s ease;
}

.hero-cta-inner {
display: flex;
flex-direction: column;

align-items: center;

font-size: 9px;

line-height: 1.5;

letter-spacing: 0.18em;
}

.hero-cta-inner strong {
font-weight: 700;
}

.hero-cta-arrow {
position: absolute;

top: 20px;
right: 23px;

font-size: 17px;

opacity: 0.55;
}

.hero-cta:hover {
background: var(--blue);

border-color: var(--blue);

box-shadow:
0 0 45px rgba(75, 141, 255, 0.28);

transform: scale(1.07);
}

.hero-cta:hover .hero-cta-ring {
transform: scale(1.12);

border-color:
rgba(75, 141, 255, 0.45);
}

/* FLOATING NOTES */

.hero-floating {
position: absolute;

z-index: 8;

padding: 11px 14px;

display: flex;
flex-direction: column;

gap: 4px;

background:
rgba(7, 10, 17, 0.7);

border:
1px solid
rgba(255, 255, 255, 0.12);

backdrop-filter: blur(10px);

font-family: monospace;
}

.hero-floating span {
font-size: 7px;

letter-spacing: 0.16em;

color: rgba(255, 255, 255, 0.35);
}

.hero-floating strong {
font-size: 9px;

letter-spacing: 0.1em;

color: rgba(255, 255, 255, 0.75);
}

.hero-floating-one {
top: 28%;
right: 17%;

transform: rotate(4deg);
}

.hero-floating-two {
top: 52%;
right: 4%;

transform: rotate(-3deg);
}

.hero-floating-three {
bottom: 24%;
left: 7%;

transform: rotate(-4deg);
}

/* HERO BOTTOM */

.hero-bottom {
position: absolute;

z-index: 10;

left: 5vw;
right: 5vw;
bottom: 25px;

display: flex;

align-items: center;
justify-content: space-between;

font-family: monospace;

font-size: 8px;

letter-spacing: 0.15em;

color: rgba(255, 255, 255, 0.35);
}

.hero-scroll {
display: flex;

align-items: center;

gap: 9px;
}

.scroll-icon {
color: var(--blue);

font-size: 15px;
}

.hero-categories {
display: flex;

gap: 30px;
}

.hero-version {
opacity: 0.5;
}

/* =========================================================
SECTION GLOBAL
========================================================= */

.lab-introduction,
.games-section,
.current-experiment,
.stories-section,
.now-section,
.about-section {
position: relative;

max-width: var(--max-width);

margin: 0 auto;

padding:
150px
10vw;
}

/* SECTION LABEL */

.section-heading {
display: flex;

align-items: center;

gap: 15px;

margin-bottom: 80px;

font-family: monospace;

font-size: 9px;

letter-spacing: 0.2em;

color: rgba(255, 255, 255, 0.4);
}

.section-number {
color: var(--blue);
}

.section-label {
color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
LAB INTRO
========================================================= */

.lab-introduction {
display: grid;

grid-template-columns: 180px 1fr;

gap: 80px;

min-height: 600px;

align-items: center;

border-top:
1px solid
var(--border);
}

.lab-introduction .section-heading {
margin: 0;

align-self: start;
}

.lab-introduction-content {
max-width: 800px;
}

.lab-introduction-content h2 {
margin: 0;

font-size: clamp(3rem, 6vw, 6rem);

line-height: 0.95;

letter-spacing: -0.07em;

font-weight: 700;
}

.lab-introduction-content h2 em {
color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.45);

font-weight: 300;
}

.lab-introduction-content p {
max-width: 500px;

margin-top: 40px;

font-size: 14px;

line-height: 1.8;

color: var(--muted);
}

/* =========================================================
GAMES
========================================================= */

.games-section {
border-top:
1px solid
var(--border);
}

.section-header {
display: flex;

align-items: center;

justify-content: space-between;

margin-bottom: 65px;
}

.section-title-group {
display: flex;

align-items: center;

gap: 15px;
}

.section-action {
display: inline-flex;

align-items: center;

gap: 12px;

color: rgba(255, 255, 255, 0.55);

text-decoration: none;

font-family: monospace;

font-size: 8px;

letter-spacing: 0.16em;

transition: color 0.25s ease;
}

.section-action span {
font-size: 16px;
}

.section-action:hover {
color: #ffffff;
}

/* GAMES INTRO */

.games-intro {
display: flex;

justify-content: space-between;

align-items: flex-end;

gap: 50px;

margin-bottom: 70px;
}

.games-intro h2 {
margin: 0;

font-size: clamp(3rem, 6vw, 6rem);

line-height: 0.88;

letter-spacing: -0.07em;
}

.games-intro h2 em {
font-weight: 300;

color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.4);
}

.games-intro p {
max-width: 280px;

margin: 0;

font-size: 12px;

line-height: 1.7;

color: var(--muted);
}

/* GAME GRID */

.game-grid {
display: grid;

grid-template-columns:
1.25fr
1fr
1fr;

gap: 15px;
}

/* GAME CARD */

.game-card {
position: relative;

min-height: 530px;

overflow: hidden;

background: var(--surface);

border:
1px solid
var(--border);

transition:
transform 0.35s ease,
border-color 0.35s ease;
}

.game-card:hover {
transform: translateY(-7px);

border-color:
rgba(75, 141, 255, 0.4);
}

.game-card-link {
height: 100%;

padding: 22px;

display: flex;

flex-direction: column;

color: inherit;

text-decoration: none;
}

/* CARD TOP */

.game-card-top {
display: flex;

justify-content: space-between;

font-family: monospace;

font-size: 7px;

letter-spacing: 0.15em;

color: rgba(255, 255, 255, 0.35);
}

/* GAME VISUAL */

.game-visual {
position: relative;

height: 240px;

margin:
25px
-22px
0;

display: grid;

place-items: center;

overflow: hidden;

background:
radial-gradient(
circle,
rgba(45, 90, 180, 0.1),
transparent 60%
);
}

/* REACTION */

.reaction-target {
width: 70px;
height: 70px;

border-radius: 50%;

background: var(--blue);

box-shadow:
0 0 30px rgba(75, 141, 255, 0.35),
0 0 90px rgba(75, 141, 255, 0.12);
}

.visual-hint {
position: absolute;

bottom: 25px;

font-family: monospace;

font-size: 7px;

letter-spacing: 0.2em;

color: rgba(255, 255, 255, 0.3);
}

/* NUMBER */

.game-visual-number {
background:
radial-gradient(
circle,
rgba(75, 141, 255, 0.16),
transparent 50%
);
}

.game-visual-number span {
font-size: 130px;

line-height: 1;

font-weight: 800;

color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.55);
}

/* BUTTON */

.game-visual-button button {
width: 115px;
height: 115px;

border-radius: 50%;

border:
1px solid
rgba(255, 255, 255, 0.3);

background:
radial-gradient(
circle at 35% 30%,
#202938,
#090d15
);

color: #ffffff;

font-size: 8px;

letter-spacing: 0.16em;

box-shadow:
0 20px 50px rgba(0, 0, 0, 0.5);

pointer-events: none;
}

/* CARD CONTENT */

.game-card-content {
margin-top: auto;
}

.game-category {
display: block;

margin-bottom: 13px;

font-family: monospace;

font-size: 7px;

letter-spacing: 0.17em;

color: var(--blue);
}

.game-card-content h3 {
margin: 0;

font-size: clamp(2.5rem, 4vw, 4rem);

line-height: 0.82;

letter-spacing: -0.07em;
}

.game-card-content h3 em {
font-weight: 300;

color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.4);
}

.game-card-content p {
max-width: 260px;

margin:
20px
0
0;

font-size: 11px;

line-height: 1.6;

color: var(--muted);
}

/* CARD FOOTER */

.game-card-footer {
display: flex;

justify-content: space-between;

align-items: center;

margin-top: 30px;

padding-top: 15px;

border-top:
1px solid
var(--border);

font-family: monospace;

font-size: 7px;

letter-spacing: 0.15em;

color: rgba(255, 255, 255, 0.4);
}

.game-card-footer span:last-child {
color: var(--blue);

font-size: 15px;
}

/* =========================================================
CURRENT EXPERIMENT
========================================================= */

.current-experiment {
border-top:
1px solid
var(--border);
}

.experiment-container {
min-height: 600px;

display: grid;

grid-template-columns: 1fr 1fr;

align-items: center;

gap: 80px;
}

.experiment-content {
max-width: 560px;
}

.experiment-status {
font-family: monospace;

font-size: 8px;

letter-spacing: 0.16em;

color: var(--blue);
}

.experiment-content h2 {
margin:
25px
0
25px;

font-size: clamp(4rem, 7vw, 7rem);

line-height: 0.82;

letter-spacing: -0.08em;
}

.experiment-content h2 em {
color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.45);

font-weight: 300;
}

.experiment-content p {
max-width: 390px;

font-size: 12px;

line-height: 1.8;

color: var(--muted);
}

.experiment-action {
display: inline-flex;

align-items: center;

gap: 12px;

margin-top: 30px;

color: #ffffff;

text-decoration: none;

font-family: monospace;

font-size: 8px;

letter-spacing: 0.15em;
}

.experiment-action span {
color: var(--blue);

font-size: 16px;
}

/* EXPERIMENT VISUAL */

.experiment-visual {
position: relative;

width: min(440px, 80vw);
aspect-ratio: 1;

margin: auto;

display: grid;

place-items: center;
}

.experiment-ring {
position: absolute;

border:
1px
solid
rgba(75, 141, 255, 0.18);

border-radius: 50%;
}

.ring-one {
width: 35%;
height: 35%;
}

.ring-two {
width: 60%;
height: 60%;
}

.ring-three {
width: 85%;
height: 85%;
}

.experiment-core {
width: 110px;
height: 110px;

display: grid;
place-items: center;

border:
1px
solid
rgba(255, 255, 255, 0.25);

border-radius: 50%;

background:
radial-gradient(
circle,
rgba(75, 141, 255, 0.15),
rgba(5, 7, 13, 0.9)
);

font-size: 18px;

font-weight: 800;

letter-spacing: -0.1em;

box-shadow:
0 0 70px
rgba(75, 141, 255, 0.12);
}

.experiment-marker {
position: absolute;

font-family: monospace;

font-size: 7px;

letter-spacing: 0.16em;

color: rgba(255, 255, 255, 0.35);
}

.marker-top {
top: 3%;
}

.marker-right {
right: 0;
}

.marker-bottom {
bottom: 3%;
}

/* =========================================================
STORIES
========================================================= */

.stories-section {
border-top:
1px solid
var(--border);
}

.story-container {
min-height: 500px;

display: grid;

grid-template-columns: 180px 1fr;

gap: 80px;

align-items: center;
}

.story-number {
align-self: start;

font-family: monospace;

font-size: 8px;

letter-spacing: 0.16em;

color: rgba(255, 255, 255, 0.3);
}

.story-content {
max-width: 800px;
}

.story-category {
font-family: monospace;

font-size: 8px;

letter-spacing: 0.17em;

color: var(--blue);
}

.story-content h2 {
margin:
25px
0;

font-size: clamp(3rem, 6vw, 6rem);

line-height: 0.88;

letter-spacing: -0.07em;
}

.story-content p {
max-width: 450px;

font-size: 13px;

line-height: 1.8;

color: var(--muted);
}

.text-action {
display: inline-flex;

gap: 12px;

margin-top: 30px;

text-decoration: none;

font-family: monospace;

font-size: 8px;

letter-spacing: 0.16em;
}

.text-action span {
color: var(--blue);

font-size: 15px;
}

/* =========================================================
NOW
========================================================= */

.now-section {
border-top:
1px solid
var(--border);
}

.now-container {
display: grid;

grid-template-columns: 1fr 1fr;

gap: 100px;
}

.now-title {
font-size: clamp(3rem, 6vw, 6rem);

line-height: 0.82;

letter-spacing: -0.08em;
}

.now-title span,
.now-title strong {
display: block;
}

.now-title strong {
font-weight: 800;
}

.now-list {
border-top:
1px solid
var(--border);
}

.now-item {
display: grid;

grid-template-columns: 40px 1fr;

gap: 20px;

padding:
22px
0;

border-bottom:
1px solid
var(--border);
}

.now-index {
font-family: monospace;

font-size: 8px;

color: var(--blue);
}

.now-item small {
display: block;

margin-bottom: 7px;

font-family: monospace;

font-size: 7px;

letter-spacing: 0.15em;

color: rgba(255, 255, 255, 0.35);
}

.now-item strong {
font-size: 15px;

font-weight: 500;
}

/* =========================================================
ABOUT
========================================================= */

.about-section {
min-height: 650px;

display: grid;

grid-template-columns: 1fr 1fr;

align-items: center;

gap: 100px;

border-top:
1px solid
var(--border);
}

.about-symbol {
width: min(380px, 60vw);
aspect-ratio: 1;

display: grid;
place-items: center;

border:
1px
solid
rgba(255, 255, 255, 0.12);

border-radius: 50%;

font-size: clamp(5rem, 12vw, 10rem);

font-weight: 900;

letter-spacing: -0.12em;

color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.2);
}

.about-content {
max-width: 500px;
}

.about-content .section-label {
font-family: monospace;

font-size: 8px;

letter-spacing: 0.17em;
}

.about-content h2 {
margin:
25px
0;

font-size: clamp(4rem, 7vw, 7rem);

line-height: 0.8;

letter-spacing: -0.08em;
}

.about-content h2 em {
color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.45);

font-weight: 300;
}

.about-content p {
font-size: 13px;

line-height: 1.8;

color: var(--muted);
}

.about-action {
display: inline-flex;

gap: 12px;

margin-top: 25px;

text-decoration: none;

font-family: monospace;

font-size: 8px;

letter-spacing: 0.15em;
}

.about-action span {
color: var(--blue);

font-size: 15px;
}

/* =========================================================
FOOTER
========================================================= */

.site-footer {
padding:
90px
5vw
25px;

border-top:
1px solid
var(--border);

background: #03050a;
}

.footer-main {
max-width: var(--max-width);

margin: 0 auto;

display: flex;

justify-content: space-between;

gap: 80px;
}

.footer-brand {
display: flex;

gap: 20px;

align-items: flex-start;
}

.footer-logo {
width: 42px;
height: 42px;

display: grid;
place-items: center;

border:
1px solid
rgba(255, 255, 255, 0.25);

font-size: 11px;

font-weight: 800;
}

.footer-brand strong {
display: block;

font-size: 15px;

line-height: 1.1;

letter-spacing: -0.04em;
}

.footer-brand span {
display: block;

margin-top: 10px;

font-size: 10px;

color: rgba(255, 255, 255, 0.35);
}

.footer-navigation {
display: flex;

gap: 100px;
}

.footer-column {
display: flex;

flex-direction: column;

gap: 12px;
}

.footer-column > span {
margin-bottom: 8px;

font-family: monospace;

font-size: 7px;

letter-spacing: 0.17em;

color: rgba(255, 255, 255, 0.3);
}

.footer-column a {
font-size: 10px;

color: rgba(255, 255, 255, 0.55);

text-decoration: none;

transition: color 0.2s ease;
}

.footer-column a:hover {
color: #ffffff;
}

/* FOOTER BOTTOM */

.footer-bottom {
max-width: var(--max-width);

margin: 80px auto 0;

padding-top: 15px;

border-top:
1px solid
var(--border);

display: flex;

justify-content: space-between;

font-family: monospace;

font-size: 7px;

letter-spacing: 0.14em;

color: rgba(255, 255, 255, 0.25);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

.main-navigation {
gap: 20px;
}

.hero-content {
padding-left: 7vw;
padding-right: 7vw;
}

.hero-cta {
right: 7vw;
}

.hero-floating-three {
display: none;
}

.game-grid {
grid-template-columns: 1fr 1fr;
}

.game-card-featured {
grid-column: span 2;
}

.experiment-container {
grid-template-columns: 1fr;
}

.experiment-visual {
margin-top: 40px;
}

.now-container {
grid-template-columns: 1fr;
}

.about-section {
grid-template-columns: 1fr;
}

.about-symbol {
margin: 0 auto;
}

}

/* TABLET */

@media (max-width: 750px) {

.site-header {
height: 72px;


padding:
  0
  20px;


}

.main-navigation {
display: none;
}

.system-status {
font-size: 7px;
}

.hero-meta {
left: 7vw;
}

.hero-content {
padding:
130px
7vw
100px;
}

.hero-title {
font-size:
clamp(
4rem,
17vw,
8rem
);
}

.hero-introduction {
margin-top: 45px;
}

.hero-cta {
position: relative;

right: auto;
bottom: auto;

margin-top: 45px;

width: 125px;
height: 125px;

}

.hero-bottom {
left: 7vw;
right: 7vw;
}

.hero-categories,
.hero-version {
display: none;
}

.hero-floating {
display: none;
}

.lab-introduction,
.games-section,
.current-experiment,
.stories-section,
.now-section,
.about-section {
padding:
100px
7vw;
}

.lab-introduction {
grid-template-columns: 1fr;

gap: 30px;

}

.lab-introduction .section-heading {
margin: 0;
}

.games-intro {
flex-direction: column;

align-items: flex-start;

}

.game-grid {
grid-template-columns: 1fr;
}

.game-card-featured {
grid-column: auto;
}

.game-card {
min-height: 500px;
}

.story-container {
grid-template-columns: 1fr;

gap: 30px;

}

.footer-main {
flex-direction: column;
}

.footer-navigation {
gap: 60px;
}

.footer-bottom {
flex-direction: column;

gap: 10px;

}

}

/* MOBILE */

@media (max-width: 480px) {

.brand-text {
display: none;
}

.hero-meta {
font-size: 7px;
}

.hero-meta-line {
width: 20px;
}

.hero-title {
font-size:
clamp(
3.6rem,
20vw,
6rem
);
}

.hero-description {
font-size: 11px;
}

.hero-cta {
width: 110px;
height: 110px;
}

.hero-cta-inner {
font-size: 8px;
}

.game-card {
min-height: 460px;
}

.game-visual {
height: 210px;
}

.footer-navigation {
flex-direction: column;


gap: 35px;


}

}
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-element {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =========================================================
BOREDOM LAB — HOMEPAGE ADDITIONS
========================================================= */

/* =========================================================
GAMES LIBRARY LINK
========================================================= */

.games-library-link {
margin-top: 55px;

border-top:
1px solid
var(--border);
}

.large-library-link {
min-height: 110px;

display: flex;

align-items: center;

justify-content: space-between;

padding:
0
10px;

color: #ffffff;

text-decoration: none;

font-family: monospace;

font-size: 9px;

letter-spacing: 0.18em;

transition:
padding 0.35s ease,
color 0.35s ease;
}

.large-library-link strong {
display: grid;

width: 46px;
height: 46px;

place-items: center;

border:
1px solid
rgba(255, 255, 255, 0.2);

border-radius: 50%;

font-size: 18px;

font-weight: 400;

color: var(--blue);

transition:
background 0.3s ease,
color 0.3s ease,
transform 0.3s ease;
}

.large-library-link:hover {
padding-left: 20px;

color: var(--blue);
}

.large-library-link:hover strong {
background: var(--blue);

color: #ffffff;

transform: translateX(5px);
}

/* =========================================================
DEVELOPER SECTION
========================================================= */

.developer-section {
position: relative;

overflow: hidden;

border-top:
1px solid
var(--border);

background:
radial-gradient(
circle at 80% 50%,
rgba(45, 100, 220, 0.12),
transparent 35%
),
#04060b;
}

.developer-section::before {
content: "";

position: absolute;

inset: 0;

background-image:
linear-gradient(
rgba(255, 255, 255, 0.035) 1px,
transparent 1px
),
linear-gradient(
90deg,
rgba(255, 255, 255, 0.035) 1px,
transparent 1px
);

background-size: 70px 70px;

opacity: 0.5;

mask-image:
linear-gradient(
to right,
transparent,
black 30%,
black 75%,
transparent
);
}

.developer-inner {
position: relative;

z-index: 2;

max-width: 1440px;

min-height: 600px;

margin: 0 auto;

padding:
130px
10vw;

display: grid;

grid-template-columns:
180px
1fr;

gap: 80px;

align-items: center;
}

/* Label */

.developer-label {
align-self: start;

padding-top: 8px;
}

.developer-label span {
font-family: monospace;

font-size: 8px;

letter-spacing: 0.18em;

color:
rgba(255, 255, 255, 0.3);
}

/* Content */

.developer-content {
max-width: 760px;
}

.developer-content h2 {
margin: 0;

font-size:
clamp(
4rem,
8vw,
8rem
);

line-height: 0.8;

letter-spacing: -0.085em;

font-weight: 800;
}

.developer-content h2 em {
color: transparent;

-webkit-text-stroke:
1px
rgba(255, 255, 255, 0.4);

font-weight: 300;
}

.developer-content p {
max-width: 500px;

margin:
40px
0
0;

font-size: 13px;

line-height: 1.8;

color:
rgba(255, 255, 255, 0.42);
}

/* Developer CTA */

.developer-link {
width: fit-content;

display: inline-flex;

align-items: center;

gap: 25px;

margin-top: 35px;

padding:
17px
22px;

border:
1px solid
rgba(255, 255, 255, 0.2);

color: #ffffff;

text-decoration: none;

font-family: monospace;

font-size: 8px;

letter-spacing: 0.16em;

transition:
background 0.3s ease,
border-color 0.3s ease,
transform 0.3s ease;
}

.developer-link strong {
color: var(--blue);

font-size: 16px;

font-weight: 400;

transition:
color 0.3s ease,
transform 0.3s ease;
}

.developer-link:hover {
background: var(--blue);

border-color: var(--blue);

transform: translateX(5px);
}

.developer-link:hover strong {
color: #ffffff;

transform: translateX(4px);
}

/* =========================================================
CLEANUP — OLD SECTIONS
========================================================= */

/*
These sections are no longer part of the homepage:

.lab-introduction
.current-experiment
.stories-section
.now-section
.about-section

Their old CSS can be deleted later during cleanup.
*/

/* =========================================================
HOMEPAGE MOBILE
========================================================= */

@media (max-width: 750px) {

.games-library-link {
margin-top: 40px;
}

.large-library-link {
min-height: 90px;

font-size: 8px;

}

.developer-inner {
min-height: 500px;

padding:
100px
7vw;

grid-template-columns: 1fr;

gap: 35px;

align-items: start;

}

.developer-label {
padding-top: 0;
}

.developer-content h2 {
font-size:
clamp(
3.5rem,
16vw,
7rem
);
}

.developer-content p {
margin-top: 30px;

font-size: 12px;

}

}

@media (max-width: 480px) {

.large-library-link {
padding:
0
5px;
}

.large-library-link:hover {
padding-left: 10px;
}

.large-library-link strong {
width: 40px;
height: 40px;

font-size: 15px;

}

.developer-inner {
padding:
85px
20px;
}

.developer-link {
width: 100%;

justify-content: space-between;

}
}
/* =========================================
HOMEPAGE GAME POSTERS
========================================= */

.game-visual-image {
position: relative;
overflow: hidden;
width: 100%;
aspect-ratio: 16 / 10;
background: #05070d;
}

/* Poster */

.game-poster {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
transform: scale(1);
transition:
transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
filter 0.5s ease;
}

/* Subtle cinematic overlay */

.game-visual-image::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;

background:
linear-gradient(
180deg,
rgba(0, 0, 0, 0.02) 0%,
rgba(0, 0, 0, 0) 45%,
rgba(0, 0, 0, 0.28) 100%
);

opacity: 0.8;
transition: opacity 0.5s ease;
}

/* Hover */

.game-card-link:hover .game-poster {
transform: scale(1.06);
filter: brightness(1.08);
}

.game-card-link:hover .game-visual-image::after {
opacity: 0.45;
}

/* =========================================
POSTER FRAME
========================================= */

.game-visual-image {
border: 1px solid rgba(255, 255, 255, 0.08);
box-sizing: border-box;
}

.game-card-link:hover .game-visual-image {
border-color: rgba(255, 255, 255, 0.2);
}

/* =========================================
FEATURED GAME
========================================= */

.game-card-featured .game-visual-image {
aspect-ratio: 16 / 10;
}

/* =========================================
GAME CARD CONSISTENCY
========================================= */

.game-card .game-visual-image {
flex-shrink: 0;
}

.game-card .game-poster {
min-width: 100%;
min-height: 100%;
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 700px) {

.game-visual-image {
aspect-ratio: 4 / 3;
}

}
