@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
--black: #08050d;
--black-soft: #0e0917;
--purple-dark: #160b26;
--purple: #54258a;
--purple-light: #7d45bd;
--violet: #9b6ce0;
--gold: #d0ad61;
--gold-light: #ead18b;
--cream: #f5f0f8;
--text: #c9c0d0;
--muted: #857b8e;
--border: rgba(208, 173, 97, .22);


--container: 1180px;


}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
background:
radial-gradient(
circle at 80% 10%,
rgba(84, 37, 138, .18),
transparent 30%
),
var(--black);


color: var(--text);
font-family: 'Inter', sans-serif;
line-height: 1.7;


}

a {
color: inherit;
text-decoration: none;
}

img {
max-width: 100%;
}

.container {
width: min(
var(--container),
calc(100% - 48px)
);


margin: 0 auto;


}

.section {
padding: 120px 0;
}

.section-label,
.eyebrow {
display: inline-block;


color: var(--gold);

font-size: 11px;
font-weight: 700;

letter-spacing: 3px;
text-transform: uppercase;


}

.section-heading h2,
.intro-content h2 {
margin-top: 18px;


color: var(--cream);

font-family: 'Cormorant Garamond', serif;

font-size: clamp(42px, 5vw, 70px);

font-weight: 500;

line-height: 1;


}

.section-heading h2 strong,
.intro-content h2 strong {
display: block;


color: var(--gold);

font-weight: 600;


}

/* =================================
HEADER
================================= */

.site-header {
position: absolute;


top: 0;
left: 0;

z-index: 20;

width: 100%;

border-bottom:
    1px solid rgba(255,255,255,.07);

background:
    linear-gradient(
        180deg,
        rgba(8,5,13,.72),
        transparent
    );


}

.header-inner {
min-height: 88px;


display: flex;
align-items: center;
justify-content: space-between;

gap: 30px;


}

.logo {
display: inline-flex;
align-items: center;


gap: 12px;


}

.logo-mark {
width: 42px;
height: 42px;


display: grid;
place-items: center;

border:
    1px solid var(--gold);

color: var(--gold);

font-family:
    'Cormorant Garamond',
    serif;

font-size: 25px;

background:
    rgba(84,37,138,.12);

box-shadow:
    0 0 25px rgba(84,37,138,.22);


}

.logo-text {
color: var(--cream);


font-size: 16px;
font-weight: 700;

letter-spacing: 2px;


}

.logo-text small {
display: block;


margin-top: -4px;

color: var(--gold);

font-size: 8px;

letter-spacing: 4px;


}

.main-nav {
display: flex;
align-items: center;


gap: 35px;


}

.main-nav a {
color: #aaa1b1;


font-size: 12px;
font-weight: 600;

letter-spacing: 1px;

text-transform: uppercase;

transition: .3s ease;


}

.main-nav a:hover {
color: var(--gold);
}

.header-actions {
display: flex;
gap: 10px;
}

/* =================================
BUTTON
================================= */

.btn {
min-height: 44px;


padding: 11px 22px;

display: inline-flex;
align-items: center;
justify-content: center;

gap: 15px;

border:
    1px solid transparent;

font-size: 11px;
font-weight: 700;

letter-spacing: 1.5px;

text-transform: uppercase;

transition: .3s ease;


}

.btn-gold {
background:
linear-gradient(
135deg,
var(--gold),
var(--gold-light)
);


color: #140d19;

box-shadow:
    0 8px 30px rgba(208,173,97,.12);


}

.btn-gold:hover {
transform: translateY(-2px);


box-shadow:
    0 12px 35px rgba(208,173,97,.2);


}

.btn-outline {
border-color:
rgba(208,173,97,.45);


color: var(--cream);

background:
    rgba(255,255,255,.015);


}

.btn-outline:hover {
border-color: var(--gold);


color: var(--gold);


}

.btn-large {
min-height: 54px;


padding:
    14px 28px;


}

/* =================================
HERO
================================= */

.hero {
position: relative;


min-height: 850px;

display: flex;
align-items: center;

overflow: hidden;

isolation: isolate;

background:
    radial-gradient(
        circle at 75% 40%,
        rgba(84,37,138,.45),
        transparent 40%
    ),

    #08050d;


}

.hero-image {
position: absolute;


inset: 0;

z-index: -3;

overflow: hidden;


}

.hero-image img {
width: 100%;
height: 100%;


display: block;

object-fit: cover;

filter:
    saturate(.55)
    contrast(1.12)
    brightness(.48);

transform:
    scale(1.04);


}

.hero-overlay {
position: absolute;


inset: 0;

z-index: -2;

background:

    linear-gradient(
        90deg,
        rgba(8,5,13,.99) 0%,
        rgba(8,5,13,.90) 38%,
        rgba(35,12,58,.65) 70%,
        rgba(8,5,13,.86) 100%
    ),

    linear-gradient(
        180deg,
        rgba(8,5,13,.35),
        rgba(8,5,13,.94)
    );


}

.hero-glow {
position: absolute;


width: 450px;
height: 450px;

border-radius: 50%;

pointer-events: none;

filter: blur(20px);


}

.hero-glow-left {
left: -320px;
bottom: -250px;


border:
    1px solid rgba(208,173,97,.12);

box-shadow:
    0 0 100px rgba(84,37,138,.18);


}

.hero-glow-right {
right: -240px;
top: 150px;


border:
    1px solid rgba(155,108,224,.15);

box-shadow:
    0 0 130px rgba(84,37,138,.3);


}

.hero-content {
position: relative;


z-index: 2;

max-width: 850px;

padding-top: 80px;


}

.hero h1 {
max-width: 850px;


margin:
    25px 0;

color: var(--cream);

font-family:
    'Cormorant Garamond',
    serif;

font-size:
    clamp(58px, 8vw, 108px);

font-weight: 500;

line-height: .86;

letter-spacing: -2px;


}

.hero h1 span {
display: block;


color: var(--gold);

text-shadow:
    0 0 35px rgba(208,173,97,.12);


}

.hero-description {
max-width: 650px;


color: #aaa0af;

font-size: 16px;


}

.hero-buttons {
margin-top: 35px;


display: flex;
flex-wrap: wrap;

gap: 12px;


}

.hero-note {
margin-top: 60px;


display: flex;
align-items: center;

gap: 15px;

color: var(--muted);

font-size: 9px;
font-weight: 700;

letter-spacing: 3px;


}

.hero-note span {
width: 40px;
height: 1px;


background: var(--gold);


}

/* =================================
INTRO
================================= */

.intro {
border-top:
1px solid rgba(255,255,255,.05);


border-bottom:
    1px solid rgba(255,255,255,.05);

background:
    radial-gradient(
        circle at 10% 50%,
        rgba(84,37,138,.14),
        transparent 35%
    ),

    var(--black-soft);


}

.intro-grid {
display: grid;


grid-template-columns:
    1fr 1fr;

gap: 90px;

align-items: center;


}

.intro-image {
position: relative;


min-height: 500px;

overflow: hidden;

border:
    1px solid rgba(208,173,97,.25);

background: var(--purple-dark);


}

.intro-image::before {
content: "";


position: absolute;

inset: 15px;

z-index: 2;

border:
    1px solid rgba(208,173,97,.2);

pointer-events: none;


}

.intro-image::after {
content: "";


position: absolute;

inset: 0;

z-index: 1;

background:
    linear-gradient(
        135deg,
        rgba(84,37,138,.3),
        transparent 55%
    );


}

.intro-image img {
width: 100%;
height: 100%;


display: block;

object-fit: cover;

filter:
    saturate(.65)
    contrast(1.08)
    brightness(.62);

transition:
    transform .6s ease;


}

.intro-image:hover img {
transform: scale(1.05);
}

.intro-content p {
margin-top: 20px;


color: #918798;

font-size: 15px;


}

.text-link {
margin-top: 30px;


display: inline-flex;
align-items: center;

gap: 12px;

color: var(--gold);

font-size: 10px;
font-weight: 700;

letter-spacing: 2px;

text-transform: uppercase;


}

.text-link span {
transition: .3s ease;
}

.text-link:hover span {
transform: translateX(5px);
}

/* =================================
FEATURES
================================= */

.feature-strip {
padding: 110px 0;


background:
    radial-gradient(
        circle at 90% 20%,
        rgba(84,37,138,.15),
        transparent 30%
    );


}

.feature-header {
max-width: 650px;


margin-bottom: 50px;


}

.feature-grid {
display: grid;


grid-template-columns:
    repeat(3, 1fr);

gap: 18px;


}

.feature-card {
position: relative;


min-height: 310px;

padding: 35px;

overflow: hidden;

border:
    1px solid var(--border);

background:
    linear-gradient(
        145deg,
        rgba(84,37,138,.2),
        transparent 60%
    ),

    #130b1e;

transition: .35s ease;


}

.feature-card:hover {
transform:
translateY(-7px);


border-color:
    rgba(208,173,97,.55);

box-shadow:
    0 20px 50px rgba(0,0,0,.22);


}

.feature-number {
position: absolute;


top: 25px;
right: 30px;

color:
    rgba(208,173,97,.32);

font-family:
    'Cormorant Garamond',
    serif;

font-size: 35px;


}

.feature-icon {
color: var(--gold);


font-size: 25px;

text-shadow:
    0 0 25px rgba(208,173,97,.25);


}

.feature-card h3 {
margin-top: 45px;


color: var(--cream);

font-family:
    'Cormorant Garamond',
    serif;

font-size: 32px;

font-weight: 600;


}

.feature-card p {
margin-top: 10px;


color: var(--muted);

font-size: 13px;


}

/* =================================
GAMES
================================= */

.games {
background:
radial-gradient(
circle at center,
rgba(84,37,138,.25),
transparent 55%
),


    #0b0711;


}

.centered {
max-width: 700px;


margin:
    0 auto 55px;

text-align: center;


}

.centered p {
margin-top: 20px;


color: var(--muted);


}

.game-grid {
display: grid;


grid-template-columns:
    repeat(3, 1fr);

gap: 18px;


}

.game-card {
position: relative;


min-height: 330px;

padding: 35px;

display: flex;

flex-direction: column;

justify-content: flex-end;

overflow: hidden;

border:
    1px solid var(--border);

background: var(--purple-dark);


}

.game-card > img {
position: absolute;


inset: 0;

width: 100%;
height: 100%;

object-fit: cover;

z-index: 0;

filter:
    saturate(.55)
    contrast(1.12)
    brightness(.5);

transition:
    transform .6s ease,
    filter .6s ease;


}

.game-card-overlay {
position: absolute;


inset: 0;

z-index: 1;

background:
    linear-gradient(
        180deg,
        rgba(8,5,13,.1),
        rgba(8,5,13,.3) 35%,
        rgba(8,5,13,.97) 100%
    ),

    linear-gradient(
        135deg,
        rgba(84,37,138,.25),
        transparent 55%
    );


}

.game-card:hover > img {
transform: scale(1.07);


filter:
    saturate(.72)
    contrast(1.1)
    brightness(.58);


}

.game-number {
position: absolute;


top: 25px;
right: 30px;

z-index: 2;

color:
    rgba(208,173,97,.4);

font-family:
    'Cormorant Garamond',
    serif;

font-size: 40px;


}

.game-content {
position: relative;


z-index: 2;


}

.game-content span {
color: var(--gold);


font-size: 9px;
font-weight: 700;

letter-spacing: 2px;


}

.game-content h3 {
margin-top: 8px;


color: var(--cream);

font-family:
    'Cormorant Garamond',
    serif;

font-size: 34px;


}

.game-content p {
color: var(--muted);


font-size: 12px;


}

.game-link {
position: relative;


z-index: 2;

margin-top: 25px;

color: var(--gold);

font-size: 10px;
font-weight: 700;

letter-spacing: 2px;


}

.game-link span {
margin-left: 8px;
}

/* =================================
QUOTE
================================= */

.quote-section {
padding: 150px 0;


text-align: center;

background:
    radial-gradient(
        circle at center,
        rgba(84,37,138,.22),
        transparent 55%
    ),

    #09060e;

border-top:
    1px solid rgba(255,255,255,.06);

border-bottom:
    1px solid rgba(255,255,255,.06);


}

.quote-content {
max-width: 900px;
}

.quote-mark {
color: var(--violet);


font-family: Georgia, serif;

font-size: 90px;

line-height: .5;


}

blockquote {
margin: 35px auto;


color: var(--cream);

font-family:
    'Cormorant Garamond',
    serif;

font-size:
    clamp(38px, 5vw, 64px);

line-height: 1.05;


}

.quote-line {
width: 70px;
height: 1px;


margin:
    35px auto 20px;

background: var(--gold);


}

.quote-author {
color: var(--gold);


font-size: 9px;
font-weight: 700;

letter-spacing: 3px;


}

/* =================================
CTA
================================= */

.cta-box {
position: relative;


padding: 100px 50px;

overflow: hidden;

text-align: center;

border:
    1px solid var(--border);

background:
    radial-gradient(
        circle at center,
        rgba(84,37,138,.35),
        transparent 65%
    ),

    #140a20;


}

.cta-box::before {
content: "";


position: absolute;

width: 300px;
height: 300px;

left: -150px;
top: -150px;

border-radius: 50%;

border:
    1px solid rgba(208,173,97,.1);


}

.cta-box h2 {
max-width: 800px;


margin:
    20px auto;

color: var(--cream);

font-family:
    'Cormorant Garamond',
    serif;

font-size:
    clamp(45px, 6vw, 75px);

font-weight: 500;

line-height: .95;


}

.cta-box h2 strong {
display: block;


color: var(--gold);


}

.cta-box p {
max-width: 600px;


margin: 0 auto;

color: var(--muted);


}

.cta-actions {
margin-top: 35px;


display: flex;

justify-content: center;

flex-wrap: wrap;

gap: 12px;


}

/* =================================
FOOTER
================================= */

.site-footer {
padding:
55px 0 30px;


background:
    #050309;

border-top:
    1px solid rgba(255,255,255,.06);


}

.footer-top {
padding-bottom: 35px;


display: flex;

align-items: center;

justify-content: space-between;

gap: 30px;


}

.footer-top p {
color: var(--muted);


font-size: 11px;

letter-spacing: 1px;

text-transform: uppercase;


}

.footer-bottom {
padding-top: 25px;


display: flex;

justify-content: space-between;

gap: 20px;

border-top:
    1px solid rgba(255,255,255,.07);

color: #62596a;

font-size: 11px;


}

.footer-links {
display: flex;


gap: 25px;


}

.footer-links a:hover {
color: var(--gold);
}

/* =================================
RESPONSIVE
================================= */

@media (max-width: 900px) {


.main-nav {
    display: none;
}

.intro-grid,
.feature-grid,
.game-grid {
    grid-template-columns: 1fr;
}

.intro-grid {
    gap: 45px;
}

.hero {
    min-height: 760px;
}

.hero h1 {
    font-size:
        clamp(55px, 13vw, 85px);
}

.footer-top,
.footer-bottom {
    flex-direction: column;

    align-items: flex-start;
}


}

@media (max-width: 600px) {


.container {
    width:
        min(
            var(--container),
            calc(100% - 30px)
        );
}

.section {
    padding: 80px 0;
}

.site-header {
    position: relative;

    background:
        #08050d;
}

.header-inner {
    min-height: 75px;
}

.header-actions .btn-outline {
    display: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 14px;
}

.hero {
    min-height: 700px;
}

.hero-content {
    padding-top: 40px;
}

.hero h1 {
    font-size: 55px;

    letter-spacing: -1px;
}

.hero-description {
    font-size: 14px;
}

.hero-buttons {
    flex-direction: column;

    align-items: stretch;
}

.hero-buttons .btn {
    width: 100%;
}

.intro-image {
    min-height: 300px;
}

.feature-card,
.game-card {
    min-height: 290px;
}

.quote-section {
    padding: 100px 20px;
}

blockquote {
    font-size: 38px;
}

.cta-box {
    padding: 70px 25px;
}

.cta-actions {
    flex-direction: column;
}

.cta-actions .btn {
    width: 100%;
}

.footer-links {
    flex-wrap: wrap;
}


}
