@import url("/styles/navbar.css");
@import url("/styles/home.css");
@import url("/styles/rooms.css");
@import url("/styles/players.css");
@import url("/styles/room.css");
@import url("/styles/player.css");
@import url("/styles/events.css");
@import url("/styles/community.css");
@import url("/styles/download.css");
@import url("/styles/footer.css");
@import url("/styles/hero.css");
@import url("/styles/login.css");
@import url("/styles/Legal.css");
@import url("/styles/shop.css");


@font-face {
font-family: "Futura";
src: url("/Fonts/futura.ttf") format("truetype");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}

* {
  font-family: "Futura", sans-serif;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

:root {
--bg: #262626;
--panel: #1D1D1D;
--panel-light: #242424;
--panel-dark: #181818;
--card: #1D1D1D;
--card-light: #424242;
--text: #FFFFFF;
--text-secondary: #D0D0D0;
--text-muted: #A0A0A0;
--green: #19970E;
--green-light: #1A9D21;
--black: #1D1D1D;
--white: #FFFFFF;
}

html {
scroll-behavior: smooth;
}

body {
min-height: 100vh;
background: var(--bg);
color: var(--text);
font-family: "Futura", sans-serif;
line-height: 1.5;
overflow-x: hidden;
}

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

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

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

main {
width: 100%;
max-width: 1440px;
margin: 0 auto;
padding: 0 32px;
}

section {
margin-top: 90px;
}

.section-heading {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 28px;
}

.eyebrow {
display: block;
margin-bottom: 8px;
color: #A0A0A0;
font-size: 11px;
font-weight: 800;
letter-spacing: 1.5px;
text-transform: uppercase;
}

.section-heading h2 {
color: #FFFFFF;
font-size: clamp(26px, 3vw, 38px);
line-height: 1.1;
letter-spacing: -1px;
}

.view-all {
color: #D0D0D0;
font-size: 14px;
font-weight: 600;
transition: color 0.15s ease;
}

.view-all:hover {
color: #FFFFFF;
}

.view-all span {
margin-left: 5px;
}

.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0 22px;
border: 0;
border-radius: 9px;
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition:
background 0.15s ease,
transform 0.15s ease;
}

.button:hover {
transform: translateY(-1px);
}

.button-primary {
background: #19970E;
color: #FFFFFF;
}

.button-primary:hover {
background: #1A9D21;
}

.button-secondary {
background: #424242;
color: #FFFFFF;
}

.button-secondary:hover {
background: #4A4A4A;
}

.empty-state {
grid-column: 1 / -1;
width: 100%;
padding: 70px 20px;
border-radius: 16px;
background: #424242;
color: #BDBDBD;
text-align: center;
}

.empty-state-content h2 {
margin-bottom: 8px;
color: #FFFFFF;
font-size: 24px;
}

.empty-state-content p {
color: #BDBDBD;
font-size: 14px;
}

.page-hero {
min-height: 390px;
margin-top: 0;
padding: 110px 8% 80px;
background: #1D1D1D;
border-radius: 0 0 18px 18px;
}

.page-hero h1 {
max-width: 760px;
margin-top: 14px;
color: #FFFFFF;
font-size: clamp(48px, 7vw, 88px);
line-height: 0.98;
letter-spacing: -4px;
}

.page-hero p {
max-width: 570px;
margin-top: 22px;
color: #D0D0D0;
font-size: 17px;
}

@media (max-width: 1200px) {
main {
max-width: 100%;
}
}

@media (max-width: 1000px) {
main {
padding: 0 24px;
}
}

@media (max-width: 700px) {
main {
padding: 0 16px;
}


section {
    margin-top: 65px;
}

.section-heading {
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
}

.page-hero {
    min-height: 360px;
    padding: 78px 6% 58px;
}

.page-hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
}


}
