/*
Theme Name: Thunder Jackpot Quest
Theme URI: https://thunderjackpotquest.com
Author: Thunder Jackpot Quest
Description: Custom WordPress theme for Thunder Jackpot Quest free social casino platform.
Version: 1.0.0
Text Domain: thunderjackpotquest
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #131420;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(to right, #99e007, #fff400);
  color: #0d0d0d;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.625px;
  padding: 16px 32px;
  border-radius: 1000px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
  width: fit-content;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(153, 224, 7, 0.4);
  opacity: 1;
}

.btn-primary .btn-icon {
  width: 16px;
  height: 10px;
}

@media (max-width: 768px) {
  .btn-primary {
    font-size: 14px;
    padding: 12px 24px;
    gap: 16px;
    letter-spacing: 1px;
  }

  .btn-primary .btn-icon {
    width: 12px;
    height: 8px;
  }
}
