/**
 * layout-8467.css - Layout styles for 47777bdt website
 * All classes use v721- prefix for namespace isolation
 * Color palette: #BAFFC9 | #2E4057 | #FFC0CB | #FF8C00 | #F5F5F5 | #FA8072
 */

/* CSS Variables */
:root {
  --v721-primary: #FF8C00;
  --v721-primary-dark: #E07800;
  --v721-bg: #2E4057;
  --v721-bg-dark: #1B2A3D;
  --v721-bg-light: #3A506B;
  --v721-text: #F5F5F5;
  --v721-text-muted: #B0C4DE;
  --v721-accent: #FA8072;
  --v721-accent2: #BAFFC9;
  --v721-pink: #FFC0CB;
  --v721-card-bg: #34495E;
  --v721-border: #4A6580;
  --v721-header-height: 56px;
  --v721-bottom-height: 60px;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--v721-bg);
  color: var(--v721-text);
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
a { color: var(--v721-primary); text-decoration: none; }
a:hover { color: var(--v721-accent); }
img { max-width: 100%; height: auto; display: block; }

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

/* Header */
.v721-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: var(--v721-header-height);
  background: var(--v721-bg-dark);
  border-bottom: 2px solid var(--v721-primary);
  z-index: 1000; display: flex; align-items: center;
  justify-content: space-between; padding: 0 1rem;
}
.v721-header-logo { display: flex; align-items: center; gap: 0.6rem; }
.v721-header-logo img { width: 28px; height: 28px; border-radius: 4px; }
.v721-header-logo span { font-size: 1.6rem; font-weight: 700; color: var(--v721-primary); }
.v721-header-right { display: flex; align-items: center; gap: 0.5rem; }
.v721-btn {
  padding: 0.5rem 1.2rem; border-radius: 20px; font-size: 1.2rem;
  font-weight: 600; border: none; cursor: pointer;
  transition: all 0.2s ease; display: inline-block;
  text-align: center; min-height: 32px;
}
.v721-btn-register {
  background: var(--v721-primary); color: #fff;
}
.v721-btn-register:hover { background: var(--v721-primary-dark); transform: scale(1.05); }
.v721-btn-login {
  background: transparent; color: var(--v721-accent);
  border: 1.5px solid var(--v721-accent);
}
.v721-btn-login:hover { background: var(--v721-accent); color: #fff; }
.v721-menu-toggle {
  background: none; border: none; color: var(--v721-text);
  font-size: 2rem; cursor: pointer; padding: 4px;
  display: flex; align-items: center;
}

/* Mobile Menu Overlay */
.v721-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 9998; display: none; opacity: 0;
  transition: opacity 0.3s;
}

/* Mobile Menu */
.v721-mobile-menu {
  position: fixed; top: 0; left: 0; width: 260px; height: 100%;
  background: var(--v721-bg-dark); z-index: 9999;
  transform: translateX(-100%); visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s;
  padding: 1.5rem 0; overflow-y: auto;
}
.v721-mobile-menu-header {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--v721-border);
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem;
}
.v721-mobile-menu-header img { width: 32px; height: 32px; border-radius: 6px; }
.v721-mobile-menu-header span { font-size: 1.6rem; font-weight: 700; color: var(--v721-primary); }
.v721-mobile-menu a {
  display: block; padding: 1rem 1.5rem; color: var(--v721-text);
  font-size: 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.v721-mobile-menu a:hover { background: var(--v721-bg-light); color: var(--v721-primary); }

/* Main Content Area */
.v721-main { padding-top: var(--v721-header-height); }
@media (max-width: 768px) {
  .v721-main { padding-bottom: calc(var(--v721-bottom-height) + 20px); }
}

/* Carousel */
.v721-carousel {
  position: relative; width: 100%; overflow: hidden;
  margin-top: var(--v721-header-height); height: 180px;
  background: var(--v721-bg-dark);
}
.v721-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.6s ease;
}
.v721-slide-active { opacity: 1; }
.v721-slide img { width: 100%; height: 100%; object-fit: cover; }
.v721-carousel-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.v721-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.3s;
}
.v721-carousel-dot-active { background: var(--v721-primary); }

/* Section Styling */
.v721-section {
  padding: 2rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v721-section-title {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 1.2rem;
  color: var(--v721-primary); position: relative; padding-left: 1.2rem;
}
.v721-section-title::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 4px; height: 80%; background: var(--v721-accent); border-radius: 2px;
}
.v721-section h1 {
  font-size: 2rem; font-weight: 700; color: var(--v721-text);
  line-height: 1.3; margin-bottom: 1rem;
}

/* Game Grid */
.v721-category-title {
  font-size: 1.6rem; font-weight: 600; margin: 1.5rem 0 1rem;
  color: var(--v721-accent2); display: flex; align-items: center; gap: 0.5rem;
}
.v721-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem; margin-bottom: 1rem;
}
.v721-game-item {
  text-align: center; cursor: pointer; transition: transform 0.2s;
}
.v721-game-item:hover { transform: scale(1.05); }
.v721-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: 10px;
  border: 2px solid var(--v721-border); margin-bottom: 0.3rem;
  object-fit: cover;
}
.v721-game-item span {
  font-size: 1.1rem; color: var(--v721-text-muted); display: block;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Content Cards */
.v721-card {
  background: var(--v721-card-bg); border-radius: 12px;
  padding: 1.5rem; margin-bottom: 1.2rem;
  border: 1px solid var(--v721-border);
}
.v721-card h3 {
  font-size: 1.6rem; color: var(--v721-primary); margin-bottom: 0.8rem;
}
.v721-card p { font-size: 1.3rem; line-height: 1.6; color: var(--v721-text-muted); }
.v721-card ul { list-style: none; padding: 0; }
.v721-card li {
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1.3rem; color: var(--v721-text-muted);
}
.v721-card li:last-child { border-bottom: none; }

/* Promo Links */
.v721-promo-link {
  color: var(--v721-primary); font-weight: 700;
  cursor: pointer; text-decoration: underline;
}
.v721-promo-link:hover { color: var(--v721-accent); }
.v721-promo-btn {
  display: inline-block; padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--v721-primary), var(--v721-accent));
  color: #fff; font-size: 1.4rem; font-weight: 700;
  border-radius: 30px; border: none; cursor: pointer;
  transition: all 0.3s ease; text-align: center;
}
.v721-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,140,0,0.4);
}

/* Footer */
.v721-footer {
  background: var(--v721-bg-dark); padding: 2rem 1.2rem;
  border-top: 2px solid var(--v721-primary);
  text-align: center;
}
.v721-footer-desc {
  font-size: 1.2rem; color: var(--v721-text-muted);
  margin-bottom: 1.5rem; line-height: 1.5;
}
.v721-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.5rem; }
.v721-footer-link {
  padding: 0.4rem 1rem; background: var(--v721-bg-light);
  color: var(--v721-text); border-radius: 16px; font-size: 1.1rem;
  transition: background 0.2s; cursor: pointer;
}
.v721-footer-link:hover { background: var(--v721-primary); }
.v721-footer-copy { font-size: 1.1rem; color: var(--v721-text-muted); margin-top: 1rem; }

/* Bottom Navigation */
.v721-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: var(--v721-bottom-height);
  background: var(--v721-bg-dark); border-top: 2px solid var(--v721-primary);
  z-index: 1000; display: flex; align-items: center;
  justify-content: space-around; padding: 0 0.3rem;
}
.v721-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 52px; background: none; border: none;
  color: var(--v721-text-muted); cursor: pointer;
  transition: all 0.2s ease; gap: 2px; position: relative;
}
.v721-bottom-nav-btn .v721-nav-icon { font-size: 22px; }
.v721-bottom-nav-btn .v721-nav-label { font-size: 1rem; font-weight: 500; }
.v721-bottom-nav-btn:hover {
  color: var(--v721-primary); transform: scale(1.08);
}
.v721-bottom-nav-active {
  color: var(--v721-primary) !important;
}
.v721-bottom-nav-active .v721-nav-icon {
  transform: scale(1.15);
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  .v721-bottom-nav { display: none; }
}

/* Responsive Utilities */
.v721-text-center { text-align: center; }
.v721-text-primary { color: var(--v721-primary); }
.v721-text-accent { color: var(--v721-accent); }
.v721-mt-1 { margin-top: 0.8rem; }
.v721-mt-2 { margin-top: 1.6rem; }
.v721-mb-1 { margin-bottom: 0.8rem; }
.v721-mb-2 { margin-bottom: 1.6rem; }
.v721-hidden-mobile { display: none; }
@media (min-width: 769px) {
  .v721-hidden-mobile { display: block; }
  .v721-hidden-desktop { display: none; }
}

/* Winner Marquee */
.v721-winner-bar {
  background: var(--v721-bg-dark); padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.8rem;
  border-bottom: 1px solid var(--v721-border);
}
.v721-winner-bar span { font-size: 1.2rem; color: var(--v721-accent2); }
.v721-winner-text {
  font-size: 1.1rem; color: var(--v721-text-muted);
  overflow: hidden; white-space: nowrap;
}

/* Features Grid */
.v721-features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.v721-feature-item {
  background: var(--v721-card-bg); border-radius: 10px;
  padding: 1.2rem; text-align: center;
  border: 1px solid var(--v721-border);
}
.v721-feature-item i { font-size: 2.4rem; color: var(--v721-primary); margin-bottom: 0.5rem; }
.v721-feature-item h4 { font-size: 1.3rem; color: var(--v721-text); margin-bottom: 0.3rem; }
.v721-feature-item p { font-size: 1.1rem; color: var(--v721-text-muted); }

/* Testimonials */
.v721-testimonial {
  background: var(--v721-card-bg); border-radius: 10px;
  padding: 1.2rem; margin-bottom: 1rem;
  border-left: 3px solid var(--v721-primary);
}
.v721-testimonial p { font-size: 1.2rem; color: var(--v721-text-muted); font-style: italic; }
.v721-testimonial cite {
  display: block; margin-top: 0.5rem; font-size: 1.1rem;
  color: var(--v721-accent2); font-style: normal;
}

/* Payment Methods */
.v721-payment-row {
  display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center;
}
.v721-payment-item {
  background: var(--v721-card-bg); padding: 0.6rem 1rem;
  border-radius: 8px; font-size: 1.2rem; color: var(--v721-text-muted);
  border: 1px solid var(--v721-border);
}

/* App Download CTA */
.v721-app-cta {
  background: linear-gradient(135deg, var(--v721-bg-dark), var(--v721-bg-light));
  border-radius: 14px; padding: 2rem; text-align: center;
  border: 1px solid var(--v721-primary);
}
.v721-app-cta h3 { font-size: 1.8rem; color: var(--v721-primary); margin-bottom: 0.8rem; }
.v721-app-cta p { font-size: 1.3rem; color: var(--v721-text-muted); margin-bottom: 1.2rem; }

/* RTP Table */
.v721-rtp-table { width: 100%; border-collapse: collapse; }
.v721-rtp-table th {
  background: var(--v721-primary); color: #fff;
  padding: 0.6rem; font-size: 1.2rem; text-align: left;
}
.v721-rtp-table td {
  padding: 0.6rem; font-size: 1.2rem;
  border-bottom: 1px solid var(--v721-border);
  color: var(--v721-text-muted);
}
.v721-rtp-table tr:hover td { background: var(--v721-bg-light); }

/* Help Section */
.v721-help-item {
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v721-help-item h4 { font-size: 1.4rem; color: var(--v721-primary); margin-bottom: 0.4rem; }
.v721-help-item p { font-size: 1.2rem; color: var(--v721-text-muted); line-height: 1.5; }

/* Achievements */
.v721-achievement {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v721-achievement-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--v721-bg-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--v721-primary);
}
.v721-achievement-text h4 { font-size: 1.3rem; color: var(--v721-text); }
.v721-achievement-text p { font-size: 1.1rem; color: var(--v721-text-muted); }

/* Tricks Section */
.v721-trick {
  display: flex; gap: 1rem; margin-bottom: 1rem;
  padding: 1rem; background: var(--v721-card-bg);
  border-radius: 10px; border: 1px solid var(--v721-border);
}
.v721-trick-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--v721-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; flex-shrink: 0;
}
.v721-trick-content h4 { font-size: 1.3rem; color: var(--v721-text); margin-bottom: 0.3rem; }
.v721-trick-content p { font-size: 1.2rem; color: var(--v721-text-muted); }

/* Page content paragraph styling */
.v721-content p { margin-bottom: 1rem; line-height: 1.6; }
.v721-content h2 {
  font-size: 1.8rem; color: var(--v721-primary);
  margin: 1.5rem 0 0.8rem; padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--v721-border);
}
.v721-content h3 { font-size: 1.5rem; color: var(--v721-accent2); margin: 1.2rem 0 0.6rem; }

/* Desktop Nav */
.v721-desktop-nav {
  display: none;
}
@media (min-width: 769px) {
  .v721-desktop-nav {
    display: flex; gap: 1.5rem; align-items: center;
  }
  .v721-desktop-nav a {
    color: var(--v721-text-muted); font-size: 1.3rem;
    transition: color 0.2s;
  }
  .v721-desktop-nav a:hover { color: var(--v721-primary); }
}
