/*
Theme Name: Obsidian Reels
Theme URI: https://obsidianreels.com
Author: Obsidian Reels
Description: Custom social casino theme with ACF-powered dynamic content.
Version: 1.0.0
Text Domain: obsidianreels
*/

@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Inter:wght@400;500;600;700&family=Syne:wght@400;600;700&display=swap");

:root {
  --color-bg: #050507;
  --color-bg-alt: #0b0c12;
  --color-surface: #0d0d12;
  --color-border: #4e4e4e;
  --color-primary: #7a5cff;
  --color-text: #ffffff;
  --color-text-muted: #b8b8d9;
  --color-text-subtle: rgba(255, 255, 255, 0.5);
  --font-display: "Bungee", cursive;
  --font-body: "Inter", sans-serif;
  --font-accent: "Syne", sans-serif;
  --container-max: 1440px;
  --container-padding: clamp(20px, calc((100vw - 1440px) / 2), 260px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 1000px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1.625px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
  width: fit-content;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(122, 92, 255, 0.5);
}

.btn-primary .arrow-icon {
  width: 16px;
  height: 10px;
  flex-shrink: 0;
}

main {
  display: block;
}

.topbar {
  background: var(--color-primary);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

.topbar__text {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 900px) {
  .btn-primary {
    padding: 14px 24px;
    font-size: 14px;
  }
}
