/**
 * tk1971.click - Main Stylesheet
 * All classes use prefix: v191-
 * Color palette: #C0C0C0 | #FFD700 | #262626 | #FFB6C1
 * Mobile-first responsive design (max-width: 430px)
 */

/* CSS Variables */
:root {
  --v191-primary: #FFD700;
  --v191-secondary: #FFB6C1;
  --v191-bg: #262626;
  --v191-bg-dark: #1a1a1a;
  --v191-bg-card: #2d2d2d;
  --v191-text: #C0C0C0;
  --v191-text-light: #f5f5f5;
  --v191-accent: #FFD700;
  --v191-accent2: #FFB6C1;
  --v191-border: #3a3a3a;
  --v191-shadow: rgba(0,0,0,0.3);
  --v191-radius: 8px;
  --v191-header-h: 56px;
  --v191-bottom-h: 60px;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--v191-bg);
  color: var(--v191-text);
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
}
a { color: var(--v191-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--v191-accent2); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.v191-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v191-header-h);
  background: var(--v191-bg-dark);
  border-bottom: 1px solid var(--v191-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
}
.v191-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.v191-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.v191-site-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v191-primary);
  letter-spacing: 0.5px;
}
.v191-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v191-btn-register {
  background: linear-gradient(135deg, var(--v191-primary), #e6c200);
  color: var(--v191-bg-dark);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.v191-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 8px rgba(255,215,0,0.4); }
.v191-btn-login {
  background: transparent;
  color: var(--v191-primary);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: 1.5px solid var(--v191-primary);
  cursor: pointer;
  transition: all 0.2s;
}
.v191-btn-login:hover { background: rgba(255,215,0,0.1); }
.v191-menu-toggle {
  background: none;
  border: none;
  color: var(--v191-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* Mobile Menu Overlay */
.v191-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.v191-mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  height: 100%;
  background: var(--v191-bg-dark);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.v191-mobile-menu.v191-menu-open {
  transform: translateX(0);
  visibility: visible;
}
.v191-mobile-menu-close {
  background: none;
  border: none;
  color: var(--v191-text);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 1rem; right: 1rem;
}
.v191-mobile-menu h3 {
  color: var(--v191-primary);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--v191-border);
}
.v191-mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--v191-text-light);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--v191-border);
  transition: color 0.2s;
}
.v191-mobile-menu a:hover { color: var(--v191-primary); }

/* Main Content */
.v191-main {
  padding-top: var(--v191-header-h);
  min-height: 100vh;
}
@media (max-width: 768px) {
  .v191-main { padding-bottom: 80px; }
}

/* Carousel */
.v191-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.v191-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.v191-slide-active { opacity: 1; }
.v191-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v191-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.v191-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(192,192,192,0.5);
}
.v191-dot-active { background: var(--v191-primary); }

/* Sections */
.v191-section {
  padding: 2rem 1.2rem;
}
.v191-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--v191-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--v191-primary);
}
.v191-section-title i { margin-right: 0.6rem; }

/* Game Grid */
.v191-game-category-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--v191-accent2);
  margin: 1.5rem 0 0.8rem;
  padding-left: 0.4rem;
  border-left: 3px solid var(--v191-primary);
}
.v191-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.v191-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.v191-game-card:hover { transform: translateY(-3px); }
.v191-game-card img {
  width: 72px; height: 72px;
  border-radius: 12px;
  border: 1.5px solid var(--v191-border);
  object-fit: cover;
}
.v191-game-card span {
  font-size: 1.1rem;
  color: var(--v191-text);
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.3;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Content Cards */
.v191-card {
  background: var(--v191-bg-card);
  border-radius: var(--v191-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--v191-border);
}
.v191-card h2 {
  font-size: 1.7rem;
  color: var(--v191-primary);
  margin-bottom: 1rem;
}
.v191-card h3 {
  font-size: 1.5rem;
  color: var(--v191-accent2);
  margin: 1rem 0 0.6rem;
}
.v191-card p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: var(--v191-text);
  margin-bottom: 0.8rem;
}

/* Promo Buttons */
.v191-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v191-primary), #e6c200);
  color: var(--v191-bg-dark);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 0.5rem 0;
}
.v191-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(255,215,0,0.4); }

/* Promo text link */
.v191-promo-link {
  color: var(--v191-primary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.v191-promo-link:hover { color: var(--v191-accent2); }

/* FAQ */
.v191-faq-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--v191-border);
}
.v191-faq-item h4 {
  font-size: 1.4rem;
  color: var(--v191-primary);
  margin-bottom: 0.5rem;
}
.v191-faq-item p {
  font-size: 1.3rem;
  color: var(--v191-text);
  line-height: 2rem;
}

/* Footer */
.v191-footer {
  background: var(--v191-bg-dark);
  padding: 2rem 1.2rem;
  border-top: 1px solid var(--v191-border);
  text-align: center;
}
.v191-footer-brand {
  font-size: 1.4rem;
  color: var(--v191-text);
  margin-bottom: 1.2rem;
  line-height: 2rem;
}
.v191-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.v191-footer-links a {
  font-size: 1.2rem;
  color: var(--v191-text);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--v191-border);
  border-radius: 15px;
  transition: all 0.2s;
}
.v191-footer-links a:hover { color: var(--v191-primary); border-color: var(--v191-primary); }
.v191-footer-copy {
  font-size: 1.2rem;
  color: #666;
  margin-top: 1rem;
}

/* Bottom Navigation */
.v191-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--v191-bottom-h);
  background: var(--v191-bg-dark);
  border-top: 1px solid var(--v191-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .v191-bottom-nav { display: none; }
}
.v191-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--v191-text);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.3rem;
}
.v191-bottom-btn:hover, .v191-bottom-btn-active {
  color: var(--v191-primary);
  transform: scale(1.08);
}
.v191-bottom-btn i, .v191-bottom-btn span.material-symbols-outlined {
  font-size: 22px;
  margin-bottom: 2px;
}
.v191-bottom-btn ion-icon {
  font-size: 22px;
  margin-bottom: 2px;
}
.v191-bottom-btn span.v191-btn-label {
  font-size: 1rem;
  line-height: 1;
}

/* Winners showcase */
.v191-winners {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.v191-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  background: rgba(255,215,0,0.05);
  border-radius: 6px;
  border: 1px solid var(--v191-border);
}
.v191-winner-item span {
  font-size: 1.2rem;
  color: var(--v191-text);
}
.v191-winner-amount {
  color: var(--v191-primary) !important;
  font-weight: 600;
}

/* Payment methods */
.v191-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  padding: 1rem 0;
}
.v191-payment-item {
  background: var(--v191-bg-card);
  border: 1px solid var(--v191-border);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  font-size: 1.3rem;
  color: var(--v191-text-light);
}

/* Testimonials */
.v191-testimonial {
  background: var(--v191-bg-card);
  border-radius: var(--v191-radius);
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--v191-primary);
}
.v191-testimonial p {
  font-size: 1.3rem;
  line-height: 2rem;
  color: var(--v191-text);
  margin-bottom: 0.4rem;
}
.v191-testimonial-author {
  font-size: 1.1rem;
  color: var(--v191-primary);
  font-weight: 600;
}

/* App download CTA */
.v191-app-cta {
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,182,193,0.1));
  border: 1px solid var(--v191-primary);
  border-radius: var(--v191-radius);
  padding: 1.5rem;
  text-align: center;
}
.v191-app-cta h3 {
  color: var(--v191-primary);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.v191-app-cta p {
  font-size: 1.3rem;
  color: var(--v191-text);
  margin-bottom: 1rem;
}

/* Internal links */
.v191-internal-link {
  color: var(--v191-accent2);
  text-decoration: underline;
  transition: color 0.2s;
}
.v191-internal-link:hover { color: var(--v191-primary); }

/* RTP compact table */
.v191-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}
.v191-rtp-table th {
  background: rgba(255,215,0,0.15);
  color: var(--v191-primary);
  padding: 0.6rem;
  text-align: left;
  font-weight: 600;
}
.v191-rtp-table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--v191-border);
  color: var(--v191-text);
}

/* Responsive desktop */
@media (min-width: 769px) {
  body { max-width: 430px; }
}
