/* 7u 7 - Main Stylesheet */
/* All classes use "vedd-" prefix */
/* Color palette: #273746 | #E6E6FA | #F5F5F5 | #EE82EE | #8B0000 | #DDA0DD */

:root {
  --vedd-primary: #273746;
  --vedd-secondary: #EE82EE;
  --vedd-accent: #8B0000;
  --vedd-bg: #1a1a2e;
  --vedd-bg-light: #16213e;
  --vedd-bg-card: #0f3460;
  --vedd-text: #E6E6FA;
  --vedd-text-muted: #DDA0DD;
  --vedd-border: #EE82EE;
  --vedd-white: #F5F5F5;
  --vedd-gold: #f0c040;
  --vedd-gradient: linear-gradient(135deg, #273746 0%, #0f3460 100%);
  --vedd-radius: 8px;
  --vedd-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--vedd-bg);
  color: var(--vedd-text);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--vedd-secondary);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--vedd-text-muted);
}

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

/* ========== HEADER ========== */
.vedd-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--vedd-gradient);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 56px;
  border-bottom: 1px solid var(--vedd-border);
  backdrop-filter: blur(10px);
}

.vedd-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.vedd-logo img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.vedd-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--vedd-white);
  letter-spacing: 0.5px;
}

.vedd-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vedd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  min-height: 36px;
}
.vedd-btn-register {
  background: var(--vedd-secondary);
  color: var(--vedd-primary);
}
.vedd-btn-register:hover {
  background: #d66dd6;
  transform: scale(1.05);
}
.vedd-btn-login {
  background: transparent;
  color: var(--vedd-text);
  border: 1px solid var(--vedd-secondary);
}
.vedd-btn-login:hover {
  background: var(--vedd-secondary);
  color: var(--vedd-primary);
}

.vedd-menu-toggle {
  background: none;
  border: none;
  color: var(--vedd-text);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

/* ========== MOBILE MENU ========== */
.vedd-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.vedd-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 300px;
  height: 100%;
  background: var(--vedd-bg-light);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.vedd-mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--vedd-text);
  font-size: 24px;
  cursor: pointer;
}

.vedd-mobile-menu h3 {
  font-size: 1.6rem;
  color: var(--vedd-secondary);
  margin-bottom: 1.5rem;
}

.vedd-mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--vedd-text);
  border-bottom: 1px solid rgba(238, 130, 238, 0.15);
  transition: color 0.2s;
}
.vedd-mobile-menu a:hover {
  color: var(--vedd-secondary);
}

/* ========== MAIN CONTENT ========== */
main {
  padding-top: 56px;
  min-height: 100vh;
}
@media (max-width: 768px) {
  main {
    padding-bottom: 80px;
  }
}

.vedd-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== CAROUSEL ========== */
.vedd-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--vedd-radius);
  margin-top: 8px;
}
.vedd-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.vedd-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--vedd-radius);
}
.vedd-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.vedd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.vedd-dot-active {
  background: var(--vedd-secondary);
}

/* ========== SECTIONS ========== */
.vedd-section {
  padding: 2rem 0;
}
.vedd-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vedd-white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--vedd-secondary);
  display: inline-block;
}
.vedd-section-subtitle {
  font-size: 1.4rem;
  color: var(--vedd-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ========== GAME GRID ========== */
.vedd-game-category {
  margin-bottom: 2rem;
}
.vedd-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vedd-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vedd-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.vedd-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: var(--vedd-radius);
  overflow: hidden;
  background: var(--vedd-bg-card);
  padding: 6px;
}
.vedd-game-item:hover {
  transform: scale(1.05);
}
.vedd-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.vedd-game-item p {
  font-size: 1rem;
  color: var(--vedd-text);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== CARDS ========== */
.vedd-card {
  background: var(--vedd-bg-card);
  border-radius: var(--vedd-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--vedd-shadow);
  border: 1px solid rgba(238, 130, 238, 0.1);
}

.vedd-promo-btn {
  display: block;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--vedd-accent), #b30000);
  color: var(--vedd-white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: var(--vedd-radius);
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.vedd-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139, 0, 0, 0.4);
  color: var(--vedd-white);
}

.vedd-text-link {
  color: var(--vedd-secondary);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

/* ========== FEATURES LIST ========== */
.vedd-features-list {
  list-style: none;
  padding: 0;
}
.vedd-features-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(238, 130, 238, 0.1);
  font-size: 1.3rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.vedd-features-list li i {
  color: var(--vedd-secondary);
  margin-top: 2px;
  font-size: 1.4rem;
}

/* ========== FAQ ========== */
.vedd-faq-item {
  margin-bottom: 1rem;
}
.vedd-faq-q {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vedd-secondary);
  margin-bottom: 0.3rem;
}
.vedd-faq-a {
  font-size: 1.2rem;
  color: var(--vedd-text);
  line-height: 1.6;
  padding-left: 1rem;
}

/* ========== STATS ========== */
.vedd-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.vedd-stat-item {
  background: var(--vedd-bg-light);
  border-radius: var(--vedd-radius);
  padding: 1rem;
  text-align: center;
}
.vedd-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vedd-gold);
}
.vedd-stat-label {
  font-size: 1rem;
  color: var(--vedd-text-muted);
  margin-top: 4px;
}

/* ========== WINNERS ========== */
.vedd-winner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(238, 130, 238, 0.08);
}
.vedd-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vedd-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.vedd-winner-info {
  flex: 1;
}
.vedd-winner-name {
  font-size: 1.2rem;
  color: var(--vedd-text);
}
.vedd-winner-game {
  font-size: 1rem;
  color: var(--vedd-text-muted);
}
.vedd-winner-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vedd-gold);
}

/* ========== FOOTER ========== */
.vedd-footer {
  background: var(--vedd-primary);
  padding: 2rem 1rem 1rem;
  border-top: 1px solid var(--vedd-border);
}
.vedd-footer-brand {
  font-size: 1.2rem;
  color: var(--vedd-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.vedd-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.vedd-footer-link {
  padding: 6px 12px;
  background: var(--vedd-bg-card);
  color: var(--vedd-text);
  border-radius: 4px;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.vedd-footer-link:hover {
  background: var(--vedd-secondary);
  color: var(--vedd-primary);
}
.vedd-footer-copy {
  font-size: 1rem;
  color: var(--vedd-text-muted);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(238, 130, 238, 0.15);
}

/* ========== BOTTOM NAV ========== */
.vedd-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--vedd-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  z-index: 1000;
  border-top: 1px solid var(--vedd-border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}
.vedd-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--vedd-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  padding: 4px;
}
.vedd-bottom-btn:hover,
.vedd-bottom-btn:focus {
  color: var(--vedd-secondary);
  transform: scale(1.1);
}
.vedd-bottom-btn .vedd-nav-icon {
  font-size: 22px;
  margin-bottom: 2px;
}
.vedd-bottom-btn .vedd-nav-label {
  font-size: 10px;
  white-space: nowrap;
}
.vedd-bottom-active {
  color: var(--vedd-secondary) !important;
}
.vedd-bottom-btn.vedd-bottom-active::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--vedd-secondary);
  border-radius: 2px;
  margin-top: 2px;
}

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

/* ========== PAYMENT / APP ========== */
.vedd-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.vedd-payment-item {
  background: var(--vedd-bg-light);
  padding: 8px 16px;
  border-radius: var(--vedd-radius);
  font-size: 1.2rem;
  color: var(--vedd-text);
  border: 1px solid rgba(238, 130, 238, 0.15);
}

.vedd-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 2rem;
  background: var(--vedd-accent);
  color: var(--vedd-white);
  border-radius: var(--vedd-radius);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}
.vedd-app-btn:hover {
  transform: scale(1.05);
}

/* ========== TESTIMONIALS ========== */
.vedd-testimonial {
  background: var(--vedd-bg-light);
  border-radius: var(--vedd-radius);
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--vedd-secondary);
}
.vedd-testimonial-text {
  font-size: 1.2rem;
  color: var(--vedd-text);
  line-height: 1.5;
  font-style: italic;
}
.vedd-testimonial-author {
  font-size: 1rem;
  color: var(--vedd-text-muted);
  margin-top: 6px;
}

/* ========== TRICKS ========== */
.vedd-trick-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.8rem 0;
}
.vedd-trick-num {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vedd-secondary);
  color: var(--vedd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.vedd-trick-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--vedd-text);
}

/* ========== HELP PAGE ========== */
.vedd-help-section {
  padding: 1.5rem 0;
}
.vedd-step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.vedd-step-list li {
  counter-increment: step;
  padding: 1rem 0 1rem 3.5rem;
  position: relative;
  border-bottom: 1px solid rgba(238, 130, 238, 0.1);
  font-size: 1.3rem;
  line-height: 1.6;
}
.vedd-step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--vedd-secondary);
  color: var(--vedd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ========== UTILITY ========== */
.vedd-text-center { text-align: center; }
.vedd-mt-1 { margin-top: 0.5rem; }
.vedd-mt-2 { margin-top: 1rem; }
.vedd-mt-3 { margin-top: 1.5rem; }
.vedd-mb-1 { margin-bottom: 0.5rem; }
.vedd-mb-2 { margin-bottom: 1rem; }
.vedd-mb-3 { margin-bottom: 1.5rem; }
.vedd-hidden { display: none; }

/* ========== SCHEMA HIDDEN ========== */
.vedd-schema {
  display: none;
}
