/**
 * god11.click - Main Stylesheet
 * Prefix: g896-
 * Palette: #FF91A4 (accent) | #0A0A0A (bg) | #BAE1FF (text-light)
 * Language: bn-BD
 */

:root {
  --g896-primary: #FF91A4;
  --g896-bg: #0A0A0A;
  --g896-text: #BAE1FF;
  --g896-accent: #FF91A4;
  --g896-accent2: #FFD700;
  --g896-dark: #111111;
  --g896-darker: #080808;
  --g896-card-bg: #1a1a1a;
  --g896-card-border: #2a2a2a;
  --g896-text-muted: #8899aa;
  --g896-radius: 1.2rem;
  --g896-radius-sm: 0.8rem;
  --g896-shadow: 0 4px 20px rgba(255,145,164,0.15);
  --g896-transition: all 0.3s ease;
}

/* Reset & Base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--g896-bg);
  color: var(--g896-text);
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--g896-primary);
  text-decoration: none;
  transition: var(--g896-transition);
}

a:hover {
  color: var(--g896-accent2);
}

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

/* Container */
.g896-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
  width: 100%;
}

/* Header */
.g896-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--g896-darker), #1a0a10);
  border-bottom: 1px solid rgba(255,145,164,0.2);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 430px;
  margin: 0 auto;
}

.g896-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.g896-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.g896-site-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--g896-primary);
  letter-spacing: 0.5px;
}

.g896-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.g896-btn-register,
.g896-btn-login {
  padding: 0.5rem 1.2rem;
  border-radius: var(--g896-radius-sm);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--g896-transition);
}

.g896-btn-register {
  background: linear-gradient(135deg, var(--g896-primary), #ff6b8a);
  color: #fff;
}

.g896-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(255,145,164,0.4);
}

.g896-btn-login {
  background: transparent;
  color: var(--g896-primary);
  border: 1px solid var(--g896-primary);
}

.g896-btn-login:hover {
  background: rgba(255,145,164,0.1);
}

.g896-menu-toggle {
  background: none;
  border: none;
  color: var(--g896-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.g896-mobile-menu {
  display: none;
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.98);
  padding: 1rem 0;
  max-width: 430px;
  margin: 0 auto;
  border-bottom: 2px solid var(--g896-primary);
}

.g896-menu-active {
  display: block !important;
}

.g896-mobile-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--g896-text);
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255,145,164,0.1);
  transition: var(--g896-transition);
}

.g896-mobile-menu a:hover {
  background: rgba(255,145,164,0.08);
  color: var(--g896-primary);
  padding-left: 2rem;
}

/* Main Content */
main {
  padding-top: 60px;
}

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

/* Carousel */
.g896-carousel {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 var(--g896-radius) var(--g896-radius);
}

.g896-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.g896-slide-active {
  display: block;
  animation: g896fadeSlide 0.6s ease;
}

@keyframes g896fadeSlide {
  from { opacity: 0.3; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

.g896-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Title */
.g896-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 2rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--g896-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.g896-section-title i {
  color: var(--g896-primary);
}

/* Game Grid */
.g896-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.g896-game-item {
  text-align: center;
  cursor: pointer;
  transition: var(--g896-transition);
  border-radius: var(--g896-radius-sm);
  padding: 0.5rem 0.3rem;
}

.g896-game-item:hover {
  background: rgba(255,145,164,0.08);
  transform: translateY(-2px);
}

.g896-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--g896-radius-sm);
  border: 1px solid var(--g896-card-border);
}

.g896-game-item span {
  display: block;
  font-size: 1.1rem;
  color: var(--g896-text);
  margin-top: 0.3rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Category Label */
.g896-cat-label {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--g896-primary);
  margin: 1.8rem 0 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--g896-primary);
}

/* Content Cards */
.g896-card {
  background: var(--g896-card-bg);
  border: 1px solid var(--g896-card-border);
  border-radius: var(--g896-radius);
  padding: 1.5rem;
  margin: 1rem 0;
}

.g896-card h3 {
  font-size: 1.7rem;
  color: var(--g896-primary);
  margin: 0 0 0.8rem;
}

.g896-card p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: var(--g896-text);
  margin: 0.5rem 0;
}

/* Promo Button */
.g896-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--g896-primary), #ff6b8a);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--g896-radius);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--g896-transition);
  text-align: center;
  box-shadow: 0 4px 15px rgba(255,145,164,0.3);
}

.g896-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255,145,164,0.5);
}

.g896-promo-text {
  color: var(--g896-primary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--g896-transition);
}

.g896-promo-text:hover {
  color: var(--g896-accent2);
}

/* Footer */
.g896-footer {
  background: var(--g896-darker);
  border-top: 1px solid rgba(255,145,164,0.15);
  padding: 2rem 1rem 3rem;
  margin-top: 2rem;
}

.g896-footer-desc {
  font-size: 1.3rem;
  color: var(--g896-text-muted);
  line-height: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.g896-footer-links a {
  padding: 0.5rem 1rem;
  background: rgba(255,145,164,0.1);
  border-radius: var(--g896-radius-sm);
  font-size: 1.2rem;
  color: var(--g896-text);
  border: 1px solid rgba(255,145,164,0.2);
}

.g896-footer-links a:hover {
  background: rgba(255,145,164,0.2);
  color: var(--g896-primary);
}

.g896-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--g896-card-border);
  border-bottom: 1px solid var(--g896-card-border);
}

.g896-partners span {
  font-size: 1.2rem;
  color: var(--g896-text-muted);
  padding: 0.3rem 0.8rem;
  background: var(--g896-card-bg);
  border-radius: 4px;
}

.g896-copyright {
  text-align: center;
  font-size: 1.2rem;
  color: var(--g896-text-muted);
  margin-top: 1rem;
}

/* Bottom Navigation */
.g896-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #151515, #0a0a0a);
  border-top: 1px solid rgba(255,145,164,0.25);
  height: 60px;
  max-width: 430px;
  margin: 0 auto;
}

.g896-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 0 0.3rem;
}

.g896-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  cursor: pointer;
  transition: var(--g896-transition);
  border-radius: 8px;
  padding: 0.3rem 0.2rem;
  background: none;
  border: none;
  color: var(--g896-text-muted);
}

.g896-bottom-nav-item:hover,
.g896-nav-active {
  color: var(--g896-primary);
  background: rgba(255,145,164,0.08);
  transform: scale(1.05);
}

.g896-bottom-nav-item i,
.g896-bottom-nav-item .material-icons {
  font-size: 22px;
  margin-bottom: 2px;
}

.g896-bottom-nav-item span {
  font-size: 1rem;
  line-height: 1.2;
}

/* Winner Ticker */
.g896-winner-ticker {
  background: var(--g896-card-bg);
  border: 1px solid var(--g896-card-border);
  border-radius: var(--g896-radius);
  padding: 1rem;
  margin: 1rem 0;
  overflow: hidden;
}

.g896-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--g896-card-border);
  font-size: 1.3rem;
}

.g896-winner-item:last-child {
  border-bottom: none;
}

.g896-winner-amount {
  color: var(--g896-accent2);
  font-weight: 700;
}

/* Testimonial */
.g896-testimonial {
  background: var(--g896-card-bg);
  border: 1px solid var(--g896-card-border);
  border-radius: var(--g896-radius);
  padding: 1.2rem;
  margin: 0.8rem 0;
}

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

.g896-testimonial-text {
  color: var(--g896-text);
  font-size: 1.3rem;
  line-height: 2rem;
  margin-top: 0.5rem;
}

/* Payment Methods */
.g896-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}

.g896-payment-item {
  background: var(--g896-card-bg);
  border: 1px solid var(--g896-card-border);
  border-radius: var(--g896-radius-sm);
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
  color: var(--g896-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* RTP Bar */
.g896-rtp-bar {
  background: var(--g896-card-bg);
  border: 1px solid var(--g896-card-border);
  border-radius: var(--g896-radius-sm);
  padding: 0.8rem 1rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.g896-rtp-bar-label {
  font-size: 1.2rem;
  color: var(--g896-text);
  min-width: 80px;
}

.g896-rtp-bar-track {
  flex: 1;
  height: 8px;
  background: #222;
  border-radius: 4px;
  overflow: hidden;
}

.g896-rtp-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--g896-primary), var(--g896-accent2));
}

.g896-rtp-bar-value {
  font-size: 1.2rem;
  color: var(--g896-accent2);
  font-weight: 600;
  min-width: 40px;
  text-align: right;
}

/* FAQ */
.g896-faq-item {
  border-bottom: 1px solid var(--g896-card-border);
  padding: 1rem 0;
}

.g896-faq-q {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--g896-primary);
  margin-bottom: 0.5rem;
}

.g896-faq-a {
  font-size: 1.3rem;
  color: var(--g896-text);
  line-height: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .g896-bottom-nav {
    display: block;
  }
}

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

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

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

.g896-mt-2 {
  margin-top: 2rem;
}

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

.g896-highlight {
  color: var(--g896-primary);
  font-weight: 600;
}

.g896-gold {
  color: var(--g896-accent2);
  font-weight: 600;
}

.g896-divider {
  border: none;
  border-top: 1px solid var(--g896-card-border);
  margin: 1.5rem 0;
}

/* Internal link style */
.g896-internal-link {
  color: var(--g896-text);
  text-decoration: underline;
  text-decoration-color: rgba(186,225,255,0.3);
  transition: var(--g896-transition);
}

.g896-internal-link:hover {
  color: var(--g896-primary);
  text-decoration-color: var(--g896-primary);
}
