/**
 * olx786com.click - Layout CSS
 * Prefix: v41f-
 * Colors: #004D40 | #262626 | #90EE90 | #7FFF00 | #9AFF9A
 */

:root {
  --v41f-primary: #004D40;
  --v41f-dark: #262626;
  --v41f-light-green: #90EE90;
  --v41f-lime: #7FFF00;
  --v41f-mint: #9AFF9A;
  --v41f-bg: #1a1a1a;
  --v41f-card-bg: #2a2a2a;
  --v41f-text: #e0e0e0;
  --v41f-text-bright: #ffffff;
  --v41f-accent: #7FFF00;
  --v41f-border: #3a3a3a;
}

/* Base reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

a { color: var(--v41f-accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.v41f-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--v41f-primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  height: 5rem;
  border-bottom: 2px solid var(--v41f-accent);
}

.v41f-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.v41f-logo-area img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.4rem;
}

.v41f-logo-area span {
  color: var(--v41f-text-bright);
  font-size: 1.5rem;
  font-weight: 700;
}

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

.v41f-btn-reg {
  background: var(--v41f-accent);
  color: var(--v41f-dark);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.v41f-btn-reg:hover { background: var(--v41f-lime); transform: scale(1.05); }

.v41f-btn-login {
  background: transparent;
  color: var(--v41f-accent);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1.5px solid var(--v41f-accent);
  cursor: pointer;
  transition: all 0.2s;
}

.v41f-btn-login:hover { background: rgba(127,255,0,0.1); }

.v41f-menu-toggle {
  background: none;
  border: none;
  color: var(--v41f-text-bright);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

/* Mobile menu */
.v41f-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--v41f-primary);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.v41f-menu-active { right: 0; }

.v41f-menu-close {
  background: none;
  border: none;
  color: var(--v41f-text-bright);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.v41f-mobile-menu nav { margin-top: 3rem; }

.v41f-mobile-menu nav a {
  display: block;
  color: var(--v41f-text);
  padding: 1rem 0;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(127,255,0,0.15);
  transition: color 0.2s;
}

.v41f-mobile-menu nav a:hover { color: var(--v41f-accent); }

.v41f-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

.v41f-overlay-active { display: block; }

/* Main content */
main {
  padding-top: 5.5rem;
  padding-bottom: 1rem;
}

/* Slider */
.v41f-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
}

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

.v41f-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
}

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

.v41f-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.v41f-dot-active { background: var(--v41f-accent); }

/* Sections */
.v41f-section {
  padding: 1.5rem 1rem;
}

.v41f-section-title {
  color: var(--v41f-text-bright);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--v41f-accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.v41f-section-title i { color: var(--v41f-accent); }

/* Game grid */
.v41f-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.v41f-game-card {
  background: var(--v41f-card-bg);
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--v41f-border);
}

.v41f-game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127,255,0,0.15);
}

.v41f-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.v41f-game-card p {
  font-size: 1.1rem;
  color: var(--v41f-text);
  text-align: center;
  padding: 0.3rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Category label */
.v41f-cat-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--v41f-accent);
  margin: 1.2rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Content blocks */
.v41f-content-block {
  background: var(--v41f-card-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--v41f-accent);
}

.v41f-content-block h2, .v41f-content-block h3 {
  color: var(--v41f-text-bright);
  margin-bottom: 0.8rem;
}

.v41f-content-block h2 { font-size: 1.7rem; }
.v41f-content-block h3 { font-size: 1.5rem; }

.v41f-content-block p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.v41f-content-block ul {
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
}

.v41f-content-block li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

/* CTA link */
.v41f-cta-link {
  display: inline-block;
  color: var(--v41f-accent);
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.v41f-cta-link:hover { color: var(--v41f-lime); }

/* Promo button */
.v41f-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v41f-accent), var(--v41f-lime));
  color: var(--v41f-dark);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 0.8rem 2rem;
  border-radius: 2.5rem;
  cursor: pointer;
  border: none;
  margin: 0.5rem 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.v41f-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(127,255,0,0.3);
}

/* Footer */
.v41f-footer {
  background: var(--v41f-dark);
  padding: 2rem 1rem 1rem;
  margin-top: 1.5rem;
  border-top: 2px solid var(--v41f-primary);
}

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

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

.v41f-footer-links a {
  background: var(--v41f-primary);
  color: var(--v41f-text);
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  transition: background 0.2s;
}

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

.v41f-footer-copy {
  color: #888;
  font-size: 1.1rem;
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid var(--v41f-border);
}

/* Bottom navigation */
.v41f-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--v41f-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  z-index: 1000;
  border-top: 2px solid var(--v41f-accent);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

.v41f-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  color: var(--v41f-text);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 0.3rem;
}

.v41f-bottom-btn:hover,
.v41f-bottom-active {
  color: var(--v41f-accent);
  transform: scale(1.08);
}

.v41f-bottom-btn i, .v41f-bottom-btn .material-icons {
  font-size: 2.2rem;
}

.v41f-bottom-btn span {
  font-size: 1rem;
  margin-top: 0.1rem;
}

/* Responsive */
@media (min-width: 769px) {
  .v41f-bottom-nav { display: none; }
  body { max-width: 430px; }
}

@media (max-width: 768px) {
  main { padding-bottom: 7.5rem; }
  .v41f-footer { padding-bottom: 7rem; }
}

/* Utility */
.v41f-text-center { text-align: center; }
.v41f-text-accent { color: var(--v41f-accent); }
.v41f-mb-1 { margin-bottom: 0.5rem; }
.v41f-mb-2 { margin-bottom: 1rem; }
.v41f-mb-3 { margin-bottom: 1.5rem; }
.v41f-bold { font-weight: 700; }
.v41f-hidden { display: none; }

/* Winner list */
.v41f-winner-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.v41f-winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--v41f-card-bg);
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  font-size: 1.2rem;
}

.v41f-winner-name { color: var(--v41f-accent); font-weight: 600; }
.v41f-winner-amount { color: var(--v41f-mint); font-weight: 700; }

/* Payment icons row */
.v41f-payment-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.v41f-payment-item {
  background: var(--v41f-card-bg);
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  font-size: 1.2rem;
  color: var(--v41f-text);
  border: 1px solid var(--v41f-border);
}

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

.v41f-testimonial-name {
  color: var(--v41f-accent);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.v41f-testimonial-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--v41f-text);
}

/* FAQ */
.v41f-faq-item {
  background: var(--v41f-card-bg);
  border-radius: 0.6rem;
  padding: 1rem;
  margin-bottom: 0.6rem;
}

.v41f-faq-q {
  color: var(--v41f-accent);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.v41f-faq-a {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Highlight banner */
.v41f-highlight {
  background: linear-gradient(135deg, var(--v41f-primary), #00695c);
  border-radius: 1rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.v41f-highlight h3 {
  color: var(--v41f-accent);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.v41f-highlight p {
  font-size: 1.2rem;
  color: var(--v41f-text);
}
