/* sg7.homes - design.css
   Mobile-first gaming website styles. All custom classes use the vc75- prefix.
   Color palette: #212F3D (bg) | #F5DEB3 (text) | #A0522D (accent). */

:root {
  --vc75-bg: #212F3D;
  --vc75-bg-light: #2c3e50;
  --vc75-bg-dark: #172230;
  --vc75-text: #F5DEB3;
  --vc75-text-dim: #c9b787;
  --vc75-accent: #A0522D;
  --vc75-accent-light: #c47148;
  --vc75-gold: #F5DEB3;
  --vc75-card: #2c3e50;
  --vc75-border: rgba(245, 222, 179, 0.18);
  --vc75-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --vc75-radius: 1.2rem;
  --vc75-transition: 0.28s ease;
}

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

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

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--vc75-gold);
  text-decoration: none;
}

a:hover {
  color: var(--vc75-accent-light);
}

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

.vc75-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vc75-gold);
  letter-spacing: 0.5px;
}

.vc75-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

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

.vc75-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--vc75-transition);
  text-align: center;
  line-height: 1;
}

.vc75-btn-primary {
  background: linear-gradient(135deg, var(--vc75-accent), var(--vc75-accent-light));
  color: #fff;
}

.vc75-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(160, 82, 45, 0.5);
}

.vc75-btn-outline {
  background: transparent;
  color: var(--vc75-gold);
  border: 1px solid var(--vc75-gold);
}

.vc75-btn-outline:hover {
  background: var(--vc75-gold);
  color: var(--vc75-bg-dark);
}

.vc75-menu-btn {
  background: transparent;
  border: none;
  color: var(--vc75-gold);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Mobile expandable menu ===== */
.vc75-mobile-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  max-width: 430px;
  background: var(--vc75-bg-dark);
  z-index: 9999;
  padding: 6rem 1.2rem 1.6rem;
  transition: transform 0.32s ease;
  border-bottom: 1px solid var(--vc75-border);
  box-shadow: var(--vc75-shadow);
  max-height: 90vh;
  overflow-y: auto;
}

.vc75-mobile-menu.vc75-menu-open {
  transform: translateX(-50%) translateY(0);
}

.vc75-menu-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: var(--vc75-gold);
  font-size: 2.2rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.vc75-mobile-menu a {
  display: block;
  padding: 1rem 1.2rem;
  margin: 0.4rem 0;
  background: var(--vc75-card);
  border-radius: 0.8rem;
  color: var(--vc75-text);
  font-weight: 600;
  transition: var(--vc75-transition);
}

.vc75-mobile-menu a:hover {
  background: var(--vc75-accent);
  color: #fff;
  padding-left: 1.8rem;
}

/* ===== Main wrapper ===== */
.vc75-main {
  padding-top: 5.4rem;
}

/* ===== Carousel ===== */
.vc75-carousel {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 0 0 1.2rem 1.2rem;
}

.vc75-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.vc75-slide.vc75-slide-active {
  opacity: 1;
}

.vc75-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc75-slide-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(23, 34, 48, 0.78);
  color: var(--vc75-gold);
  padding: 0.4rem 0.8rem;
  border-radius: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.vc75-dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.4rem;
}

.vc75-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 222, 179, 0.5);
  cursor: pointer;
  border: none;
}

.vc75-dot.vc75-dot-active {
  background: var(--vc75-accent-light);
  transform: scale(1.2);
}

/* ===== Sections ===== */
.vc75-section {
  padding: 1.6rem 1rem;
}

.vc75-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--vc75-gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vc75-section-title i,
.vc75-section-title .material-icons-outlined {
  color: var(--vc75-accent-light);
  font-size: 2.2rem;
}

.vc75-lead {
  color: var(--vc75-text-dim);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* ===== Game grid ===== */
.vc75-game-cat {
  margin-bottom: 1.6rem;
}

.vc75-cat-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vc75-accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--vc75-accent);
  padding-left: 0.6rem;
}

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

.vc75-game-card {
  background: var(--vc75-card);
  border-radius: 0.8rem;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--vc75-transition);
  border: 1px solid transparent;
  overflow: hidden;
}

.vc75-game-card:hover {
  border-color: var(--vc75-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.vc75-game-card img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.3rem;
}

.vc75-game-name {
  font-size: 1.05rem;
  color: var(--vc75-text);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

/* ===== Info cards ===== */
.vc75-card {
  background: var(--vc75-card);
  border-radius: var(--vc75-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--vc75-border);
}

.vc75-card h2,
.vc75-card h3 {
  color: var(--vc75-gold);
  margin-bottom: 0.6rem;
}

.vc75-card h2 {
  font-size: 1.8rem;
}

.vc75-card h3 {
  font-size: 1.5rem;
}

.vc75-card p {
  color: var(--vc75-text);
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

/* ===== Promo CTA strip ===== */
.vc75-cta {
  background: linear-gradient(135deg, var(--vc75-accent), var(--vc75-accent-light));
  color: #fff;
  padding: 1.2rem;
  border-radius: var(--vc75-radius);
  text-align: center;
  margin: 1.2rem 0;
}

.vc75-cta h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.vc75-cta p {
  color: #fff;
  margin-bottom: 0.8rem;
}

.vc75-cta .vc75-btn {
  background: var(--vc75-gold);
  color: var(--vc75-bg-dark);
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
}

/* ===== Inline text promo link ===== */
.vc75-promolink {
  color: var(--vc75-gold);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.vc75-promolink:hover {
  color: var(--vc75-accent-light);
}

/* ===== FAQ ===== */
.vc75-faq-item {
  background: var(--vc75-card);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-bottom: 0.6rem;
  border-left: 3px solid var(--vc75-accent);
}

.vc75-faq-item h3 {
  font-size: 1.4rem;
  color: var(--vc75-gold);
  margin-bottom: 0.4rem;
}

.vc75-faq-item p {
  font-size: 1.3rem;
  color: var(--vc75-text-dim);
}

/* ===== Testimonials ===== */
.vc75-testimonial {
  background: var(--vc75-card);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.vc75-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vc75-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.vc75-testimonial-name {
  font-weight: 700;
  color: var(--vc75-gold);
  font-size: 1.3rem;
}

.vc75-stars {
  color: #f4c542;
  font-size: 1.2rem;
  margin: 0.2rem 0;
}

/* ===== Payment methods ===== */
.vc75-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.vc75-pay-item {
  background: var(--vc75-card);
  border-radius: 0.6rem;
  padding: 0.6rem 0.3rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--vc75-text);
  border: 1px solid var(--vc75-border);
}

.vc75-pay-item i,
.vc75-pay-item .material-icons {
  font-size: 2rem;
  color: var(--vc75-gold);
  margin-bottom: 0.2rem;
}

/* ===== Winners showcase ===== */
.vc75-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--vc75-card);
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--vc75-accent);
}

.vc75-winner-name {
  font-weight: 600;
  color: var(--vc75-text);
  font-size: 1.25rem;
}

.vc75-winner-amount {
  color: var(--vc75-gold);
  font-weight: 800;
  font-size: 1.3rem;
}

/* ===== Footer ===== */
.vc75-footer {
  background: var(--vc75-bg-dark);
  padding: 1.6rem 1rem 6rem;
  border-top: 1px solid var(--vc75-border);
  margin-top: 1.2rem;
}

.vc75-footer-brand {
  color: var(--vc75-text-dim);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.vc75-footer-promos .vc75-btn {
  font-size: 1.15rem;
  padding: 0.4rem 0.8rem;
  min-height: 32px;
}

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

.vc75-footer-links a {
  color: var(--vc75-text-dim);
  font-size: 1.2rem;
}

.vc75-footer-links a:hover {
  color: var(--vc75-gold);
}

.vc75-copyright {
  color: var(--vc75-text-dim);
  font-size: 1.15rem;
  text-align: center;
  border-top: 1px solid var(--vc75-border);
  padding-top: 1rem;
}

/* ===== Bottom navigation ===== */
.vc75-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: var(--vc75-bg-dark);
  border-top: 1px solid var(--vc75-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.4);
}

.vc75-bottomnav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--vc75-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  cursor: pointer;
  transition: var(--vc75-transition);
  gap: 0.1rem;
  padding: 0.2rem;
}

.vc75-bottomnav-btn i,
.vc75-bottomnav-btn .material-icons,
.vc75-bottomnav-btn .material-icons-outlined {
  font-size: 22px;
  transition: var(--vc75-transition);
}

.vc75-bottomnav-btn span {
  font-size: 1rem;
  font-weight: 600;
}

.vc75-bottomnav-btn:hover,
.vc75-bottomnav-btn.vc75-bottomnav-active {
  color: var(--vc75-gold);
}

.vc75-bottomnav-btn:hover i,
.vc75-bottomnav-btn:hover .material-icons,
.vc75-bottomnav-btn.vc75-bottomnav-active i,
.vc75-bottomnav-btn.vc75-bottomnav-active .material-icons {
  transform: scale(1.15);
  color: var(--vc75-accent-light);
}

/* ===== Back to top ===== */
.vc75-top-btn {
  position: fixed;
  right: 1.2rem;
  bottom: 7.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vc75-accent);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--vc75-transition);
  z-index: 999;
}

.vc75-top-btn.vc75-top-btn-show {
  opacity: 1;
  visibility: visible;
}

/* ===== Desktop: hide bottom nav ===== */
@media (min-width: 769px) {
  .vc75-bottomnav {
    display: none;
  }
  body {
    max-width: 430px;
  }
}

/* ===== Mobile bottom padding clearance ===== */
@media (max-width: 768px) {
  .vc75-main,
  .vc75-footer {
    padding-bottom: 80px;
  }
}
