/**
 * binggoplus.css - Main Stylesheet for binggoplus.cfd
 * CSS class prefix: gf0e-
 * Mobile-first design targeting Philippine market
 * Color palette: #1C2833 #F4A460 #FFA500 #FF9500 #FFE135
 */

/* Root font size for rem units */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: #1C2833;
  color: #E8E8E8;
  line-height: 1.6;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #F4A460;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FFE135;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== Header ========== */
.gf0e-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(135deg, #1C2833 0%, #2C3E50 100%);
  border-bottom: 2px solid #F4A460;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gf0e-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gf0e-logo-text {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #F4A460, #FFE135);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.gf0e-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.gf0e-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gf0e-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
}

.gf0e-btn-register {
  background: linear-gradient(135deg, #F4A460, #FFA500);
  color: #1C2833;
}

.gf0e-btn-register:hover {
  background: linear-gradient(135deg, #FFE135, #F4A460);
  transform: scale(1.05);
}

.gf0e-btn-login {
  background: transparent;
  color: #F4A460;
  border: 2px solid #F4A460;
}

.gf0e-btn-login:hover {
  background: rgba(244, 164, 96, 0.15);
  border-color: #FFE135;
  color: #FFE135;
}

.gf0e-menu-btn {
  background: none;
  border: none;
  color: #F4A460;
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.4rem;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Mobile Menu ========== */
.gf0e-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

.gf0e-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #1C2833, #0D1117);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 0;
  overflow-y: auto;
}

.gf0e-menu-active {
  right: 0 !important;
}

.gf0e-menu-hidden {
  right: -280px;
}

.gf0e-menu-header {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(244, 164, 96, 0.2);
  margin-bottom: 1rem;
}

.gf0e-menu-title {
  font-size: 2rem;
  font-weight: 800;
  color: #F4A460;
}

.gf0e-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #E8E8E8;
  font-size: 2.4rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gf0e-menu-list {
  list-style: none;
}

.gf0e-menu-item {
  border-bottom: 1px solid rgba(244, 164, 96, 0.1);
}

.gf0e-menu-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  color: #E8E8E8;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gf0e-menu-link:hover {
  background: rgba(244, 164, 96, 0.1);
  color: #F4A460;
}

.gf0e-menu-link i {
  font-size: 1.8rem;
  width: 2.4rem;
  text-align: center;
  color: #FFA500;
}

/* ========== Main Content ========== */
.gf0e-main {
  padding-top: 6.5rem;
  min-height: 100vh;
}

/* ========== Carousel ========== */
.gf0e-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 1.2rem 1.2rem;
}

.gf0e-slide {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gf0e-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.gf0e-dot-active {
  background: #FFE135;
  transform: scale(1.3);
}

/* ========== Section Styles ========== */
.gf0e-section {
  padding: 2rem 1.2rem;
}

.gf0e-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #F4A460;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gf0e-section-title i {
  font-size: 2.2rem;
  color: #FFA500;
}

.gf0e-section-desc {
  font-size: 1.4rem;
  color: #B0B0B0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ========== Category Tabs ========== */
.gf0e-cat-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0 1.2rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gf0e-cat-tabs::-webkit-scrollbar {
  display: none;
}

.gf0e-cat-tab {
  flex-shrink: 0;
  padding: 0.7rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(244, 164, 96, 0.3);
  background: rgba(28, 40, 51, 0.8);
  color: #B0B0B0;
  transition: all 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.gf0e-cat-tab:hover,
.gf0e-tab-active {
  background: linear-gradient(135deg, #F4A460, #FFA500);
  color: #1C2833;
  border-color: #F4A460;
}

/* ========== Game Grid ========== */
.gf0e-game-section {
  padding: 0.5rem 1.2rem 1.5rem;
}

.gf0e-game-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFA500;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(244, 164, 96, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gf0e-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.gf0e-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 1rem;
  padding: 0.6rem;
  background: rgba(44, 62, 80, 0.5);
}

.gf0e-game-card:hover {
  transform: scale(1.05);
  background: rgba(244, 164, 96, 0.1);
}

.gf0e-game-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.8rem;
  object-fit: cover;
  margin-bottom: 0.4rem;
  border: 2px solid rgba(244, 164, 96, 0.2);
}

.gf0e-game-name {
  font-size: 1rem;
  font-weight: 600;
  color: #E8E8E8;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ========== Info Cards ========== */
.gf0e-info-card {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(28, 40, 51, 0.8));
  border: 1px solid rgba(244, 164, 96, 0.2);
  border-radius: 1.2rem;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.gf0e-info-card h3 {
  font-size: 1.6rem;
  color: #F4A460;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gf0e-info-card p {
  font-size: 1.3rem;
  color: #B0B0B0;
  line-height: 1.7;
}

.gf0e-info-card ul {
  list-style: none;
  padding: 0;
}

.gf0e-info-card li {
  padding: 0.6rem 0;
  font-size: 1.3rem;
  color: #B0B0B0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.gf0e-info-card li i {
  color: #FFA500;
  font-size: 1.4rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ========== CTA Section ========== */
.gf0e-cta {
  background: linear-gradient(135deg, rgba(244, 164, 96, 0.15), rgba(255, 225, 53, 0.1));
  border: 2px solid rgba(244, 164, 96, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin: 2rem 1.2rem;
}

.gf0e-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFE135;
  margin-bottom: 1rem;
}

.gf0e-cta-text {
  font-size: 1.4rem;
  color: #B0B0B0;
  margin-bottom: 1.5rem;
}

.gf0e-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  background: linear-gradient(135deg, #F4A460, #FFA500);
  color: #1C2833;
  font-size: 1.5rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 50px;
}

.gf0e-cta-btn:hover {
  background: linear-gradient(135deg, #FFE135, #F4A460);
  transform: scale(1.05);
}

/* ========== Bottom Navigation ========== */
.gf0e-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: linear-gradient(180deg, #2C3E50, #1C2833);
  border-top: 2px solid rgba(244, 164, 96, 0.4);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0 0.3rem;
}

.gf0e-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  color: #B0B0B0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.4rem;
  border-radius: 0.8rem;
}

.gf0e-nav-btn:hover,
.gf0e-nav-active {
  color: #FFE135;
}

.gf0e-nav-btn:hover {
  background: rgba(244, 164, 96, 0.1);
}

.gf0e-nav-btn i {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.gf0e-nav-btn span {
  font-size: 1rem;
  font-weight: 600;
}

.gf0e-nav-active span {
  color: #FFE135;
}

/* ========== Footer ========== */
.gf0e-footer {
  background: #0D1117;
  padding: 2.5rem 1.2rem;
  text-align: center;
}

.gf0e-footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #F4A460;
  margin-bottom: 1rem;
}

.gf0e-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.gf0e-footer-links a {
  font-size: 1.2rem;
  color: #B0B0B0;
}

.gf0e-footer-links a:hover {
  color: #F4A460;
}

.gf0e-footer-copy {
  font-size: 1.1rem;
  color: #666;
  margin-top: 1rem;
}

.gf0e-footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.gf0e-footer-partners img {
  height: 28px;
  opacity: 0.6;
  filter: grayscale(100%);
}

/* ========== Internal Links ========== */
.gf0e-internal-links {
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.gf0e-internal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  background: rgba(44, 62, 80, 0.5);
  border: 1px solid rgba(244, 164, 96, 0.2);
  font-size: 1.2rem;
  color: #B0B0B0;
  transition: all 0.3s ease;
}

.gf0e-internal-link:hover {
  background: rgba(244, 164, 96, 0.15);
  color: #F4A460;
  border-color: #F4A460;
}

/* ========== Help Page Styles ========== */
.gf0e-help-content {
  padding: 1.5rem 1.2rem 8rem;
}

.gf0e-help-content h2 {
  font-size: 1.8rem;
  color: #F4A460;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gf0e-help-content h3 {
  font-size: 1.5rem;
  color: #FFA500;
  margin: 1.5rem 0 0.8rem;
}

.gf0e-help-content p {
  font-size: 1.35rem;
  color: #B0B0B0;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.gf0e-faq-item {
  background: rgba(44, 62, 80, 0.4);
  border: 1px solid rgba(244, 164, 96, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.gf0e-faq-item h4 {
  font-size: 1.4rem;
  color: #FFE135;
  margin-bottom: 0.6rem;
}

.gf0e-faq-item p {
  font-size: 1.3rem;
  color: #B0B0B0;
  line-height: 1.7;
}

/* ========== Utility ========== */
.gf0e-text-center {
  text-align: center;
}

.gf0e-text-gold {
  color: #FFE135;
}

.gf0e-text-orange {
  color: #FFA500;
}

.gf0e-text-sand {
  color: #F4A460;
}

.gf0e-mt-1 {
  margin-top: 1rem;
}

.gf0e-mb-1 {
  margin-bottom: 1rem;
}

/* ========== Responsive ========== */
@media (min-width: 769px) {
  .gf0e-bottom-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .gf0e-main {
    padding-bottom: 80px;
  }
}
