/* ================================
   DEFAULT.CSS — Gaming UI Base
   ================================ */

/* Gaming Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --font-ui: Inter, sans-serif;
  --font-gaming: Inter, sans-serif;

  --bg: #0d0f12;
  --surface: #15181d;
  --surface-2: #1d2128;
  --text: #f5f7fa;
  --text-muted: #9299a6;

  --accent: #ffd400;
  --accent-2: #ff9d00;
  --success: #00c853;
  --danger: #ff3d57;

  --border: rgba(255, 255, 255, 0.09);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  --transition: 180ms ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  /* background: var(--bg);
  -webkit-font-smoothing: antialiased; */
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-ui);
}

h1, h2, h3, h4, h5, h6,
p {
  margin: 0;
}

h1, h2, h3,
.game-title,
.brand-title {
  font-family: var(--font-gaming);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}
input,
textarea,
select {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}
/* Reusable Helpers */
.container {
  width: min(100% - 24px, 1200px);
  margin-inline: auto;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.grid {
  display: grid;
}
.hidden {
  display: none !important;
}
.w-full {
  width: 100%;
}
.text-center {
  text-align: center;
}
.muted {
  color: var(--text-muted);
}
/* Common Gaming Card */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* Common Buttons */
.btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition:
    transform var(--transition),
    opacity var(--transition),
    background var(--transition);
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.btn-success {
  color: #fff;
  background: var(--success);
}
.btn-outline {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}
/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-thumb {
  background: #353b45;
  border-radius: 20px;
}
/* Mobile Defaults */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    width: min(100% - 20px, 1200px);
  }
}