/* TAYA365 Core Stylesheet - prefix: ga15- */
/* Color palette: #B8860B | #FFC0CB | #1A1A2E | #FF6347 | #FFB347 */

:root {
  --ga15-primary: #B8860B;
  --ga15-accent: #FFC0CB;
  --ga15-bg: #1A1A2E;
  --ga15-danger: #FF6347;
  --ga15-warm: #FFB347;
  --ga15-bg-dark: #0F0F1A;
  --ga15-bg-card: #252540;
  --ga15-text: #F0E6D3;
  --ga15-text-muted: #A89B8C;
  --ga15-border: #3A3A5C;
  --ga15-gold: #D4A843;
  --ga15-shadow: rgba(0,0,0,0.3);
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--ga15-bg);
  color: var(--ga15-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

/* ========== Header ========== */
.ga15-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(135deg, var(--ga15-bg-dark) 0%, #1E1E35 100%);
  border-bottom: 2px solid var(--ga15-primary);
  z-index: 1000;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ga15-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ga15-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.ga15-site-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ga15-gold);
  letter-spacing: 0.5px;
}

.ga15-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ga15-btn-register,
.ga15-btn-login {
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.ga15-btn-register {
  background: linear-gradient(135deg, var(--ga15-primary), var(--ga15-warm));
  color: #1A1A2E;
  box-shadow: 0 2px 8px rgba(184,134,11,0.4);
}

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

.ga15-btn-register:hover,
.ga15-btn-login:hover {
  transform: scale(1.05);
}

.ga15-menu-toggle {
  background: none;
  border: none;
  color: var(--ga15-warm);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Mobile Menu ========== */
.ga15-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: var(--ga15-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  border-left: 2px solid var(--ga15-primary);
}

.ga15-menu-active {
  right: 0;
}

.ga15-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}

.ga15-overlay-active {
  display: block;
}

.ga15-menu-close {
  background: none;
  border: none;
  color: var(--ga15-warm);
  font-size: 2.2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.ga15-menu-links {
  list-style: none;
  margin-top: 3rem;
}

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

.ga15-menu-links a {
  display: block;
  padding: 1.2rem 0.5rem;
  color: var(--ga15-text);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.2s, padding-left 0.2s;
}

.ga15-menu-links a:hover {
  color: var(--ga15-gold);
  padding-left: 1rem;
}

/* ========== Main Content ========== */
.ga15-main {
  padding-top: 6rem;
  padding-bottom: 2rem;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .ga15-main {
    padding-bottom: 8rem;
  }
}

.ga15-container {
  width: 100%;
  padding: 0 1rem;
}

/* ========== Carousel ========== */
.ga15-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
}

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

.ga15-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
}

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

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

.ga15-dot-active {
  background: var(--ga15-gold);
}

/* ========== Section Titles ========== */
.ga15-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ga15-gold);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ga15-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ga15-section-title i {
  font-size: 2rem;
  color: var(--ga15-warm);
}

/* ========== Game Grid ========== */
.ga15-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.ga15-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s;
}

.ga15-game-item:hover {
  transform: scale(1.05);
}

.ga15-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.6rem;
  border: 1.5px solid var(--ga15-border);
  object-fit: cover;
}

.ga15-game-item p {
  font-size: 1.05rem;
  color: var(--ga15-text);
  margin-top: 0.3rem;
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========== Content Cards ========== */
.ga15-card {
  background: var(--ga15-bg-card);
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--ga15-border);
}

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

.ga15-card h3 {
  font-size: 1.4rem;
  color: var(--ga15-warm);
  margin: 1rem 0 0.5rem;
}

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

.ga15-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.ga15-card li {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: var(--ga15-text);
  margin-bottom: 0.4rem;
}

/* ========== Promo Buttons ========== */
.ga15-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--ga15-primary), var(--ga15-warm));
  color: #1A1A2E;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}

.ga15-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(184,134,11,0.5);
}

.ga15-promo-link {
  color: var(--ga15-warm);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px dashed var(--ga15-warm);
}

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

/* ========== Footer ========== */
.ga15-footer {
  background: var(--ga15-bg-dark);
  border-top: 2px solid var(--ga15-primary);
  padding: 2rem 1rem;
  text-align: center;
}

.ga15-footer-desc {
  font-size: 1.2rem;
  color: var(--ga15-text-muted);
  line-height: 1.6rem;
  margin-bottom: 1.5rem;
}

.ga15-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ga15-footer-links a {
  color: var(--ga15-warm);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--ga15-border);
  border-radius: 1.5rem;
  transition: background 0.2s, color 0.2s;
}

.ga15-footer-links a:hover {
  background: var(--ga15-primary);
  color: #1A1A2E;
}

.ga15-footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ga15-footer-partners img {
  height: 2.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ga15-footer-partners img:hover {
  opacity: 1;
}

.ga15-copyright {
  font-size: 1.1rem;
  color: var(--ga15-text-muted);
  margin-top: 1rem;
}

/* ========== Bottom Navigation ========== */
.ga15-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: linear-gradient(180deg, #1E1E35, var(--ga15-bg-dark));
  border-top: 2px solid var(--ga15-primary);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.3rem;
}

@media (max-width: 768px) {
  .ga15-bottom-nav {
    display: flex;
  }
}

.ga15-bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--ga15-text-muted);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  padding: 0.3rem;
}

.ga15-bnav-btn:hover,
.ga15-bnav-btn:active {
  color: var(--ga15-gold);
  transform: scale(1.1);
}

.ga15-bnav-btn .ga15-bnav-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.ga15-bnav-btn .ga15-bnav-text {
  font-size: 1rem;
  margin-top: 0.2rem;
  line-height: 1.2rem;
}

.ga15-bnav-active {
  color: var(--ga15-gold) !important;
}

/* ========== FAQ ========== */
.ga15-faq-item {
  margin-bottom: 1rem;
}

.ga15-faq-q {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ga15-warm);
  margin-bottom: 0.3rem;
}

.ga15-faq-a {
  font-size: 1.2rem;
  color: var(--ga15-text);
  line-height: 1.6rem;
  padding-left: 1rem;
}

/* ========== Testimonials ========== */
.ga15-testimonial {
  background: var(--ga15-bg-card);
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--ga15-primary);
}

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

.ga15-testimonial-text {
  font-size: 1.2rem;
  color: var(--ga15-text);
  line-height: 1.5rem;
  margin-top: 0.4rem;
}

/* ========== Winner Ticker ========== */
.ga15-winner-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ga15-winner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background: var(--ga15-bg-card);
  border-radius: 0.5rem;
  font-size: 1.2rem;
}

.ga15-winner-name {
  color: var(--ga15-warm);
  font-weight: 600;
}

.ga15-winner-amount {
  color: var(--ga15-danger);
  font-weight: 700;
}

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

/* ========== Payment Icons ========== */
.ga15-payment-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0;
}

.ga15-payment-item {
  background: var(--ga15-bg-card);
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  color: var(--ga15-text);
  border: 1px solid var(--ga15-border);
}

/* ========== Responsive Utilities ========== */
.ga15-text-center { text-align: center; }
.ga15-mt-1 { margin-top: 1rem; }
.ga15-mt-2 { margin-top: 2rem; }
.ga15-mb-1 { margin-bottom: 1rem; }
.ga15-mb-2 { margin-bottom: 2rem; }

.ga15-hidden-mobile {
  display: block;
}
@media (max-width: 768px) {
  .ga15-hidden-mobile {
    display: none;
  }
}

/* ========== Desktop adjustments ========== */
@media (min-width: 769px) {
  .ga15-header {
    max-width: 430px;
  }
  .ga15-bottom-nav {
    display: none !important;
  }
}
