* {
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: #111;
color: #f2f2f2;
font-family: Arial, Helvetica, sans-serif;
line-height: 1.5;
}

a {
color: inherit;
text-decoration: none;
}

img {
max-width: 100%;
}

.site-header {
position: sticky;
top: 0;
z-index: 10;
min-height: 70px;
padding: 12px 5vw;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
background: rgba(17, 17, 17, 0.94);
border-bottom: 1px solid #2b2b2b;
backdrop-filter: blur(10px);
}

.brand {
display: inline-flex;
align-items: center;
}

.brand img {
width: 180px;
height: auto;
display: block;
}

nav {
display: flex;
align-items: center;
gap: 24px;
font-size: 14px;
}

nav a {
color: #cfcfcf;
white-space: nowrap;
transition: color 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
color: #fff;
}

.hero {
position: relative;
min-height: calc(100vh - 70px);
min-height: calc(100svh - 70px);
display: flex;
align-items: center;
justify-content: flex-end;
padding: 80px 8vw;
overflow: hidden;
text-align: right;
}

.hero-bg {
position: absolute;
top: -15%;
left: 0;
z-index: -2;
width: 100%;
height: 130%;
background: url("assets/gamexia_banner.jpg") center / cover no-repeat;
will-change: transform;
}

.hero-overlay {
position: absolute;
inset: 0;
z-index: -1;
background: radial-gradient(
circle at 75% 50%,
rgba(17, 17, 17, 0.4) 0%,
rgba(17, 17, 17, 0.75) 50%,
rgba(17, 17, 17, 0.95) 100%
);
}

.hero-content {
position: relative;
z-index: 1;
width: min(600px, 100%);
max-width: 50%;
margin-left: auto;
animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}

```
to {
    opacity: 1;
    transform: translateY(0);
}
```

}

.eyebrow {
margin: 0 0 10px;
color: #aaa;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
margin-top: 0;
}

h1 {
margin-bottom: 18px;
font-size: clamp(48px, 10vw, 90px);
line-height: 0.95;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

h2 {
margin-bottom: 12px;
font-size: clamp(32px, 6vw, 52px);
line-height: 1;
}

.hero-text {
max-width: 480px;
margin: 0 0 30px auto;
color: #ddd;
font-size: clamp(17px, 2vw, 21px);
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.button {
display: inline-block;
padding: 13px 24px;
border: 1px solid #eee;
border-radius: 7px;
background: #eee;
color: #111;
font-weight: 700;
transition:
transform 0.2s ease,
background 0.2s ease,
box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
background: #fff;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.section {
width: min(1180px, 90%);
margin: 0 auto;
padding: 100px 0;
scroll-margin-top: 70px;
}

.section-heading {
max-width: 700px;
margin-bottom: 42px;
}

.section-heading > p:last-child {
color: #aaa;
}

.games-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 22px;
}

.game-card {
overflow: hidden;
background: #191919;
border: 1px solid #292929;
border-radius: 10px;
cursor: pointer;
transition:
transform 0.2s ease,
border-color 0.2s ease;
}

.game-card:hover {
transform: translateY(-4px);
border-color: #444;
}

.game-image {
aspect-ratio: 1 / 1;
background: #242424;
}

.game-image img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}

.game-info {
padding: 14px 16px;
text-align: center;
}

.game-info h3 {
margin-bottom: 0;
font-size: 16px;
font-weight: 600;
}

.about {
width: 100%;
max-width: 100%;
padding-top: 40px;
padding-bottom: 120px;
background: linear-gradient(
180deg,
#111 0%,
#151515 50%,
#111 100%
);
border-top: 1px solid #1f1f1f;
border-bottom: 1px solid #1f1f1f;
}

.about-header {
max-width: 800px;
margin: 0 auto 60px;
padding: 0 5vw;
text-align: center;
}

.about-lead {
max-width: 640px;
margin: 0 auto;
color: #bbb;
font-size: clamp(17px, 2vw, 20px);
line-height: 1.6;
}

.about-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 700px;
margin: 0 auto 80px;
padding: 40px 30px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid #252525;
border-radius: 14px;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
text-align: center;
}

.stat-number {
color: #fff;
font-size: clamp(36px, 6vw, 56px);
font-weight: 700;
line-height: 1;
letter-spacing: -0.02em;
}

.stat-label {
color: #888;
font-size: 13px;
font-weight: 500;
letter-spacing: 0.02em;
}

.features-grid {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 18px;
max-width: 1180px;
margin: 0 auto;
padding: 0 5vw;
}

.feature-card {
padding: 22px 16px;
background: #191919;
border: 1px solid #292929;
border-radius: 12px;
transition:
transform 0.25s ease,
border-color 0.25s ease,
background 0.25s ease;
}

.feature-card:hover {
transform: translateY(-4px);
background: #1e1e1e;
border-color: #444;
}

.feature-icon {
width: 44px;
height: 44px;
display: grid;
place-items: center;
margin-bottom: 14px;
background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
border: 1px solid #333;
border-radius: 10px;
color: #f2f2f2;
}

.feature-icon svg {
width: 22px;
height: 22px;
}

.feature-card h3 {
margin-bottom: 8px;
color: #fff;
font-size: 15px;
font-weight: 600;
}

.feature-card p {
margin: 0;
color: #999;
font-size: 13px;
line-height: 1.5;
}

.site-footer {
padding: 30px 5vw;
border-top: 1px solid #2b2b2b;
color: #777;
font-size: 13px;
text-align: center;
}

.site-footer p {
margin: 0;
}

@media (max-width: 1200px) {
.features-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (max-width: 1000px) {
.games-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (max-width: 760px) {
.site-header {
padding: 10px 5vw;
}

```
nav {
    gap: 16px;
    font-size: 13px;
}

.hero {
    justify-content: center;
    padding: 80px 5vw;
    text-align: center;
}

.hero-content {
    max-width: 100%;
    margin-left: 0;
}

.hero-text {
    margin: 0 auto 30px;
}

.games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.section {
    padding: 70px 0;
}

.about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 auto 60px;
    padding: 30px 24px;
}

.stat-item {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #252525;
    text-align: left;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 32px;
}

.about {
    padding-bottom: 80px;
}
```

}

@media (max-width: 600px) {
.brand img {
width: 140px;
}

```
nav {
    gap: 12px;
    font-size: 12px;
}
```

}

@media (max-width: 520px) {
.features-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 460px) {
.site-header {
min-height: 60px;
gap: 12px;
}

```
.brand img {
    width: 120px;
}

nav {
    gap: 10px;
    font-size: 11px;
}

.hero {
    min-height: calc(100svh - 60px);
    padding: 60px 5vw;
}

.games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.game-info {
    padding: 10px 8px;
}

.game-info h3 {
    font-size: 14px;
}
```

}

@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}

```
*,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}
```

}
