/* ============================================
   ARXES STUDIOS — Base & Layout
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: clamp(15px, 1.8vw, 17px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-normal), opacity var(--duration-normal), transform var(--duration-normal);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Section defaults */
section {
  position: relative;
  z-index: 2;
  padding: var(--section-padding-y) var(--section-padding-x);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.section-label {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal),
              background var(--duration-normal),
              color var(--duration-normal),
              border-color var(--duration-normal);
  z-index: 1;
}

.btn-gold {
  background: var(--accent-gold);
  color: #000;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 204, 0, 0.35);
  color: #000;
}

.btn-outline {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  box-shadow: 0 0 30px var(--accent-purple-dim);
  background: var(--accent-purple-dim);
}

.btn-youtube {
  border: 2px solid #FF0000;
  color: #FF0000;
  background: transparent;
}

.btn-youtube:hover {
  background: #FF0000;
  color: #fff;
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.4);
}

.btn-beta {
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  background: transparent;
}

.btn-beta:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}
