/* tk333 CSS Styles - All classes use v42b- prefix */
/* Color palette: #FFD700 | #EEEEEE | #B03060 | #FF69B4 | #2C2C2C | #FF5722 */

:root {
  --v42b-gold: #FFD700;
  --v42b-light: #EEEEEE;
  --v42b-berry: #B03060;
  --v42b-pink: #FF69B4;
  --v42b-dark: #2C2C2C;
  --v42b-orange: #FF5722;
  --v42b-bg: #1a1a2e;
  --v42b-surface: #16213e;
  --v42b-text: #EEEEEE;
  --v42b-accent: #FFD700;
  --v42b-radius: 8px;
}

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(--v42b-bg);
  color: var(--v42b-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.v42b-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--v42b-dark) 0%, #0f3460 100%);
  border-bottom: 2px solid var(--v42b-gold);
  max-width: 430px;
  margin: 0 auto;
}

.v42b-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  height: 52px;
}

.v42b-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.v42b-logo img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.v42b-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v42b-gold);
  letter-spacing: 1px;
}

.v42b-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.v42b-btn {
  padding: 6px 14px;
  border: none;
  border-radius: var(--v42b-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-height: 36px;
  line-height: 2.2rem;
}

.v42b-btn-register {
  background: var(--v42b-orange);
  color: #fff;
}

.v42b-btn-register:hover {
  background: #e64a19;
  transform: scale(1.03);
}

.v42b-btn-login {
  background: var(--v42b-gold);
  color: var(--v42b-dark);
}

.v42b-btn-login:hover {
  background: #ffca28;
  transform: scale(1.03);
}

.v42b-menu-btn {
  background: none;
  border: none;
  color: var(--v42b-gold);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 4px;
}

/* Mobile Menu */
.v42b-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--v42b-surface);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 20px 16px;
  overflow-y: auto;
}

.v42b-menu-open {
  right: 0 !important;
}

.v42b-menu-closed {
  right: -280px;
}

.v42b-menu-close {
  background: none;
  border: none;
  color: var(--v42b-gold);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 14px;
}

.v42b-menu-title {
  font-size: 1.8rem;
  color: var(--v42b-gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.v42b-menu-links {
  list-style: none;
}

.v42b-menu-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v42b-menu-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  color: var(--v42b-light);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.2s;
}

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

.v42b-menu-links .material-icons,
.v42b-menu-links .fas,
.v42b-menu-links .bi {
  font-size: 18px;
  color: var(--v42b-pink);
}

/* Overlay */
.v42b-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  max-width: 430px;
  margin: 0 auto;
}

/* Banner Carousel */
.v42b-banner {
  position: relative;
  margin-top: 52px;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

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

.v42b-banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.v42b-banner-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.v42b-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.v42b-dot-active {
  background: var(--v42b-gold) !important;
}

/* Main Content */
.v42b-main {
  padding: 12px;
  padding-bottom: 80px;
}

/* Section Title */
.v42b-section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--v42b-gold);
  margin: 18px 0 10px;
  padding-left: 10px;
  border-left: 4px solid var(--v42b-orange);
}

/* Game Grid */
.v42b-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.v42b-game-item {
  text-align: center;
  cursor: pointer;
  border-radius: var(--v42b-radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 4px;
  transition: transform 0.2s, background 0.2s;
}

.v42b-game-item:hover {
  transform: scale(1.04);
  background: rgba(255, 215, 0, 0.08);
}

.v42b-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

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

/* Content Sections */
.v42b-content-block {
  background: var(--v42b-surface);
  border-radius: var(--v42b-radius);
  padding: 14px;
  margin: 12px 0;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.v42b-content-block h2 {
  font-size: 1.6rem;
  color: var(--v42b-gold);
  margin-bottom: 8px;
}

.v42b-content-block h3 {
  font-size: 1.4rem;
  color: var(--v42b-pink);
  margin: 10px 0 6px;
}

.v42b-content-block p {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: var(--v42b-light);
  margin-bottom: 8px;
}

.v42b-content-block ul {
  padding-left: 18px;
  margin-bottom: 8px;
}

.v42b-content-block li {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: var(--v42b-light);
  margin-bottom: 4px;
}

/* Promo Buttons in Content */
.v42b-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v42b-orange), var(--v42b-berry));
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  margin: 6px 0;
}

.v42b-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(255, 87, 34, 0.4);
}

/* Winners Showcase */
.v42b-winner-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v42b-winner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 6px;
  font-size: 1.2rem;
}

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

.v42b-winner-amount {
  color: var(--v42b-orange);
  font-weight: 700;
}

/* Payment Methods */
.v42b-payment-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
}

.v42b-payment-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 1.2rem;
  color: var(--v42b-light);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

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

.v42b-rtp-table th {
  background: var(--v42b-berry);
  color: #fff;
  padding: 6px 8px;
  text-align: left;
}

.v42b-rtp-table td {
  padding: 5px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--v42b-light);
}

.v42b-rtp-table tr:hover td {
  background: rgba(255, 215, 0, 0.05);
}

/* Footer */
.v42b-footer {
  background: linear-gradient(180deg, var(--v42b-surface), var(--v42b-dark));
  padding: 20px 14px;
  margin-top: 20px;
  border-top: 2px solid var(--v42b-gold);
}

.v42b-footer-brand {
  font-size: 1.3rem;
  color: var(--v42b-light);
  margin-bottom: 12px;
  line-height: 1.8rem;
}

.v42b-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.v42b-footer-link {
  background: rgba(255, 215, 0, 0.1);
  color: var(--v42b-gold);
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.v42b-footer-link:hover {
  background: rgba(255, 215, 0, 0.2);
}

.v42b-footer-copy {
  font-size: 1.1rem;
  color: #888;
  text-align: center;
  margin-top: 10px;
}

/* Bottom Navigation */
.v42b-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  background: linear-gradient(180deg, #16213e, #0f3460);
  border-top: 2px solid var(--v42b-gold);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
}

.v42b-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 54px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--v42b-light);
  transition: all 0.2s;
  border-radius: 8px;
  padding: 2px;
}

.v42b-bottom-btn:hover,
.v42b-bottom-btn:active {
  color: var(--v42b-gold);
  transform: scale(1.08);
}

.v42b-bottom-btn .v42b-nav-icon {
  font-size: 22px;
  margin-bottom: 2px;
}

.v42b-bottom-btn .v42b-nav-label {
  font-size: 1rem;
  line-height: 1.2rem;
}

.v42b-bottom-active {
  color: var(--v42b-gold) !important;
  background: rgba(255, 215, 0, 0.08);
}

/* Desktop hide bottom nav */
@media (min-width: 769px) {
  .v42b-bottom-nav {
    display: none;
  }
}

/* Mobile bottom padding */
@media (max-width: 768px) {
  .v42b-main {
    padding-bottom: 80px;
  }
}

/* Utility */
.v42b-text-gold { color: var(--v42b-gold); }
.v42b-text-pink { color: var(--v42b-pink); }
.v42b-text-orange { color: var(--v42b-orange); }
.v42b-bold { font-weight: 700; }
.v42b-mt-10 { margin-top: 10px; }
.v42b-mb-10 { margin-bottom: 10px; }
.v42b-center { text-align: center; }

/* Testimonial Cards */
.v42b-testimonial {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 8px 0;
  border-left: 3px solid var(--v42b-gold);
}

.v42b-testimonial-user {
  color: var(--v42b-gold);
  font-weight: 600;
  font-size: 1.2rem;
}

.v42b-testimonial-text {
  color: var(--v42b-light);
  font-size: 1.2rem;
  margin-top: 4px;
  line-height: 1.6rem;
}

/* Category Badge */
.v42b-cat-badge {
  display: inline-block;
  background: var(--v42b-berry);
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 1.1rem;
  margin: 2px;
}

/* FAQ Accordion */
.v42b-faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  margin: 6px 0;
  overflow: hidden;
}

.v42b-faq-q {
  padding: 10px 12px;
  font-weight: 600;
  color: var(--v42b-gold);
  font-size: 1.3rem;
  cursor: default;
}

.v42b-faq-a {
  padding: 8px 12px 10px;
  color: var(--v42b-light);
  font-size: 1.2rem;
  line-height: 1.6rem;
}

/* App Download CTA */
.v42b-app-cta {
  background: linear-gradient(135deg, var(--v42b-dark), #0f3460);
  border: 2px solid var(--v42b-gold);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin: 12px 0;
}

.v42b-app-cta h3 {
  color: var(--v42b-gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.v42b-app-cta p {
  color: var(--v42b-light);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Internal Links */
.v42b-internal-link {
  color: var(--v42b-pink);
  text-decoration: underline;
  cursor: pointer;
}

.v42b-internal-link:hover {
  color: var(--v42b-gold);
}

/* Responsive Tweaks */
@media (max-width: 360px) {
  .v42b-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 431px) and (max-width: 768px) {
  .v42b-header,
  .v42b-bottom-nav,
  .v42b-banner,
  .v42b-overlay,
  .v42b-mobile-menu {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }
}
