/* ck44cm Main CSS - prefix: g132- */
:root {
  --g132-primary: #C71585;
  --g132-bg: #1E1E1E;
  --g132-bg-alt: #2C3E50;
  --g132-text: #E9ECEF;
  --g132-text-muted: #FFC0CB;
  --g132-accent: #C71585;
  --g132-accent-light: #FFC0CB;
  --g132-surface: #2C3E50;
  --g132-border: #3a4f63;
  --g132-white: #ECF0F1;
  --g132-gold: #FFD700;
  --g132-radius: 8px;
  --g132-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--g132-bg);
  color: var(--g132-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--g132-accent-light); text-decoration: none; }

/* === HEADER === */
.g132-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: var(--g132-bg-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.g132-header-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.g132-header-brand img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.g132-header-brand span {
  color: var(--g132-accent-light);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.g132-btn-register,
.g132-btn-login {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, opacity 0.2s;
}

.g132-btn-register {
  background: var(--g132-accent);
  color: #fff;
}

.g132-btn-login {
  background: transparent;
  color: var(--g132-accent-light);
  border: 1.5px solid var(--g132-accent);
}

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

.g132-menu-toggle {
  background: none;
  border: none;
  color: var(--g132-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

/* === MOBILE MENU === */
.g132-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.g132-overlay-active { display: block; }

.g132-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100%;
  background: var(--g132-bg);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.g132-menu-active { right: 0; }

.g132-mobile-menu a {
  display: block;
  color: var(--g132-text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--g132-border);
  font-size: 1.4rem;
  transition: color 0.2s;
}
.g132-mobile-menu a:hover { color: var(--g132-accent); }

.g132-menu-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--g132-text);
  font-size: 2rem;
  cursor: pointer;
}

/* === MAIN === */
.g132-main {
  margin-top: 56px;
  min-height: calc(100vh - 56px);
}

/* === CAROUSEL === */
.g132-carousel {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16/7;
  border-radius: 0 0 var(--g132-radius) var(--g132-radius);
}

.g132-carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.g132-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.g132-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g132-slide-active { opacity: 1; }

.g132-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

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

.g132-dot-active { background: var(--g132-accent); }

/* === SECTION === */
.g132-section {
  padding: 2rem 1.2rem;
  max-width: 430px;
  margin: 0 auto;
}

.g132-section-title {
  font-size: 1.8rem;
  color: var(--g132-accent-light);
  margin-bottom: 1.2rem;
  font-weight: 700;
  border-left: 3px solid var(--g132-accent);
  padding-left: 1rem;
}

.g132-section-title i {
  margin-right: 0.5rem;
  font-size: 1.6rem;
}

/* === GAME GRID === */
.g132-game-category-title {
  font-size: 1.5rem;
  color: var(--g132-gold);
  margin: 1.5rem 0 0.8rem;
  font-weight: 600;
}

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

.g132-game-card {
  background: var(--g132-surface);
  border-radius: var(--g132-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.g132-game-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--g132-shadow);
}

.g132-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.g132-game-card span {
  display: block;
  font-size: 1.1rem;
  color: var(--g132-text);
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === CONTENT CARDS === */
.g132-card {
  background: var(--g132-surface);
  border-radius: var(--g132-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--g132-shadow);
}

.g132-card h3 {
  color: var(--g132-accent-light);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

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

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

.g132-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.3rem;
  color: var(--g132-text);
}

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

/* === PROMO BUTTONS === */
.g132-promo-btn {
  display: inline-block;
  background: var(--g132-accent);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 24px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  margin: 0.5rem 0;
}

.g132-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(199,21,133,0.5);
}

.g132-promo-text {
  color: var(--g132-accent);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: underline;
}

.g132-promo-text:hover { color: var(--g132-accent-light); }

/* === FOOTER === */
.g132-footer {
  background: var(--g132-bg-alt);
  padding: 2rem 1.2rem 8rem;
  text-align: center;
}

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

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

.g132-footer-links a {
  color: var(--g132-accent-light);
  font-size: 1.1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(199,21,133,0.15);
  border-radius: 12px;
  transition: background 0.2s;
}

.g132-footer-links a:hover { background: rgba(199,21,133,0.35); }

.g132-footer-copy {
  color: #666;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* === BOTTOM NAV === */
.g132-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, var(--g132-bg-alt), #0f1a24);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  border-top: 1px solid var(--g132-border);
}

.g132-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  cursor: pointer;
  transition: transform 0.2s;
  background: none;
  border: none;
  color: var(--g132-text-muted);
  font-size: 1rem;
  text-decoration: none;
}

.g132-bottom-nav-item i,
.g132-bottom-nav-item .material-icons {
  font-size: 22px;
  margin-bottom: 2px;
}

.g132-bottom-nav-item span {
  font-size: 1rem;
}

.g132-bottom-nav-item:hover,
.g132-bottom-nav-item:focus {
  color: var(--g132-accent);
  transform: scale(1.08);
}

.g132-bottom-nav-item.g132-nav-active {
  color: var(--g132-accent);
}

.g132-bottom-nav-item.g132-nav-active i,
.g132-bottom-nav-item.g132-nav-active .material-icons {
  color: var(--g132-gold);
}

/* === HELPER === */
.g132-text-center { text-align: center; }
.g132-mt-1 { margin-top: 1rem; }
.g132-mb-1 { margin-bottom: 1rem; }
.g132-hidden { display: none; }

/* === RESPONSIVE === */
@media (min-width: 769px) {
  .g132-bottom-nav { display: none; }
  .g132-section { max-width: 600px; }
  .g132-carousel { max-width: 600px; }
  .g132-footer { padding-bottom: 2rem; }
  body { background: #111; }
  .g132-main { max-width: 600px; margin: 56px auto 0; }
  .g132-header { max-width: 600px; left: 50%; transform: translateX(-50%); }
}

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

/* === ANIMATION === */
@keyframes g132-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.g132-animate-in {
  animation: g132-fadeIn 0.4s ease forwards;
}

/* === WINNER TICKER === */
.g132-winner-ticker {
  background: var(--g132-surface);
  border-radius: var(--g132-radius);
  padding: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.g132-winner-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--g132-border);
  font-size: 1.2rem;
}

.g132-winner-item:last-child { border-bottom: none; }

.g132-winner-name {
  color: var(--g132-gold);
  font-weight: 600;
}

.g132-winner-amount {
  color: var(--g132-accent);
  font-weight: 700;
  margin-left: auto;
}

/* === PAYMENT === */
.g132-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

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

/* === TESTIMONIALS === */
.g132-testimonial {
  background: var(--g132-surface);
  border-radius: var(--g132-radius);
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--g132-accent);
}

.g132-testimonial-text {
  font-size: 1.2rem;
  color: var(--g132-text);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.g132-testimonial-author {
  font-size: 1.1rem;
  color: var(--g132-gold);
  font-weight: 600;
}

/* === FEATURES GRID === */
.g132-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.g132-feature-item {
  background: var(--g132-surface);
  border-radius: var(--g132-radius);
  padding: 1rem;
  text-align: center;
}

.g132-feature-item i {
  font-size: 2.4rem;
  color: var(--g132-accent);
  margin-bottom: 0.5rem;
}

.g132-feature-item h4 {
  font-size: 1.2rem;
  color: var(--g132-accent-light);
  margin-bottom: 0.3rem;
}

.g132-feature-item p {
  font-size: 1.1rem;
  color: var(--g132-text);
}

/* === APP CTA === */
.g132-app-cta {
  background: linear-gradient(135deg, var(--g132-accent), #8b0a50);
  border-radius: var(--g132-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
}

.g132-app-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.g132-app-cta p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
