/**
 * kk3.click - Main Stylesheet
 * Prefix: g4f0-
 * Color Palette: #20B2AA (teal) | #273746 (dark) | #FFF8DC (light)
 */

/* CSS Variables */
:root {
  --g4f0-primary: #20B2AA;
  --g4f0-bg: #273746;
  --g4f0-text: #FFF8DC;
  --g4f0-accent: #FFD700;
  --g4f0-dark: #1a2530;
  --g4f0-card: #2c3e50;
  --g4f0-border: #34495e;
  --g4f0-success: #27ae60;
  --g4f0-warning: #f39c12;
  --g4f0-danger: #e74c3c;
  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%; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--g4f0-bg);
  color: var(--g4f0-text);
  font-size: 1.6rem;
  line-height: 1.5rem;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--g4f0-primary); text-decoration: none; }
a:hover { color: var(--g4f0-accent); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.g4f0-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 52px;
  background: var(--g4f0-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1000;
  border-bottom: 2px solid var(--g4f0-primary);
}
.g4f0-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g4f0-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.g4f0-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g4f0-primary);
  letter-spacing: 1px;
}
.g4f0-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g4f0-btn-register, .g4f0-btn-login {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s ease;
}
.g4f0-btn-register {
  background: var(--g4f0-primary);
  color: var(--g4f0-dark);
}
.g4f0-btn-register:hover { background: #1a9e97; transform: scale(1.05); }
.g4f0-btn-login {
  background: transparent;
  color: var(--g4f0-primary);
  border: 1.5px solid var(--g4f0-primary);
}
.g4f0-btn-login:hover { background: rgba(32,178,170,0.15); }
.g4f0-menu-toggle {
  background: none;
  border: none;
  color: var(--g4f0-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
}

/* Mobile Menu */
.g4f0-mobile-menu {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--g4f0-dark);
  z-index: 9999;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--g4f0-primary);
}
.g4f0-mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--g4f0-text);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--g4f0-border);
  transition: background 0.2s;
}
.g4f0-mobile-menu a:hover {
  background: rgba(32,178,170,0.2);
  color: var(--g4f0-primary);
}

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

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

/* Sections */
.g4f0-section {
  padding: 1.5rem 1rem;
}
.g4f0-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g4f0-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--g4f0-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g4f0-section-title i, .g4f0-section-title .material-icons {
  font-size: 2rem;
}

/* Game Grid */
.g4f0-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.g4f0-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.g4f0-game-item:hover { transform: translateY(-2px); }
.g4f0-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--g4f0-border);
  transition: border-color 0.2s;
}
.g4f0-game-item:hover img { border-color: var(--g4f0-primary); }
.g4f0-game-name {
  font-size: 1.1rem;
  margin-top: 0.3rem;
  color: var(--g4f0-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Category Header */
.g4f0-cat-header {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--g4f0-accent);
  margin: 1.5rem 0 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--g4f0-primary);
}

/* Content Cards */
.g4f0-card {
  background: var(--g4f0-card);
  border-radius: 10px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--g4f0-border);
}
.g4f0-card h2, .g4f0-card h3 {
  color: var(--g4f0-primary);
  margin-bottom: 0.8rem;
}
.g4f0-card p {
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--g4f0-text);
  margin-bottom: 0.6rem;
}

/* Promo Buttons */
.g4f0-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--g4f0-primary), #1a9e97);
  color: var(--g4f0-dark);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}
.g4f0-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(32,178,170,0.4);
}
.g4f0-promo-text {
  color: var(--g4f0-primary);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px dashed var(--g4f0-primary);
}
.g4f0-promo-text:hover { color: var(--g4f0-accent); }

/* Features Grid */
.g4f0-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.g4f0-feature-item {
  background: var(--g4f0-card);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--g4f0-border);
}
.g4f0-feature-item i, .g4f0-feature-item .material-icons {
  font-size: 2.4rem;
  color: var(--g4f0-primary);
  margin-bottom: 0.5rem;
}
.g4f0-feature-item h4 {
  font-size: 1.3rem;
  color: var(--g4f0-accent);
  margin-bottom: 0.3rem;
}
.g4f0-feature-item p {
  font-size: 1.2rem;
  color: var(--g4f0-text);
}

/* Testimonials */
.g4f0-testimonial {
  background: var(--g4f0-card);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--g4f0-primary);
}
.g4f0-testimonial-author {
  font-weight: 700;
  color: var(--g4f0-accent);
  font-size: 1.3rem;
}
.g4f0-testimonial-text {
  font-size: 1.3rem;
  margin-top: 0.3rem;
  line-height: 1.8rem;
}

/* Payment Methods */
.g4f0-payment-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.g4f0-payment-item {
  background: var(--g4f0-card);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  border: 1px solid var(--g4f0-border);
  color: var(--g4f0-text);
}

/* Winners */
.g4f0-winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--g4f0-border);
  font-size: 1.3rem;
}
.g4f0-winner-name { color: var(--g4f0-primary); font-weight: 600; }
.g4f0-winner-amount { color: var(--g4f0-accent); font-weight: 700; }

/* App Download CTA */
.g4f0-app-cta {
  background: linear-gradient(135deg, var(--g4f0-dark), #1a2530);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--g4f0-primary);
}
.g4f0-app-cta h3 {
  color: var(--g4f0-primary);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

/* Footer */
.g4f0-footer {
  background: var(--g4f0-dark);
  padding: 1.5rem 1rem;
  border-top: 2px solid var(--g4f0-primary);
}
.g4f0-footer-brand {
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
  color: var(--g4f0-text);
}
.g4f0-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.g4f0-footer-links a {
  background: var(--g4f0-card);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 1.1rem;
  color: var(--g4f0-text);
  border: 1px solid var(--g4f0-border);
  transition: all 0.2s;
}
.g4f0-footer-links a:hover {
  background: var(--g4f0-primary);
  color: var(--g4f0-dark);
}
.g4f0-footer-copy {
  text-align: center;
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-top: 1rem;
}

/* Bottom Navigation */
.g4f0-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  background: var(--g4f0-dark);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 2px solid var(--g4f0-primary);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}
.g4f0-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  color: #7f8c8d;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  gap: 2px;
}
.g4f0-bottom-nav-btn i,
.g4f0-bottom-nav-btn .material-icons {
  font-size: 24px;
}
.g4f0-bottom-nav-btn:hover {
  color: var(--g4f0-primary);
  transform: scale(1.1);
}
.g4f0-nav-active {
  color: var(--g4f0-primary) !important;
}
.g4f0-bottom-nav-label {
  font-size: 1rem;
}
@media (min-width: 769px) {
  .g4f0-bottom-nav { display: none; }
}

/* FAQ */
.g4f0-faq-item {
  background: var(--g4f0-card);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--g4f0-border);
}
.g4f0-faq-q {
  font-weight: 700;
  color: var(--g4f0-accent);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.g4f0-faq-a {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: var(--g4f0-text);
}

/* Guide Steps */
.g4f0-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.g4f0-step-num {
  background: var(--g4f0-primary);
  color: var(--g4f0-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.g4f0-step-text {
  font-size: 1.3rem;
  line-height: 1.8rem;
}

/* RTP Table */
.g4f0-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.g4f0-rtp-table th {
  background: var(--g4f0-primary);
  color: var(--g4f0-dark);
  padding: 0.6rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.g4f0-rtp-table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--g4f0-border);
  white-space: nowrap;
}
.g4f0-rtp-table tr:hover td { background: rgba(32,178,170,0.1); }

/* Utility */
.g4f0-text-center { text-align: center; }
.g4f0-mt-1 { margin-top: 1rem; }
.g4f0-mb-1 { margin-bottom: 1rem; }
.g4f0-p-1 { padding: 1rem; }
