/*!
 * okebet com login - Core Stylesheet
 * Mobile-first Philippines online casino access guide
 * Palette: #7CFC00 | #0E1621 | #FFE135 | #9AFF9A | #CED4DA | #E65100
 * All custom classes use the gf71- prefix for namespace isolation.
 */

:root {
  --gf71-bg: #0E1621;
  --gf71-bg-soft: #142031;
  --gf71-bg-card: #1b2940;
  --gf71-primary: #7CFC00;
  --gf71-primary-dark: #5fbf00;
  --gf71-accent-yellow: #FFE135;
  --gf71-accent-orange: #E65100;
  --gf71-text-light: #CED4DA;
  --gf71-text-mint: #9AFF9A;
  --gf71-text-dim: #8a98a8;
  --gf71-border: rgba(124, 252, 0, 0.18);
  --gf71-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --gf71-radius: 12px;
  --gf71-radius-lg: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  background: var(--gf71-bg);
  color: var(--gf71-text-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gf71-text-mint); text-decoration: none; }
a:hover { color: var(--gf71-accent-yellow); }

.gf71-wrapper { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.4rem; }
@media (min-width: 769px) { .gf71-wrapper { max-width: 720px; } }

/* ===== Header ===== */
.gf71-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(14, 22, 33, 0.98), rgba(14, 22, 33, 0.92));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gf71-border);
  box-shadow: var(--gf71-shadow);
}
.gf71-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5.6rem; padding: 0 1.2rem; max-width: 760px; margin: 0 auto;
}
.gf71-brand { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.gf71-brand-logo { width: 3.2rem; height: 3.2rem; border-radius: 8px; object-fit: cover; }
.gf71-brand-name {
  font-size: 1.5rem; font-weight: 700; color: var(--gf71-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gf71-brand-name span { color: var(--gf71-accent-yellow); }
.gf71-header-actions { display: flex; align-items: center; gap: 0.6rem; }

.gf71-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; min-height: 3.6rem; padding: 0 1.2rem;
  border-radius: 10px; border: none; cursor: pointer;
  font-size: 1.3rem; font-weight: 700; letter-spacing: 0.2px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.gf71-btn:focus-visible { outline: 2px solid var(--gf71-accent-yellow); outline-offset: 2px; }
.gf71-btn:active { transform: scale(0.96); }
.gf71-btn-login {
  background: transparent; color: var(--gf71-text-light);
  border: 1px solid var(--gf71-border);
}
.gf71-btn-register {
  background: linear-gradient(135deg, var(--gf71-primary), var(--gf71-primary-dark));
  color: #0a1500; box-shadow: 0 4px 14px rgba(124, 252, 0, 0.35);
}
.gf71-btn-promo {
  background: linear-gradient(135deg, var(--gf71-accent-orange), #ff7a18);
  color: #fff; box-shadow: 0 4px 14px rgba(230, 81, 0, 0.4);
}

.gf71-menu-toggle {
  background: transparent; border: 1px solid var(--gf71-border);
  color: var(--gf71-primary); width: 3.6rem; height: 3.6rem;
  border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.8rem;
}
.gf71-menu-active { background: var(--gf71-primary); color: #0a1500; }

/* ===== Mobile Menu Drawer ===== */
.gf71-mobile-menu {
  position: fixed; top: 5.6rem; left: 0; right: 0;
  background: var(--gf71-bg-soft);
  border-bottom: 1px solid var(--gf71-border);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  z-index: 9999;
}
.gf71-menu-open { max-height: 540px; box-shadow: var(--gf71-shadow); }
.gf71-mobile-menu ul { list-style: none; padding: 0.6rem 1.2rem 1rem; }
.gf71-mobile-menu li { border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.gf71-mobile-menu li:last-child { border-bottom: none; }
.gf71-mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0.4rem; color: var(--gf71-text-light); font-size: 1.4rem; font-weight: 600;
}
.gf71-mobile-menu a::after { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--gf71-primary); }
.gf71-mobile-menu a:hover { color: var(--gf71-primary); }

/* ===== Layout helpers ===== */
.gf71-main { padding-top: 6.2rem; }
@media (max-width: 768px) { .gf71-main { padding-bottom: 90px; } }

.gf71-section { padding: 2.4rem 0; }
.gf71-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.4rem;
}
.gf71-section-title {
  font-size: 1.7rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 0.6rem;
}
.gf71-section-title i { color: var(--gf71-primary); font-size: 1.9rem; }
.gf71-section-link { font-size: 1.2rem; color: var(--gf71-accent-yellow); font-weight: 700; }

.gf71-card {
  background: linear-gradient(160deg, var(--gf71-bg-card), var(--gf71-bg-soft));
  border: 1px solid var(--gf71-border);
  border-radius: var(--gf71-radius-lg);
  padding: 1.6rem;
  box-shadow: var(--gf71-shadow);
}
.gf71-card h3 { color: var(--gf71-primary); font-size: 1.5rem; margin-bottom: 0.6rem; }
.gf71-card p { color: var(--gf71-text-light); font-size: 1.3rem; line-height: 1.6; }
.gf71-card a { color: var(--gf71-accent-yellow); font-weight: 700; }

.gf71-h1 {
  font-size: 2.2rem; line-height: 1.3; color: #fff;
  margin: 1.4rem 0 0.8rem; font-weight: 800;
}
.gf71-h1 span { color: var(--gf71-primary); }
.gf71-lead { color: var(--gf71-text-light); font-size: 1.35rem; margin-bottom: 1rem; }

/* ===== Carousel ===== */
.gf71-carousel {
  position: relative; border-radius: var(--gf71-radius-lg);
  overflow: hidden; box-shadow: var(--gf71-shadow);
  margin: 1rem 0;
}
.gf71-carousel-track { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.gf71-carousel-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.6s ease;
}
.gf71-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.gf71-slide-active { opacity: 1; }
.gf71-carousel-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem; background: linear-gradient(0deg, rgba(14, 22, 33, 0.92), transparent);
  color: #fff;
}
.gf71-carousel-overlay h2 { font-size: 1.6rem; margin-bottom: 0.4rem; color: var(--gf71-primary); }
.gf71-carousel-overlay p { font-size: 1.2rem; color: var(--gf71-text-light); }
.gf71-carousel-prev, .gf71-carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 3.2rem; height: 3.2rem; border-radius: 50%;
  background: rgba(14, 22, 33, 0.7); border: 1px solid var(--gf71-border);
  color: var(--gf71-primary); cursor: pointer; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.gf71-carousel-prev { left: 0.8rem; }
.gf71-carousel-next { right: 0.8rem; }
.gf71-carousel-dots {
  position: absolute; bottom: 0.6rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 2;
}
.gf71-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(206, 212, 218, 0.4); cursor: pointer; border: none; padding: 0;
}
.gf71-dot-active { background: var(--gf71-primary); width: 22px; border-radius: 4px; }

/* ===== Game Grid ===== */
.gf71-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem;
}
@media (min-width: 480px) { .gf71-game-grid { grid-template-columns: repeat(4, 1fr); } }
.gf71-game-item { text-align: center; cursor: pointer; transition: transform 0.15s ease; }
.gf71-game-item:active { transform: scale(0.95); }
.gf71-game-thumb {
  position: relative; border-radius: var(--gf71-radius); overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--gf71-bg-soft);
  border: 1px solid var(--gf71-border);
}
.gf71-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gf71-game-item:hover .gf71-game-thumb { border-color: var(--gf71-primary); }
.gf71-game-name {
  font-size: 1.15rem; color: var(--gf71-text-light); font-weight: 600;
  margin-top: 0.5rem; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gf71-game-badge {
  position: absolute; top: 4px; left: 4px;
  background: var(--gf71-accent-orange); color: #fff;
  font-size: 0.95rem; font-weight: 700; padding: 2px 6px; border-radius: 6px;
}

/* ===== Steps / Lists ===== */
.gf71-steps { counter-reset: step; list-style: none; }
.gf71-steps li {
  position: relative; padding: 0.6rem 0 0.6rem 3.2rem;
  counter-increment: step; font-size: 1.3rem; color: var(--gf71-text-light);
}
.gf71-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0.3rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--gf71-primary); color: #0a1500;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
}
.gf71-list { list-style: none; padding-left: 0; }
.gf71-list li { padding: 0.5rem 0 0.5rem 1.8rem; position: relative; font-size: 1.3rem; }
.gf71-list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 0.7rem; color: var(--gf71-primary); font-size: 1.1rem;
}

/* ===== Promo Banner ===== */
.gf71-promo-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: linear-gradient(135deg, rgba(124, 252, 0, 0.12), rgba(255, 225, 53, 0.08));
  border: 1px solid var(--gf71-border);
  border-radius: var(--gf71-radius-lg);
  padding: 1.4rem; margin: 1.2rem 0;
}
.gf71-promo-banner h3 { color: var(--gf71-accent-yellow); font-size: 1.5rem; margin-bottom: 0.3rem; }
.gf71-promo-banner p { color: var(--gf71-text-light); font-size: 1.2rem; }

/* ===== Testimonials ===== */
.gf71-testimonials { display: grid; gap: 0.9rem; }
.gf71-testimonial {
  background: var(--gf71-bg-soft); border-radius: var(--gf71-radius);
  padding: 1.1rem; border-left: 3px solid var(--gf71-primary);
}
.gf71-testimonial p { font-size: 1.25rem; color: var(--gf71-text-light); margin-bottom: 0.4rem; }
.gf71-testimonial .gf71-author { font-size: 1.1rem; color: var(--gf71-text-mint); font-weight: 700; }
.gf71-stars { color: var(--gf71-accent-yellow); font-size: 1.1rem; margin-bottom: 0.3rem; }

/* ===== Payment grid ===== */
.gf71-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.gf71-pay-item {
  background: var(--gf71-bg-soft); border-radius: 10px;
  padding: 0.8rem 0.4rem; text-align: center; border: 1px solid var(--gf71-border);
}
.gf71-pay-item i { font-size: 2rem; color: var(--gf71-primary); }
.gf71-pay-item span { display: block; margin-top: 0.3rem; font-size: 1rem; color: var(--gf71-text-light); }

/* ===== Footer ===== */
.gf71-footer {
  background: linear-gradient(180deg, var(--gf71-bg-soft), #060d15);
  border-top: 1px solid var(--gf71-border);
  padding: 2.4rem 1.4rem 2rem; margin-top: 1.5rem;
}
.gf71-footer-brand { font-size: 1.3rem; color: var(--gf71-text-light); margin-bottom: 1.2rem; line-height: 1.6; }
.gf71-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.gf71-footer-promos .gf71-btn { flex: 1 1 calc(50% - 0.6rem); min-height: 3.4rem; font-size: 1.2rem; padding: 0 0.8rem; }
.gf71-footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 0.8rem;
  margin-bottom: 1.2rem;
}
.gf71-footer-links a {
  font-size: 1.15rem; color: var(--gf71-text-light);
  padding: 0.3rem 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.gf71-footer-links a:hover { color: var(--gf71-primary); }
.gf71-copyright {
  font-size: 1.1rem; color: var(--gf71-text-dim); text-align: center;
  padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== Bottom Navigation ===== */
.gf71-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  height: 6rem;
  background: linear-gradient(180deg, rgba(20, 32, 49, 0.98), rgba(14, 22, 33, 1));
  border-top: 1px solid var(--gf71-border);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.4);
}
.gf71-bottom-nav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-width: 60px; min-height: 60px; padding: 4px 2px;
  background: transparent; border: none; color: var(--gf71-text-light);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}
.gf71-bottom-nav-btn:hover { color: var(--gf71-primary); }
.gf71-bottom-nav-btn:active { transform: scale(0.92); }
.gf71-bottom-nav-btn i,
.gf71-bottom-nav-btn .material-symbols-outlined,
.gf71-bottom-nav-btn ion-icon { font-size: 24px; }
.gf71-bottom-nav-active { color: var(--gf71-accent-yellow); }
.gf71-bottom-nav-active i,
.gf71-bottom-nav-active .material-symbols-outlined { color: var(--gf71-accent-yellow); }
.gf71-bottom-nav-promo {
  position: relative;
}
.gf71-bottom-nav-promo::before {
  content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gf71-primary), var(--gf71-primary-dark));
  box-shadow: 0 4px 12px rgba(124, 252, 0, 0.45);
}
.gf71-bottom-nav-promo i,
.gf71-bottom-nav-promo ion-icon {
  position: relative; z-index: 2; color: #0a1500; top: -8px;
}

@media (min-width: 769px) {
  .gf71-bottom-nav { display: none; }
}

/* ===== Utility ===== */
.gf71-text-promo { color: var(--gf71-primary); font-weight: 800; }
.gf71-text-yellow { color: var(--gf71-accent-yellow); font-weight: 800; }
.gf71-divider { height: 1px; background: var(--gf71-border); margin: 1.4rem 0; border: none; }
.gf71-tag {
  display: inline-block; font-size: 1rem; padding: 2px 8px; border-radius: 6px;
  background: rgba(124, 252, 0, 0.15); color: var(--gf71-primary);
  border: 1px solid var(--gf71-border); margin-right: 4px;
}
.gf71-hidden { display: none !important; }

/* ===== Desktop-only helpers ===== */
@media (min-width: 769px) {
  body { background: linear-gradient(180deg, #0a121d, #0E1621); }
  .gf71-wrapper { padding: 0 2rem; }
}
