/*
Theme Name: Crystal Reel Quest
Theme URI: https://crystalreelquest.net
Description: Custom theme for Crystal Reel Quest social casino platform.
Version: 1.0.0
Author: Crystal Reel Quest
Author URI: https://crystalreelquest.net
Text Domain: crystalreelquest
*/

:root {
  --color-bg: #0b0d2a;
  --color-bg-light: #111336;
  --color-bg-card: #161842;
  --color-bg-card-hover: #1c1f52;
  --color-primary: #7c3aed;
  --color-primary-hover: #6d28d9;
  --color-accent: #a78bfa;
  --color-text: #ffffff;
  --color-text-muted: #c7c7c7;
  --color-text-secondary: #c4b5fd;
  --color-border: rgba(124, 58, 237, 0.3);
  --color-star: #facc15;
  --color-gold: #f59e0b;
  --color-silver: #9ca3af;
  --color-bronze: #d97706;
  --font-heading: "Michroma", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --container-max: 1440px;
  --container-padding: 20px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #0a061f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .section-padding {
    padding: 20px 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(180deg, #9e91ff -4.55%, #7c69ff 104.55%);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(124, 58, 237, 0.1);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-description {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 800px;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.page-content p {
  margin-bottom: 24px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--color-text-muted);
}

.page-content li {
  margin-bottom: 8px;
}
