/*
Theme Name: Quartz Reels
Theme URI: https://quartzreels.com
Author: Quartz Reels
Description: Custom WordPress theme for Quartz Reels social casino.
Version: 1.0.0
Text Domain: quartzreels
*/

:root {
  --color-bg: #0a0f24;
  --color-text: #ffffff;
  --color-topbar: #8be9fd;
  --gradient-btn: linear-gradient(90deg, #8be9fd 0%, #c792ea 100%);
  --container: 1440px;
  --font-heading: "Syne", "Segoe UI", system-ui, sans-serif;
  --font-body: "Syne", "Segoe UI", system-ui, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 0.6em;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--gradient-btn);
  color: #0a0f24;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 233, 253, 0.25);
}
.btn .arrow {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.topbar {
  background: var(--color-topbar);
  color: #0a0f24;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

body.qr-resizing *,
body.qr-resizing *::before,
body.qr-resizing *::after {
  transition: none !important;
  animation: none !important;
}

@media (max-width: 900px) {
  .section-title {
    font-size: 28px;
  }
  .topbar {
    font-size: 10px;
  }
}
