/* f8net - style-9bc2.css
 * Mobile-first casino/gaming styles. All custom classes use the gc25- prefix.
 * Palette: #3A3A3A (dark bg) / #CD853F (light accent).
 * Root font-size 62.5% -> 1rem = 10px.
 */

:root {
  --gc25-primary: #CD853F;
  --gc25-primary-dark: #B0732F;
  --gc25-bg: #3A3A3A;
  --gc25-bg-dark: #2a2a2a;
  --gc25-bg-darker: #1f1f1f;
  --gc25-text: #f5e9d8;
  --gc25-text-muted: #c4b39a;
  --gc25-card: #4a4a4a;
  --gc25-border: #5a5a5a;
  --gc25-success: #5bbf8a;
  --gc25-danger: #e06464;
  --gc25-gold: #f0c869;
}

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

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--gc25-bg-dark);
  color: var(--gc25-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.gc25-wrapper {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: var(--gc25-bg-dark);
}

.gc25-container {
  width: 100%;
  padding: 0 1.2rem;
}

/* ===== Header ===== */
.gc25-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a2a2a 0%, #3A3A3A 100%);
  border-bottom: 0.2rem solid var(--gc25-primary);
  z-index: 1000;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.4);
}

.gc25-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--gc25-text);
}

.gc25-logo img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--gc25-primary);
}

.gc25-logo-text {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gc25-primary), var(--gc25-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gc25-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gc25-btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 0.6rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  min-height: 4.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
}

.gc25-btn-login {
  background: transparent;
  color: var(--gc25-primary);
  border: 0.15rem solid var(--gc25-primary);
}

.gc25-btn-register {
  background: linear-gradient(135deg, var(--gc25-primary), var(--gc25-primary-dark));
  color: #1f1f1f;
  box-shadow: 0 0.3rem 0.8rem rgba(205,133,63,0.4);
}

.gc25-btn:hover { transform: translateY(-0.1rem); }
.gc25-btn:active { transform: scale(0.96); }

.gc25-menu-btn {
  background: transparent;
  border: 0.1rem solid var(--gc25-border);
  color: var(--gc25-text);
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Mobile Menu ===== */
.gc25-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--gc25-bg-darker);
  border-bottom: 0.2rem solid var(--gc25-primary);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  padding: 5rem 1.2rem 1.2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.gc25-mobile-menu.gc25-menu-open {
  transform: translateY(0);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.6);
}

.gc25-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--gc25-text);
  font-size: 2.2rem;
  cursor: pointer;
  width: 3.6rem;
  height: 3.6rem;
}

.gc25-menu-link {
  display: block;
  padding: 1.1rem 1rem;
  color: var(--gc25-text);
  text-decoration: none;
  border-bottom: 0.1rem solid var(--gc25-border);
  font-size: 1.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.gc25-menu-link:hover {
  background: var(--gc25-card);
  color: var(--gc25-primary);
}

.gc25-menu-link i { margin-right: 0.8rem; color: var(--gc25-primary); }

/* ===== Main ===== */
.gc25-main {
  padding-top: 6.4rem;
}

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

/* ===== Carousel ===== */
.gc25-carousel {
  position: relative;
  width: 100%;
  height: 18rem;
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
  background: var(--gc25-bg-darker);
  margin-bottom: 1.2rem;
}

.gc25-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.gc25-carousel-slide.gc25-slide-active { opacity: 1; }

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

.gc25-carousel-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 2.6rem;
  background: rgba(0,0,0,0.55);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  border-left: 0.3rem solid var(--gc25-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gc25-text);
}

.gc25-carousel-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.gc25-carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gc25-carousel-dot.gc25-dot-active {
  background: var(--gc25-primary);
  transform: scale(1.25);
}

/* ===== Section ===== */
.gc25-section {
  padding: 1.6rem 1.2rem;
}

.gc25-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gc25-primary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gc25-section-title i { color: var(--gc25-gold); font-size: 2.2rem; }

.gc25-section-subtitle {
  font-size: 1.4rem;
  color: var(--gc25-text-muted);
  margin-bottom: 1rem;
}

.gc25-h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gc25-text);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.gc25-h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gc25-primary);
  margin: 1.6rem 0 0.8rem;
}

.gc25-h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gc25-gold);
  margin: 1.2rem 0 0.6rem;
}

.gc25-p {
  margin-bottom: 1rem;
  color: var(--gc25-text);
  font-size: 1.4rem;
  line-height: 1.6;
}

.gc25-promo-text {
  color: var(--gc25-primary);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* ===== Category banner ===== */
.gc25-cat-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(90deg, var(--gc25-card), var(--gc25-bg-dark));
  border-left: 0.4rem solid var(--gc25-primary);
  border-radius: 0.5rem;
  margin: 1.4rem 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gc25-gold);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.gc25-cat-banner span { color: var(--gc25-text-muted); font-size: 1.2rem; font-weight: 400; }

/* ===== Game grid ===== */
.gc25-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

@media (min-width: 400px) {
  .gc25-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.gc25-game-card {
  background: var(--gc25-card);
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 0.1rem solid var(--gc25-border);
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}

.gc25-game-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1.2rem rgba(205,133,63,0.35);
  border-color: var(--gc25-primary);
}

.gc25-game-card:active { transform: scale(0.95); }

.gc25-game-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--gc25-bg-darker);
}

.gc25-game-name {
  font-size: 1.1rem;
  padding: 0.4rem 0.3rem 0.6rem;
  color: var(--gc25-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

/* ===== Feature cards ===== */
.gc25-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gc25-feature-card {
  background: var(--gc25-card);
  border-radius: 0.8rem;
  padding: 1.2rem;
  border-left: 0.3rem solid var(--gc25-primary);
}

.gc25-feature-card h3 {
  font-size: 1.6rem;
  color: var(--gc25-primary);
  margin-bottom: 0.4rem;
}

.gc25-feature-card p { font-size: 1.3rem; color: var(--gc25-text-muted); }

/* ===== RTP table ===== */
.gc25-rpt-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--gc25-card);
  border-radius: 0.6rem;
  overflow: hidden;
  font-size: 1.3rem;
}

.gc25-rpt-table th, .gc25-rpt-table td {
  padding: 0.8rem 0.6rem;
  text-align: left;
  border-bottom: 0.1rem solid var(--gc25-border);
}

.gc25-rpt-table th {
  background: var(--gc25-primary);
  color: #1f1f1f;
  font-weight: 700;
}

.gc25-rpt-table tr:last-child td { border-bottom: none; }
.gc25-rpt-bar { background: var(--gc25-bg-darker); border-radius: 0.4rem; height: 0.8rem; overflow: hidden; }
.gc25-rpt-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gc25-primary), var(--gc25-gold)); }

/* ===== Testimonials ===== */
.gc25-testimonial {
  background: var(--gc25-card);
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 0.3rem solid var(--gc25-gold);
}

.gc25-testimonial-name { font-weight: 700; color: var(--gc25-primary); font-size: 1.4rem; }
.gc25-testimonial-stars { color: var(--gc25-gold); font-size: 1.2rem; margin: 0.2rem 0; }
.gc25-testimonial-text { font-size: 1.3rem; color: var(--gc25-text-muted); }

/* ===== Payment / winners ===== */
.gc25-pay-row, .gc25-winner-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.8rem;
  background: var(--gc25-card);
  border-radius: 0.6rem;
  margin-bottom: 0.5rem;
}

.gc25-pay-icon, .gc25-winner-icon {
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  background: var(--gc25-primary);
  display: flex; align-items: center; justify-content: center;
  color: #1f1f1f; font-weight: 800; font-size: 1.4rem;
  flex-shrink: 0;
}

.gc25-winner-amount { color: var(--gc25-gold); font-weight: 800; }
.gc25-winner-game { color: var(--gc25-text-muted); font-size: 1.2rem; }

/* ===== CTA banner ===== */
.gc25-cta {
  background: linear-gradient(135deg, var(--gc25-primary), var(--gc25-primary-dark));
  border-radius: 1rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
  margin: 1.2rem 0;
  color: #1f1f1f;
}

.gc25-cta h2 { color: #1f1f1f; margin-bottom: 0.4rem; }
.gc25-cta p { color: #2a2a2a; margin-bottom: 0.8rem; font-size: 1.3rem; }

.gc25-cta-btn {
  background: var(--gc25-bg-darker);
  color: var(--gc25-gold);
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.6rem;
  font-weight: 800;
  font-size: 1.5rem;
  cursor: pointer;
  min-height: 4.4rem;
}

/* ===== Footer ===== */
.gc25-footer {
  background: var(--gc25-bg-darker);
  border-top: 0.3rem solid var(--gc25-primary);
  padding: 1.6rem 1.2rem 2rem;
  margin-top: 2rem;
}

.gc25-footer-brand {
  font-size: 1.5rem;
  color: var(--gc25-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.gc25-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.gc25-footer-link {
  background: var(--gc25-card);
  color: var(--gc25-primary);
  border: 0.1rem solid var(--gc25-border);
  border-radius: 0.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s ease;
}

.gc25-footer-link:hover { background: var(--gc25-primary); color: #1f1f1f; }

.gc25-footer-copy {
  font-size: 1.2rem;
  color: var(--gc25-text-muted);
  border-top: 0.1rem solid var(--gc25-border);
  padding-top: 1rem;
  text-align: center;
}

/* ===== Bottom nav ===== */
.gc25-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #3A3A3A 0%, #1f1f1f 100%);
  border-top: 0.2rem solid var(--gc25-primary);
  height: 6rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -0.4rem 1rem rgba(0,0,0,0.5);
}

.gc25-bottom-nav-btn {
  flex: 1;
  min-width: 6rem;
  min-height: 6rem;
  background: transparent;
  border: none;
  color: var(--gc25-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.gc25-bottom-nav-btn i, .gc25-bottom-nav-btn .material-icons-outlined,
.gc25-bottom-nav-btn .ion-icon { font-size: 2.4rem; }

.gc25-bottom-nav-btn:hover { color: var(--gc25-primary); }
.gc25-bottom-nav-btn:active { transform: scale(0.9); }

.gc25-bottom-nav-btn.gc25-nav-active {
  color: var(--gc25-primary);
}

.gc25-bottom-nav-btn.gc25-nav-active::before {
  content: '';
  position: absolute;
  top: 0;
  width: 2.4rem;
  height: 0.3rem;
  background: var(--gc25-primary);
  border-radius: 0 0 0.3rem 0.3rem;
}

.gc25-nav-badge {
  position: absolute;
  top: 0.6rem;
  right: 1.6rem;
  background: var(--gc25-danger);
  color: #fff;
  font-size: 0.9rem;
  min-width: 1.6rem;
  height: 1.6rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  font-weight: 700;
}

@media (min-width: 769px) {
  .gc25-bottom-nav { display: none; }
  .gc25-main { padding-bottom: 2rem; }
}

/* ===== Desktop nav ===== */
.gc25-desktop-nav { display: none; }

@media (min-width: 769px) {
  .gc25-desktop-nav {
    display: flex;
    gap: 1.4rem;
    align-items: center;
  }
  .gc25-desktop-nav a {
    color: var(--gc25-text);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
  }
  .gc25-desktop-nav a:hover { color: var(--gc25-primary); }
}
