/* 5777 angel number - Main Stylesheet */
/* All classes use v85f- prefix for namespace isolation */
/* File: css/style-9338.css */

/* CSS Variables */
:root {
  --v85f-primary: #FF4500;
  --v85f-secondary: #FF69B4;
  --v85f-bg-dark: #1B263B;
  --v85f-bg-darker: #141C2E;
  --v85f-bg-card: #22304A;
  --v85f-bg-light: #2A3A55;
  --v85f-text-light: #D3D3D3;
  --v85f-text-muted: #DEE2E6;
  --v85f-text-dark: #4A4A4A;
  --v85f-accent: #FF69B4;
  --v85f-border: #2E4060;
  --v85f-gold: #FFD700;
  --v85f-green: #00C853;
  --v85f-radius: 1.2rem;
  --v85f-radius-sm: 0.8rem;
  --v85f-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.35);
  --v85f-transition: all 0.3s ease;
}

/* Base Reset */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background: var(--v85f-bg-dark);
  color: var(--v85f-text-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: var(--v85f-secondary);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER ===== */
.v85f-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--v85f-bg-darker);
  border-bottom: 0.2rem solid var(--v85f-primary);
  max-width: 430px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v85f-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v85f-logo {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
}
.v85f-site-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--v85f-primary);
  white-space: nowrap;
}
.v85f-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v85f-btn-register,
.v85f-btn-login {
  padding: 0.5rem 1rem;
  border-radius: var(--v85f-radius-sm);
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--v85f-transition);
  min-height: 3.2rem;
}
.v85f-btn-register {
  background: var(--v85f-primary);
  color: #fff;
}
.v85f-btn-register:hover {
  background: #e03d00;
  transform: scale(1.05);
}
.v85f-btn-login {
  background: transparent;
  color: var(--v85f-primary);
  border: 0.15rem solid var(--v85f-primary);
}
.v85f-btn-login:hover {
  background: var(--v85f-primary);
  color: #fff;
}
.v85f-menu-toggle {
  background: none;
  border: none;
  color: var(--v85f-text-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ===== MOBILE MENU ===== */
.v85f-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--v85f-bg-darker);
  z-index: 9999;
  transition: right 0.35s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.v85f-menu-active {
  right: 0;
}
.v85f-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.v85f-overlay-active {
  display: block;
}
.v85f-menu-close {
  background: none;
  border: none;
  color: var(--v85f-text-light);
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.v85f-menu-links {
  list-style: none;
  margin-top: 3rem;
}
.v85f-menu-links li {
  border-bottom: 0.1rem solid var(--v85f-border);
}
.v85f-menu-links a {
  display: block;
  padding: 1.2rem 0;
  color: var(--v85f-text-light);
  font-size: 1.4rem;
  transition: var(--v85f-transition);
}
.v85f-menu-links a:hover {
  color: var(--v85f-primary);
  padding-left: 0.5rem;
}

/* ===== MAIN CONTENT ===== */
.v85f-main {
  padding-top: 5.5rem;
  min-height: 100vh;
}

/* ===== SLIDER ===== */
.v85f-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--v85f-radius) var(--v85f-radius);
}
.v85f-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.v85f-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.v85f-slide-active {
  display: block;
}
.v85f-slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}
.v85f-slider-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--v85f-transition);
}
.v85f-dot-active {
  background: var(--v85f-primary);
  transform: scale(1.3);
}

/* ===== SECTIONS ===== */
.v85f-section {
  padding: 2rem 1.2rem;
}
.v85f-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v85f-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 0.2rem solid var(--v85f-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v85f-section-title i,
.v85f-section-title .material-icons {
  font-size: 2rem;
}

/* ===== GAME GRID ===== */
.v85f-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.v85f-game-item {
  text-align: center;
  cursor: pointer;
  transition: var(--v85f-transition);
  border-radius: var(--v85f-radius-sm);
  padding: 0.5rem 0.2rem;
}
.v85f-game-item:hover {
  background: var(--v85f-bg-light);
  transform: translateY(-0.2rem);
}
.v85f-game-item img {
  width: 6rem;
  height: 6rem;
  border-radius: var(--v85f-radius-sm);
  object-fit: cover;
  margin-bottom: 0.3rem;
  border: 0.15rem solid var(--v85f-border);
}
.v85f-game-name {
  font-size: 1rem;
  color: var(--v85f-text-muted);
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: block;
}

/* ===== CATEGORY LABEL ===== */
.v85f-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--v85f-primary), var(--v85f-secondary));
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ===== CONTENT BLOCKS ===== */
.v85f-content-block {
  background: var(--v85f-bg-card);
  border-radius: var(--v85f-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border: 0.1rem solid var(--v85f-border);
}
.v85f-content-block h2 {
  font-size: 1.6rem;
  color: var(--v85f-primary);
  margin-bottom: 1rem;
}
.v85f-content-block h3 {
  font-size: 1.4rem;
  color: var(--v85f-secondary);
  margin: 1rem 0 0.5rem;
}
.v85f-content-block p {
  color: var(--v85f-text-muted);
  line-height: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}
.v85f-content-block ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.v85f-content-block li {
  color: var(--v85f-text-muted);
  line-height: 1.8rem;
  font-size: 1.3rem;
}

/* ===== CTA BUTTON ===== */
.v85f-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v85f-primary), #FF6347);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--v85f-transition);
  text-align: center;
  min-height: 4.4rem;
}
.v85f-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1.5rem rgba(255,69,0,0.4);
}
.v85f-text-link {
  color: var(--v85f-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1.3rem;
}

/* ===== WINNER LIST ===== */
.v85f-winner-list {
  list-style: none;
}
.v85f-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 0.1rem solid var(--v85f-border);
}
.v85f-winner-name {
  color: var(--v85f-gold);
  font-weight: 600;
  font-size: 1.3rem;
}
.v85f-winner-amount {
  color: var(--v85f-green);
  font-weight: 700;
  font-size: 1.3rem;
}
.v85f-winner-game {
  color: var(--v85f-text-muted);
  font-size: 1.1rem;
}

/* ===== PAYMENT / FEATURES ===== */
.v85f-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.v85f-feature-card {
  background: var(--v85f-bg-light);
  border-radius: var(--v85f-radius-sm);
  padding: 1.2rem;
  text-align: center;
}
.v85f-feature-card i,
.v85f-feature-card .material-icons {
  font-size: 2.4rem;
  color: var(--v85f-primary);
  margin-bottom: 0.5rem;
}
.v85f-feature-card h3 {
  font-size: 1.2rem;
  color: var(--v85f-text-light);
  margin-bottom: 0.3rem;
}
.v85f-feature-card p {
  font-size: 1.1rem;
  color: var(--v85f-text-muted);
}

/* ===== TESTIMONIALS ===== */
.v85f-testimonial {
  background: var(--v85f-bg-light);
  border-radius: var(--v85f-radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 0.3rem solid var(--v85f-secondary);
}
.v85f-testimonial-text {
  font-size: 1.2rem;
  color: var(--v85f-text-muted);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.v85f-testimonial-author {
  font-size: 1.1rem;
  color: var(--v85f-gold);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.v85f-footer {
  background: var(--v85f-bg-darker);
  padding: 2rem 1.2rem 3rem;
  border-top: 0.2rem solid var(--v85f-primary);
}
.v85f-footer-desc {
  font-size: 1.2rem;
  color: var(--v85f-text-muted);
  line-height: 1.6rem;
  margin-bottom: 1.2rem;
}
.v85f-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.v85f-footer-link {
  background: var(--v85f-bg-card);
  color: var(--v85f-text-light);
  padding: 0.4rem 0.8rem;
  border-radius: var(--v85f-radius-sm);
  font-size: 1.1rem;
  transition: var(--v85f-transition);
}
.v85f-footer-link:hover {
  background: var(--v85f-primary);
  color: #fff;
}
.v85f-footer-copy {
  text-align: center;
  font-size: 1.1rem;
  color: var(--v85f-text-dark);
  margin-top: 1rem;
}

/* ===== BOTTOM NAVIGATION ===== */
.v85f-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--v85f-bg-darker);
  border-top: 0.15rem solid var(--v85f-primary);
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.3rem;
}
.v85f-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  color: var(--v85f-text-muted);
  cursor: pointer;
  transition: var(--v85f-transition);
  padding: 0.3rem;
  border-radius: 0.6rem;
}
.v85f-bottom-nav-btn i,
.v85f-bottom-nav-btn .material-icons,
.v85f-bottom-nav-btn ion-icon {
  font-size: 2.2rem;
  margin-bottom: 0.1rem;
}
.v85f-bottom-nav-btn span {
  font-size: 1rem;
  white-space: nowrap;
}
.v85f-bottom-nav-btn:hover,
.v85f-nav-active {
  color: var(--v85f-primary);
  transform: scale(1.08);
}
.v85f-nav-active {
  background: rgba(255,69,0,0.12);
  border-radius: 0.6rem;
}

/* ===== TOAST ===== */
.v85f-toast {
  position: fixed;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%) translateY(2rem);
  background: var(--v85f-primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--v85f-radius);
  font-size: 1.3rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10000;
}
.v85f-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .v85f-bottom-nav {
    display: flex;
  }
  .v85f-main {
    padding-bottom: 80px;
  }
}
@media (min-width: 769px) {
  .v85f-bottom-nav {
    display: none;
  }
}
