/* design-d867.css - ph33 info stylesheet */
/* All classes use v707- prefix for namespace isolation */

:root {
  --v707-bg: #262626;
  --v707-bg-dark: #1a1a1a;
  --v707-bg-card: #2d2d2d;
  --v707-accent: #FF8C00;
  --v707-gold: #FFAA00;
  --v707-blue: #0000CD;
  --v707-light: #AFEEEE;
  --v707-text: #e0e0e0;
  --v707-text-muted: #999;
  --v707-white: #ffffff;
  --v707-radius: 8px;
  --v707-radius-lg: 12px;
  --v707-shadow: 0 2px 8px rgba(0,0,0,0.4);
  --v707-transition: all 0.3s ease;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--v707-bg);
  color: var(--v707-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.v707-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.v707-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.v707-logo-text {
  color: var(--v707-gold);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.v707-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.v707-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: var(--v707-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--v707-transition);
  text-decoration: none;
  min-height: 36px;
  min-width: 44px;
}

.v707-btn-register {
  background: linear-gradient(135deg, var(--v707-accent), var(--v707-gold));
  color: var(--v707-bg-dark);
}

.v707-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255,140,0,0.5);
}

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

.v707-btn-login:hover {
  background: var(--v707-accent);
  color: var(--v707-bg-dark);
}

.v707-menu-toggle {
  background: none;
  border: none;
  color: var(--v707-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.v707-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

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

.v707-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100%;
  background: var(--v707-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 6rem 1.5rem 2rem;
  overflow-y: auto;
}

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

.v707-mobile-menu a {
  display: block;
  color: var(--v707-text);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1.4rem;
  transition: var(--v707-transition);
}

.v707-mobile-menu a:hover {
  color: var(--v707-accent);
  padding-left: 0.5rem;
}

/* Main content spacing */
.v707-main {
  padding-top: 60px;
  padding-bottom: 2rem;
}

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

/* Carousel */
.v707-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--v707-radius) var(--v707-radius);
}

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

.v707-slide:first-child { display: block; }

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

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

.v707-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--v707-transition);
}

.v707-dot-active {
  background: var(--v707-accent);
  width: 20px;
  border-radius: 4px;
}

/* Section styles */
.v707-section {
  padding: 1.5rem 1rem;
}

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

.v707-section-title i,
.v707-section-title .material-icons {
  font-size: 2rem;
  color: var(--v707-accent);
}

/* Game grid */
.v707-category-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v707-accent);
  margin: 1.2rem 0 0.6rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--v707-gold);
}

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

.v707-game-item {
  text-align: center;
  cursor: pointer;
  transition: var(--v707-transition);
  border-radius: var(--v707-radius);
  padding: 0.4rem;
  background: var(--v707-bg-card);
}

.v707-game-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,140,0,0.2);
}

.v707-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--v707-radius);
  object-fit: cover;
}

.v707-game-name {
  font-size: 1rem;
  color: var(--v707-text);
  margin-top: 0.3rem;
  line-height: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Cards & modules */
.v707-card {
  background: var(--v707-bg-card);
  border-radius: var(--v707-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.v707-card h3 {
  color: var(--v707-gold);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.v707-card p {
  color: var(--v707-text);
  line-height: 1.6;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.v707-highlight {
  color: var(--v707-accent);
  font-weight: 600;
}

.v707-text-link {
  color: var(--v707-light);
  text-decoration: underline;
  transition: var(--v707-transition);
}

.v707-text-link:hover {
  color: var(--v707-accent);
}

/* Play Now CTA */
.v707-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(255,170,0,0.1));
  border-radius: var(--v707-radius-lg);
  margin: 1rem;
  text-align: center;
}

.v707-cta h2 {
  color: var(--v707-gold);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.v707-cta p {
  color: var(--v707-text);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.v707-btn-cta {
  background: linear-gradient(135deg, var(--v707-accent), #ff6600);
  color: var(--v707-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--v707-transition);
  min-height: 48px;
}

.v707-btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,140,0,0.5);
}

/* Winner showcase */
.v707-winners {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.v707-winner-name {
  color: var(--v707-light);
  font-weight: 600;
}

.v707-winner-game {
  color: var(--v707-text-muted);
}

.v707-winner-amount {
  color: var(--v707-gold);
  font-weight: 700;
}

/* Testimonials */
.v707-testimonial {
  background: var(--v707-bg-card);
  border-radius: var(--v707-radius-lg);
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--v707-accent);
}

.v707-testimonial-text {
  font-style: italic;
  color: var(--v707-text);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.v707-testimonial-author {
  color: var(--v707-gold);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Security badges */
.v707-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}

.v707-badge {
  background: var(--v707-bg-card);
  border: 1px solid rgba(255,170,0,0.3);
  border-radius: var(--v707-radius);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--v707-light);
}

.v707-badge i {
  color: var(--v707-accent);
  margin-right: 0.3rem;
}

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

.v707-footer-desc {
  color: var(--v707-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

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

.v707-footer-link {
  display: inline-block;
  background: var(--v707-bg-card);
  color: var(--v707-light);
  padding: 0.5rem 1rem;
  border-radius: var(--v707-radius);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--v707-transition);
}

.v707-footer-link:hover {
  background: var(--v707-accent);
  color: var(--v707-bg-dark);
}

.v707-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
  opacity: 0.6;
}

.v707-partners img {
  height: 24px;
  filter: grayscale(100%);
}

.v707-copyright {
  text-align: center;
  color: var(--v707-text-muted);
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Bottom Navigation */
.v707-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: var(--v707-bg-dark);
  border-top: 2px solid var(--v707-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 0 0.3rem;
}

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

.v707-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--v707-text-muted);
  cursor: pointer;
  transition: var(--v707-transition);
  padding: 0.3rem;
  border-radius: var(--v707-radius);
  text-decoration: none;
}

.v707-bottom-nav-btn:hover,
.v707-bottom-nav-btn:active {
  color: var(--v707-accent);
  transform: scale(1.1);
}

.v707-nav-active {
  color: var(--v707-accent) !important;
}

.v707-nav-active::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--v707-accent);
  border-radius: 50%;
  margin-top: 1px;
}

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

.v707-nav-label {
  font-size: 1rem;
  line-height: 1;
}

/* H1 styling */
.v707-h1 {
  font-size: 2rem;
  color: var(--v707-gold);
  text-align: center;
  padding: 1rem;
  line-height: 1.3;
}

/* Payment methods */
.v707-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.v707-payment-item {
  background: var(--v707-bg-card);
  border-radius: var(--v707-radius);
  padding: 0.8rem 1.2rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--v707-light);
  border: 1px solid rgba(255,140,0,0.15);
}

/* Responsive fine-tuning */
@media (max-width: 360px) {
  .v707-game-grid { grid-template-columns: repeat(3, 1fr); }
  .v707-h1 { font-size: 1.7rem; }
}

@media (min-width: 769px) {
  body { max-width: 430px; }
}

/* FAQ accordion styles */
.v707-faq-item {
  background: var(--v707-bg-card);
  border-radius: var(--v707-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.v707-faq-q {
  padding: 1rem;
  color: var(--v707-gold);
  font-weight: 600;
  font-size: 1.3rem;
  cursor: pointer;
}

.v707-faq-a {
  padding: 0 1rem 1rem;
  color: var(--v707-text);
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Guide step styles */
.v707-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.v707-step-num {
  background: var(--v707-accent);
  color: var(--v707-bg-dark);
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.v707-step-content h3 {
  color: var(--v707-gold);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.v707-step-content p {
  color: var(--v707-text);
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Promo text link in content */
.v707-promo-link {
  color: var(--v707-accent);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dashed var(--v707-accent);
}

.v707-promo-link:hover {
  color: var(--v707-gold);
}
