/*
Theme Name: Scarlet Reels
Theme URI: https://scarletreels.com
Description: Custom theme for Scarlet Reels gaming website
Version: 1.0
Author: Scarlet Reels
Text Domain: scarletreels
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&family=Figtree:wght@400;900&display=swap");

/* ========== Variables ========== */
:root {
  --dark-bg: #420515;
  --darker-bg: #240101;
  --gradient-start: #e60040;
  --gradient-mid: #b30032;
  --gradient-end: #800024;
  --faq-bg: #710824;
  --step-circle: #ff3f71;
  --step-box: #a8183f;
  --footer-bg: #000000;
  --gold: #fecd40;
  --gray-text: #a2a2a2;
  --white: #ffffff;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Figtree", sans-serif;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

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

ul,
ol {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-white {
  background: var(--white);
  color: #b0019a;
}

.btn-white-dark {
  background: var(--white);
  color: #4c0303;
}

.btn-white-red {
  background: var(--white);
  color: #b40032;
}

/* ========== Shared Section Header ========== */
.section-header {
  text-align: center;
  margin-bottom: 46px;
}

.section-header h2 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 60px;
  color: var(--white);
  letter-spacing: -3.6px;
  line-height: 0.9;
}

.section-header p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-text);
  letter-spacing: -0.96px;
  max-width: 456px;
  margin: 15px auto 0;
}

@media (max-width: 1024px) {
  .section-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .section-header p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 28px;
  }
}
