/* =================================
   LucyGaming - Global Styles Only
   Component-specific CSS lives in each .vue <style>
   ================================= */

:root {
  --color-primary: #ffb320;
  --color-secondary: #ff205f;
  --color-dark: #131313;
  --color-darker: #252525;
  --color-text: #878787;
  --color-border: #d6dee7;
  --color-bg-light: #eef2f6;
  --cata-new: #ff205f;
  --cata-strategy: #4eae60;
  --cata-racing: #694eae;
  --cata-adventure: #40abf5;
  --container-max: 1176px;
  --spacing-section: 60px;
}

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

html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
  color: var(--color-dark);
}

h2 { font-size: 28px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }

p {
  margin: 0 0 1em;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
}

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

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

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
}

/* Helpers */
.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.spad {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
}

.text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white h5, .text-white h6,
.text-white p, .text-white span, .text-white a {
  color: #fff;
}

/* Section title (shared) */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  padding-top: 10px;
  font-size: 28px;
}

/* Buttons */
.site-btn {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  color: var(--color-dark);
  padding: 14px 28px;
  min-width: 140px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  background: var(--color-primary);
  cursor: pointer;
  transition: opacity 0.2s;
}

.site-btn:hover {
  opacity: 0.9;
  color: var(--color-dark);
}

/* Category badges */
.cata {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  padding: 4px 16px;
}

.cata.new { background: var(--cata-new); }
.cata.strategy { background: var(--cata-strategy); }
.cata.racing { background: var(--cata-racing); }
.cata.adventure { background: var(--cata-adventure); }

/* Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
  min-width: 0;
}
/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
}

.col-full { flex: 0 0 100%; max-width: 100%; }
.p-0 { padding: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 24px; }

/* Global responsive section spacing */
@media (max-width: 767px) {
  .spad {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-title {
    margin-bottom: 28px;
  }
  .section-title h2 {
    font-size: 24px;
  }
}

/* WebKit scrollbar (fixes invalid selector earlier) */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
