/**
 * 2022.click - Theme Stylesheet
 * All classes use prefix: uid1-
 * Color palette: #C0C0C0 | #DEB887 | #0C0C0C | #FAFAFA | #DCDCDC | #FF6347
 * @version 1.0.0
 */

/* CSS Variables */
:root {
  --uid1-primary: #DEB887;
  --uid1-secondary: #FF6347;
  --uid1-bg-dark: #0C0C0C;
  --uid1-bg-card: #1A1A1A;
  --uid1-bg-light: #FAFAFA;
  --uid1-text-light: #FAFAFA;
  --uid1-text-dark: #0C0C0C;
  --uid1-text-muted: #C0C0C0;
  --uid1-border: #333333;
  --uid1-accent: #FF6347;
  --uid1-gold: #DEB887;
  --uid1-gray: #DCDCDC;
  --uid1-shadow: rgba(0, 0, 0, 0.3);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--uid1-bg-dark);
  color: var(--uid1-text-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--uid1-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--uid1-accent);
}

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

/* ========== HEADER ========== */
.uid1-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0C0C0C 0%, #1A1A1A 100%);
  border-bottom: 1px solid var(--uid1-border);
  padding: 0 1rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.uid1-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.uid1-logo-wrap img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.6rem;
}

.uid1-logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--uid1-gold);
  letter-spacing: 0.05rem;
}

.uid1-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.uid1-btn-register,
.uid1-btn-login {
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.uid1-btn-register {
  background: linear-gradient(135deg, #FF6347, #FF4500);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 99, 71, 0.4);
}

.uid1-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 99, 71, 0.6);
}

.uid1-btn-login {
  background: transparent;
  color: var(--uid1-gold);
  border: 1.5px solid var(--uid1-gold);
}

.uid1-btn-login:hover {
  background: var(--uid1-gold);
  color: var(--uid1-bg-dark);
}

.uid1-menu-toggle {
  background: none;
  border: none;
  color: var(--uid1-text-muted);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.4rem;
  display: none;
}

/* Desktop Navigation */
.uid1-desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.uid1-desktop-nav a {
  color: var(--uid1-text-muted);
  font-size: 1.3rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.uid1-desktop-nav a:hover {
  color: var(--uid1-gold);
}

/* Mobile Menu */
.uid1-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0C0C0C, #1A1A1A);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 2rem;
  overflow-y: auto;
}

.uid1-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.uid1-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--uid1-border);
}

.uid1-mobile-menu-close {
  background: none;
  border: none;
  color: var(--uid1-text-muted);
  font-size: 2.4rem;
  cursor: pointer;
}

.uid1-mobile-menu-links {
  list-style: none;
}

.uid1-mobile-menu-links li {
  border-bottom: 1px solid var(--uid1-border);
}

.uid1-mobile-menu-links a {
  display: block;
  padding: 1.2rem 0;
  color: var(--uid1-text-light);
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 0.2s;
}

.uid1-mobile-menu-links a:hover {
  color: var(--uid1-gold);
}

/* ========== MAIN CONTENT ========== */
.uid1-main {
  margin-top: 5.6rem;
  min-height: calc(100vh - 5.6rem);
}

.uid1-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}

.uid1-wrapper {
  max-width: 430px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* ========== CAROUSEL ========== */
.uid1-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  margin: 1rem 0;
}

.uid1-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.uid1-slide img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.uid1-slide:first-child {
  display: block;
}

.uid1-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.uid1-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.uid1-dot-active,
.uid1-dot:hover {
  background: var(--uid1-accent);
}

/* ========== SECTION HEADERS ========== */
.uid1-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--uid1-gold);
  margin: 2rem 0 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--uid1-accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.uid1-section-title i {
  color: var(--uid1-accent);
}

/* ========== GAME GRID ========== */
.uid1-game-section {
  margin: 1.5rem 0;
}

.uid1-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.uid1-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 0.8rem;
  padding: 0.5rem;
}

.uid1-game-item:hover {
  transform: scale(1.05);
  background: rgba(222, 184, 135, 0.1);
}

.uid1-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.8rem;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.uid1-game-item:hover img {
  border-color: var(--uid1-gold);
}

.uid1-game-name {
  font-size: 1.1rem;
  color: var(--uid1-text-muted);
  margin-top: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}

/* ========== CONTENT CARDS ========== */
.uid1-card {
  background: var(--uid1-bg-card);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid var(--uid1-border);
}

.uid1-card h2 {
  font-size: 1.7rem;
  color: var(--uid1-gold);
  margin-bottom: 1rem;
}

.uid1-card h3 {
  font-size: 1.5rem;
  color: var(--uid1-primary);
  margin: 1rem 0 0.5rem;
}

.uid1-card p {
  color: var(--uid1-text-muted);
  line-height: 2rem;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.uid1-card ul {
  list-style: none;
  padding: 0;
}

.uid1-card li {
  padding: 0.5rem 0;
  color: var(--uid1-text-muted);
  font-size: 1.3rem;
  line-height: 1.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.uid1-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--uid1-accent);
  font-size: 1.1rem;
}

/* ========== PROMO BUTTONS ========== */
.uid1-promo-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FF6347, #FF4500);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 3rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 99, 71, 0.4);
  margin: 0.5rem 0;
}

.uid1-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 99, 71, 0.6);
}

.uid1-promo-link {
  color: var(--uid1-accent);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1.4rem;
}

.uid1-promo-link:hover {
  color: var(--uid1-gold);
}

.uid1-gold-btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #DEB887, #D4A76A);
  color: #0C0C0C;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 2.5rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.3s;
}

.uid1-gold-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(222, 184, 135, 0.5);
}

/* ========== FAQ SECTION ========== */
.uid1-faq-item {
  background: var(--uid1-bg-card);
  border: 1px solid var(--uid1-border);
  border-radius: 0.8rem;
  margin: 0.8rem 0;
  overflow: hidden;
}

.uid1-faq-q {
  padding: 1.2rem;
  font-weight: 700;
  color: var(--uid1-gold);
  font-size: 1.4rem;
  cursor: pointer;
}

.uid1-faq-a {
  padding: 0 1.2rem 1.2rem;
  color: var(--uid1-text-muted);
  font-size: 1.3rem;
  line-height: 1.8rem;
}

/* ========== RTP TABLE ========== */
.uid1-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}

.uid1-rtp-table th {
  background: var(--uid1-gold);
  color: var(--uid1-bg-dark);
  padding: 0.8rem;
  text-align: left;
  font-weight: 700;
}

.uid1-rtp-table td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--uid1-border);
  color: var(--uid1-text-muted);
}

.uid1-rtp-table tr:hover td {
  background: rgba(222, 184, 135, 0.05);
}

.uid1-rtp-high {
  color: #4CAF50;
  font-weight: 700;
}

/* ========== FOOTER ========== */
.uid1-footer {
  background: linear-gradient(180deg, #1A1A1A, #0C0C0C);
  border-top: 1px solid var(--uid1-border);
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.uid1-footer-content {
  max-width: 430px;
  margin: 0 auto;
}

.uid1-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.uid1-footer-brand p {
  color: var(--uid1-text-muted);
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin: 0.5rem 0;
}

.uid1-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 1rem 0;
}

.uid1-footer-links a {
  color: var(--uid1-text-muted);
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--uid1-border);
  border-radius: 2rem;
  transition: all 0.2s;
}

.uid1-footer-links a:hover {
  color: var(--uid1-gold);
  border-color: var(--uid1-gold);
}

.uid1-footer-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.uid1-footer-promo button {
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.uid1-footer-promo .uid1-btn-reg {
  background: var(--uid1-accent);
  color: #fff;
}

.uid1-footer-promo .uid1-btn-log {
  background: transparent;
  color: var(--uid1-gold);
  border: 1px solid var(--uid1-gold);
}

.uid1-copyright {
  text-align: center;
  color: var(--uid1-text-muted);
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--uid1-border);
  opacity: 0.7;
}

/* ========== BOTTOM NAV (Mobile) ========== */
.uid1-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #1A1A1A, #0C0C0C);
  border-top: 1px solid var(--uid1-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 6rem;
  padding: 0 0.5rem;
}

.uid1-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  min-height: 5rem;
  background: none;
  border: none;
  color: var(--uid1-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0.8rem;
  padding: 0.4rem;
}

.uid1-bottom-nav-btn:hover,
.uid1-bottom-nav-btn.uid1-active {
  color: var(--uid1-gold);
  background: rgba(222, 184, 135, 0.1);
}

.uid1-bottom-nav-btn i,
.uid1-bottom-nav-btn .material-icons,
.uid1-bottom-nav-btn ion-icon {
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
}

.uid1-bottom-nav-btn .material-icons {
  font-size: 2.2rem;
}

.uid1-bottom-nav-btn span {
  font-size: 1rem;
  font-weight: 500;
}

/* ========== TESTIMONIALS ========== */
.uid1-testimonial {
  background: var(--uid1-bg-card);
  border: 1px solid var(--uid1-border);
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin: 0.8rem 0;
}

.uid1-testimonial-name {
  color: var(--uid1-gold);
  font-weight: 700;
  font-size: 1.3rem;
}

.uid1-testimonial-text {
  color: var(--uid1-text-muted);
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin-top: 0.5rem;
}

.uid1-stars {
  color: var(--uid1-gold);
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

/* ========== PAYMENT ========== */
.uid1-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
}

.uid1-payment-item {
  background: var(--uid1-bg-card);
  border: 1px solid var(--uid1-border);
  border-radius: 0.8rem;
  padding: 0.8rem 1.2rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--uid1-text-muted);
}

/* ========== WINNERS ========== */
.uid1-winner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  border-bottom: 1px solid var(--uid1-border);
}

.uid1-winner-name {
  color: var(--uid1-gold);
  font-weight: 600;
  font-size: 1.3rem;
}

.uid1-winner-game {
  color: var(--uid1-text-muted);
  font-size: 1.2rem;
}

.uid1-winner-amount {
  color: var(--uid1-accent);
  font-weight: 700;
  font-size: 1.4rem;
}

/* ========== CTA BANNER ========== */
.uid1-cta-banner {
  background: linear-gradient(135deg, #FF6347, #FF4500);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
}

.uid1-cta-banner h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.uid1-cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .uid1-main {
    padding-bottom: 7rem;
  }

  .uid1-menu-toggle {
    display: block;
  }

  .uid1-desktop-nav {
    display: none;
  }

  .uid1-header {
    padding: 0 0.8rem;
  }

  .uid1-game-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }
}

@media (min-width: 769px) {
  .uid1-bottom-nav {
    display: none;
  }

  .uid1-menu-toggle {
    display: none;
  }

  .uid1-container,
  .uid1-wrapper {
    max-width: 430px;
  }
}

@media (max-width: 360px) {
  .uid1-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .uid1-btn-register,
  .uid1-btn-login {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }

  .uid1-logo-text {
    font-size: 1.6rem;
  }
}
