/* hibazi.click - Theme Stylesheet */
/* All classes prefixed with ge67- */

/* === CSS Variables === */
:root {
  --ge67-primary: #2E4057;
  --ge67-accent: #D2B48C;
  --ge67-highlight: #E0FFFF;
  --ge67-text: #FDF5E6;
  --ge67-cta: #FF4500;
  --ge67-secondary: #495057;
  --ge67-bg: #1a2a3a;
  --ge67-card-bg: #243447;
  --ge67-border: rgba(210,180,140,0.2);
  --ge67-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --ge67-radius: 8px;
  --ge67-transition: all 0.3s ease;
  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%;
}

body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background-color: var(--ge67-bg);
  color: var(--ge67-text);
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ge67-accent);
  text-decoration: none;
  transition: var(--ge67-transition);
}

a:hover {
  color: var(--ge67-cta);
}

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

/* === Header === */
.ge67-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--ge67-primary), #1a2a3a);
  border-bottom: 2px solid var(--ge67-accent);
  max-width: 430px;
  margin: 0 auto;
}

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

.ge67-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ge67-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.ge67-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ge67-accent);
  letter-spacing: 0.5px;
}

.ge67-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ge67-btn-register,
.ge67-btn-login {
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ge67-transition);
  white-space: nowrap;
}

.ge67-btn-register {
  background: var(--ge67-cta);
  color: #fff;
}

.ge67-btn-register:hover {
  background: #e03d00;
  transform: scale(1.05);
}

.ge67-btn-login {
  background: transparent;
  color: var(--ge67-accent);
  border: 1.5px solid var(--ge67-accent);
}

.ge67-btn-login:hover {
  background: var(--ge67-accent);
  color: var(--ge67-primary);
}

.ge67-menu-toggle {
  background: none;
  border: none;
  color: var(--ge67-accent);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* === Mobile Menu === */
.ge67-mobile-menu {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--ge67-primary);
  border-bottom: 2px solid var(--ge67-accent);
  z-index: 9999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ge67-menu-active {
  max-height: 500px;
}

.ge67-mobile-menu ul {
  list-style: none;
  padding: 8px 0;
}

.ge67-mobile-menu li {
  border-bottom: 1px solid rgba(210,180,140,0.1);
}

.ge67-mobile-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--ge67-text);
  font-size: 1.4rem;
  transition: var(--ge67-transition);
}

.ge67-mobile-menu a:hover {
  background: rgba(210,180,140,0.15);
  color: var(--ge67-accent);
  padding-left: 22px;
}

/* === Main Content === */
.ge67-main {
  padding-top: 52px;
  min-height: 100vh;
}

.ge67-container {
  padding: 0 12px;
}

/* === Carousel === */
.ge67-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--ge67-radius);
  margin: 10px 0;
}

.ge67-carousel-track {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
}

.ge67-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.ge67-slide-active {
  opacity: 1;
}

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

.ge67-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.ge67-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(253,245,230,0.4);
  cursor: pointer;
  transition: var(--ge67-transition);
}

.ge67-dot-active {
  background: var(--ge67-cta);
  transform: scale(1.3);
}

/* === Section Titles === */
.ge67-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ge67-accent);
  margin: 18px 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--ge67-cta);
  line-height: 1.3;
}

.ge67-section-title span {
  color: var(--ge67-highlight);
}

/* === Game Grid === */
.ge67-game-section {
  margin-bottom: 16px;
}

.ge67-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 4px 0;
}

.ge67-game-item {
  text-align: center;
  cursor: pointer;
  transition: var(--ge67-transition);
  border-radius: var(--ge67-radius);
  padding: 6px 2px;
}

.ge67-game-item:hover {
  background: rgba(210,180,140,0.1);
  transform: translateY(-2px);
}

.ge67-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: var(--ge67-transition);
}

.ge67-game-item:hover img {
  border-color: var(--ge67-accent);
}

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

/* === Content Modules === */
.ge67-module {
  background: var(--ge67-card-bg);
  border-radius: var(--ge67-radius);
  padding: 14px;
  margin: 12px 0;
  border: 1px solid var(--ge67-border);
}

.ge67-module h2 {
  font-size: 1.6rem;
  color: var(--ge67-accent);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--ge67-border);
  padding-bottom: 6px;
}

.ge67-module h3 {
  font-size: 1.4rem;
  color: var(--ge67-highlight);
  margin: 10px 0 6px;
}

.ge67-module p {
  font-size: 1.3rem;
  color: var(--ge67-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

.ge67-module ul {
  padding-left: 16px;
  margin-bottom: 8px;
}

.ge67-module li {
  font-size: 1.3rem;
  color: var(--ge67-text);
  line-height: 1.5;
  margin-bottom: 4px;
}

/* === Promo Buttons === */
.ge67-promo-btn {
  display: inline-block;
  background: var(--ge67-cta);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ge67-transition);
  border: none;
  text-align: center;
}

.ge67-promo-btn:hover {
  background: #e03d00;
  transform: scale(1.05);
  color: #fff;
}

.ge67-promo-link {
  color: var(--ge67-cta);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.ge67-promo-link:hover {
  color: #ff6633;
}

/* === Category Tabs (inline display) === */
.ge67-cat-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ge67-accent);
  background: rgba(210,180,140,0.12);
  padding: 3px 10px;
  border-radius: 12px;
  margin-right: 4px;
}

/* === FAQ === */
.ge67-faq-item {
  margin-bottom: 10px;
  padding: 8px 10px;
  background: rgba(224,255,255,0.05);
  border-radius: 6px;
  border-left: 3px solid var(--ge67-accent);
}

.ge67-faq-q {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ge67-highlight);
  margin-bottom: 4px;
}

.ge67-faq-a {
  font-size: 1.25rem;
  color: var(--ge67-text);
  line-height: 1.5;
}

/* === Testimonials === */
.ge67-testimonial {
  background: rgba(224,255,255,0.06);
  border-radius: var(--ge67-radius);
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--ge67-border);
}

.ge67-testimonial-name {
  font-weight: 600;
  color: var(--ge67-accent);
  font-size: 1.3rem;
}

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

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

.ge67-rtp-table th {
  background: var(--ge67-primary);
  color: var(--ge67-accent);
  padding: 6px 8px;
  text-align: left;
  font-weight: 600;
}

.ge67-rtp-table td {
  padding: 5px 8px;
  border-bottom: 1px solid var(--ge67-border);
  color: var(--ge67-text);
}

.ge67-rtp-table tr:hover td {
  background: rgba(210,180,140,0.08);
}

/* === Winners Showcase === */
.ge67-winner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--ge67-border);
}

.ge67-winner-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.ge67-winner-info {
  flex: 1;
}

.ge67-winner-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ge67-accent);
}

.ge67-winner-amount {
  font-size: 1.3rem;
  color: var(--ge67-cta);
  font-weight: 700;
}

/* === Payment Methods === */
.ge67-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.ge67-payment-item {
  background: rgba(224,255,255,0.06);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 1.2rem;
  color: var(--ge67-text);
  border: 1px solid var(--ge67-border);
}

/* === App Download CTA === */
.ge67-app-cta {
  background: linear-gradient(135deg, var(--ge67-primary), #3a5a7a);
  border-radius: var(--ge67-radius);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--ge67-accent);
  margin: 12px 0;
}

.ge67-app-cta h3 {
  color: var(--ge67-accent);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.ge67-app-cta p {
  font-size: 1.3rem;
  color: var(--ge67-text);
  margin-bottom: 10px;
}

/* === Footer === */
.ge67-footer {
  background: var(--ge67-primary);
  padding: 16px 12px;
  text-align: center;
  border-top: 2px solid var(--ge67-accent);
}

.ge67-footer-brand {
  font-size: 1.3rem;
  color: var(--ge67-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.ge67-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 10px;
}

.ge67-footer-links a {
  font-size: 1.2rem;
  color: var(--ge67-accent);
  padding: 3px 8px;
  border: 1px solid var(--ge67-border);
  border-radius: 4px;
  transition: var(--ge67-transition);
}

.ge67-footer-links a:hover {
  background: var(--ge67-accent);
  color: var(--ge67-primary);
}

.ge67-footer-copy {
  font-size: 1.1rem;
  color: var(--ge67-secondary);
  margin-top: 8px;
}

/* === Bottom Navigation === */
.ge67-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, #1e3350, #152638);
  border-top: 2px solid var(--ge67-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 4px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
}

.ge67-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 54px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--ge67-transition);
  color: var(--ge67-text);
  padding: 4px 2px;
  border-radius: 8px;
}

.ge67-bottom-nav-btn:hover,
.ge67-bottom-nav-btn:active {
  color: var(--ge67-cta);
  background: rgba(255,69,0,0.1);
  transform: scale(1.08);
}

.ge67-bottom-nav-btn .ge67-nav-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}

.ge67-bottom-nav-btn .ge67-nav-label {
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.ge67-bottom-nav-btn.ge67-active {
  color: var(--ge67-cta);
}

.ge67-bottom-nav-btn.ge67-active .ge67-nav-icon {
  text-shadow: 0 0 8px rgba(255,69,0,0.5);
}

/* === Promo CTA Banner === */
.ge67-cta-banner {
  background: linear-gradient(135deg, var(--ge67-cta), #cc3700);
  border-radius: var(--ge67-radius);
  padding: 12px;
  text-align: center;
  margin: 10px 0;
  cursor: pointer;
  transition: var(--ge67-transition);
}

.ge67-cta-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255,69,0,0.4);
}

.ge67-cta-banner h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.ge67-cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
}

/* === Feature Highlights === */
.ge67-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ge67-feature-card {
  background: rgba(224,255,255,0.05);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--ge67-border);
}

.ge67-feature-card i,
.ge67-feature-card .material-icons {
  font-size: 24px;
  color: var(--ge67-cta);
  margin-bottom: 4px;
}

.ge67-feature-card h4 {
  font-size: 1.2rem;
  color: var(--ge67-accent);
  margin-bottom: 3px;
}

.ge67-feature-card p {
  font-size: 1.1rem;
  color: var(--ge67-text);
  line-height: 1.3;
}

/* === Steps / Guide === */
.ge67-step {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.ge67-step-num {
  min-width: 28px;
  height: 28px;
  background: var(--ge67-cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.ge67-step-text {
  font-size: 1.25rem;
  color: var(--ge67-text);
  line-height: 1.5;
}

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

/* === Mobile adjustments === */
@media (max-width: 768px) {
  .ge67-main {
    padding-bottom: 72px;
  }
}

/* === Utility === */
.ge67-text-center { text-align: center; }
.ge67-text-cta { color: var(--ge67-cta); }
.ge67-text-accent { color: var(--ge67-accent); }
.ge67-mt-8 { margin-top: 8px; }
.ge67-mb-8 { margin-bottom: 8px; }
.ge67-mb-12 { margin-bottom: 12px; }
.ge67-hidden { display: none; }
.ge67-bold { font-weight: 700; }

/* === Scrollbar === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ge67-bg); }
::-webkit-scrollbar-thumb { background: var(--ge67-accent); border-radius: 2px; }

/* === Selection === */
::selection {
  background: var(--ge67-cta);
  color: #fff;
}
