/*!
 * melbet affiliate login - core stylesheet
 * Mobile-first design. CSS root unit uses 62.5% for rem math.
 * Every custom class is namespaced with the v72f- prefix.
 */
:root {
  --v72f-primary: #1A1A2E;
  --v72f-secondary: #36454F;
  --v72f-accent: #FFC0CB;
  --v72f-soft: #AFEEEE;
  --v72f-muted: #696969;
  --v72f-bg: #14142b;
  --v72f-bg-alt: #1f1f3d;
  --v72f-card: #232347;
  --v72f-text: #f4f6fb;
  --v72f-text-soft: #c9cde0;
  --v72f-gold: #ffd98a;
  --v72f-success: #58c98a;
  --v72f-radius: 14px;
  --v72f-shadow: 0 8px 24px rgba(0,0,0,0.35);
  --v72f-header-h: 60px;
  --v72f-nav-h: 64px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, #2a1f44 0%, var(--v72f-bg) 60%);
  color: var(--v72f-text);
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--v72f-soft); text-decoration: none; }
a:hover { color: var(--v72f-accent); }

.v72f-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 14px; }
.v72f-wrapper { padding-top: var(--v72f-header-h); padding-bottom: 90px; }
.v72f-section { margin: 28px 0; }
.v72f-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.v72f-reveal.v72f-visible { opacity: 1; transform: none; }

/* Header */
.v72f-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--v72f-header-h);
  background: linear-gradient(90deg, var(--v72f-primary), var(--v72f-secondary));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--v72f-shadow);
}
.v72f-header-inner {
  height: 100%; max-width: 430px; margin: 0 auto;
  padding: 0 12px; display: flex; align-items: center; gap: 8px;
}
.v72f-brand { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.v72f-brand img { width: 30px; height: 30px; border-radius: 8px; }
.v72f-brand-name { font-size: 1.6rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v72f-brand-name span { color: var(--v72f-accent); }
.v72f-header-actions { display: flex; gap: 6px; align-items: center; }
.v72f-btn {
  border: 0; border-radius: 10px; padding: 8px 14px; font-size: 1.3rem;
  font-weight: 700; cursor: pointer; transition: transform .15s ease, filter .15s ease;
  min-height: 36px;
}
.v72f-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.v72f-btn-primary { background: linear-gradient(135deg, var(--v72f-accent), #ff9aae); color: #1A1A2E; }
.v72f-btn-ghost { background: transparent; color: var(--v72f-soft); border: 1px solid rgba(175,238,238,0.4); }
.v72f-icon-btn {
  background: rgba(255,255,255,0.08); color: #fff; border: 0; width: 36px; height: 36px;
  border-radius: 10px; font-size: 1.8rem; cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center;
}

/* Mobile drawer */
.v72f-menu-overlay {
  position: fixed; inset: 0; background: rgba(10,10,25,0.6); z-index: 9998;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.v72f-menu-overlay.v72f-is-open { opacity: 1; pointer-events: auto; }
.v72f-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 78%; height: 100vh; z-index: 9999;
  background: var(--v72f-bg-alt); padding: 70px 18px 30px; transition: right .28s ease;
  overflow-y: auto;
}
.v72f-mobile-menu.v72f-is-open { right: 0; }
.v72f-mobile-menu h4 { font-size: 1.3rem; color: var(--v72f-soft); margin: 18px 0 8px; text-transform: uppercase; letter-spacing: .08em; }
.v72f-mobile-menu a {
  display: block; padding: 11px 12px; border-radius: 10px; color: var(--v72f-text);
  font-size: 1.4rem; margin-bottom: 4px; background: rgba(255,255,255,0.04);
}
.v72f-mobile-menu a:hover { background: rgba(255,192,203,0.18); color: var(--v72f-accent); }
.v72f-menu-close { position: absolute; top: 14px; right: 14px; }

/* Hero carousel */
.v72f-hero { position: relative; border-radius: var(--v72f-radius); overflow: hidden; box-shadow: var(--v72f-shadow); }
.v72f-hero-track { position: relative; height: 200px; }
.v72f-hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease;
  background-size: cover; background-position: center;
}
.v72f-hero-slide.v72f-active { opacity: 1; }
.v72f-hero-caption {
  position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.v72f-hero-caption h2 { font-size: 1.8rem; margin: 0 0 4px; }
.v72f-hero-caption p { font-size: 1.25rem; margin: 0; color: var(--v72f-soft); }
.v72f-hero-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.v72f-hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 0; cursor: pointer; padding: 0; }
.v72f-hero-dot.v72f-active { background: var(--v72f-accent); transform: scale(1.25); }

/* Sections / headings */
.v72f-section-title {
  display: flex; align-items: center; gap: 8px; font-size: 1.7rem; font-weight: 700;
  margin: 22px 0 12px; color: #fff;
}
.v72f-section-title i { color: var(--v72f-accent); font-size: 1.8rem; }
.v72f-section-title small { font-size: 1.15rem; color: var(--v72f-text-soft); font-weight: 400; margin-left: auto; }

/* Filter chips */
.v72f-filters { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 12px; }
.v72f-filter-chip {
  border: 1px solid rgba(175,238,238,0.3); background: rgba(255,255,255,0.04); color: var(--v72f-text-soft);
  padding: 7px 14px; border-radius: 30px; font-size: 1.2rem; cursor: pointer; white-space: nowrap;
}
.v72f-filter-chip.v72f-active, .v72f-filter-chip:hover {
  background: var(--v72f-accent); color: #1A1A2E; border-color: var(--v72f-accent); font-weight: 700;
}

/* Game grid */
.v72f-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.v72f-game-card {
  background: var(--v72f-card); border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease; border: 1px solid rgba(255,255,255,0.04);
}
.v72f-game-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(255,192,203,0.25); }
.v72f-game-card img { width: 100%; height: 88px; object-fit: cover; }
.v72f-game-card .v72f-game-name { padding: 6px 8px; font-size: 1.15rem; color: var(--v72f-text); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Feature cards */
.v72f-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.v72f-card {
  background: linear-gradient(135deg, var(--v72f-card), #2c2c5a); border-radius: var(--v72f-radius);
  padding: 16px; border: 1px solid rgba(255,255,255,0.06); box-shadow: var(--v72f-shadow);
}
.v72f-card h3 { margin: 0 0 8px; font-size: 1.55rem; color: var(--v72f-accent); }
.v72f-card p { margin: 0; font-size: 1.3rem; color: var(--v72f-text-soft); }
.v72f-card .v72f-inline-link { color: var(--v72f-accent); font-weight: 700; }

.v72f-feature-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.v72f-feature {
  background: rgba(255,255,255,0.04); border-radius: 12px; padding: 14px; text-align: center;
  border: 1px solid rgba(175,238,238,0.15);
}
.v72f-feature i { font-size: 2.4rem; color: var(--v72f-soft); }
.v72f-feature h4 { margin: 6px 0 2px; font-size: 1.35rem; color: #fff; }
.v72f-feature p { margin: 0; font-size: 1.15rem; color: var(--v72f-text-soft); }

/* Tables / RTP */
.v72f-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; background: var(--v72f-card); border-radius: 12px; overflow: hidden; }
.v72f-table th, .v72f-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.v72f-table th { background: rgba(255,192,203,0.15); color: var(--v72f-accent); font-size: 1.2rem; text-transform: uppercase; letter-spacing: .04em; }
.v72f-table tr:last-child td { border-bottom: 0; }

/* Testimonials */
.v72f-testimonial { background: var(--v72f-card); border-radius: 12px; padding: 14px; margin-bottom: 10px; border-left: 3px solid var(--v72f-accent); }
.v72f-testimonial p { margin: 0 0 8px; font-size: 1.3rem; color: var(--v72f-text-soft); }
.v72f-testimonial .v72f-stars { color: var(--v72f-gold); font-size: 1.2rem; }
.v72f-testimonial cite { font-size: 1.2rem; color: var(--v72f-soft); font-style: normal; }

/* FAQ */
.v72f-faq-item { background: var(--v72f-card); border-radius: 12px; padding: 12px 14px; margin-bottom: 8px; }
.v72f-faq-item h4 { margin: 0 0 6px; font-size: 1.4rem; color: var(--v72f-accent); }
.v72f-faq-item p { margin: 0; font-size: 1.25rem; color: var(--v72f-text-soft); }

/* Payment chips */
.v72f-payments { display: flex; flex-wrap: wrap; gap: 8px; }
.v72f-payments span { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 12px; font-size: 1.2rem; color: var(--v72f-text-soft); display: inline-flex; align-items: center; gap: 6px; }

/* CTA */
.v72f-cta {
  background: linear-gradient(135deg, var(--v72f-accent), var(--v72f-soft));
  color: #1A1A2E; border-radius: var(--v72f-radius); padding: 18px; text-align: center;
  box-shadow: 0 12px 28px rgba(255,192,203,0.3);
}
.v72f-cta h3 { margin: 0 0 6px; font-size: 1.7rem; color: #1A1A2E; }
.v72f-cta p { margin: 0 0 12px; font-size: 1.3rem; color: #2a2a44; }

/* Winners */
.v72f-winner { display: flex; justify-content: space-between; padding: 9px 12px; background: rgba(255,255,255,0.04); border-radius: 8px; margin-bottom: 6px; font-size: 1.25rem; }
.v72f-winner .v72f-amount { color: var(--v72f-gold); font-weight: 700; }

/* Footer */
.v72f-footer { background: #0d0d22; padding: 24px 14px 30px; margin-top: 30px; }
.v72f-footer h4 { font-size: 1.4rem; color: var(--v72f-accent); margin: 12px 0 8px; }
.v72f-footer p { font-size: 1.25rem; color: var(--v72f-text-soft); margin: 0 0 10px; }
.v72f-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.v72f-footer-links a { font-size: 1.2rem; color: var(--v72f-text-soft); padding: 4px 0; }
.v72f-footer-promos { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.v72f-footer-promos button { flex: 1 1 45%; }
.v72f-footer-copy { font-size: 1.1rem; color: var(--v72f-muted); text-align: center; margin-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px; }

/* Bottom nav */
.v72f-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--v72f-nav-h); background: linear-gradient(180deg, var(--v72f-secondary), var(--v72f-primary));
  border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-around;
  align-items: stretch;
}
.v72f-bottom-nav button {
  flex: 1; background: transparent; border: 0; color: var(--v72f-text-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; cursor: pointer; min-width: 60px; min-height: 60px; padding: 4px;
  transition: color .15s ease, transform .15s ease;
}
.v72f-bottom-nav button i { font-size: 2.2rem; }
.v72f-bottom-nav button span { font-size: 1rem; }
.v72f-bottom-nav button:hover { color: var(--v72f-accent); transform: translateY(-2px); }
.v72f-bottom-nav .v72f-active { color: var(--v72f-accent); }
.v72f-bottom-nav .v72f-badge {
  position: relative;
}
.v72f-bottom-nav .v72f-badge::after {
  content: "5"; position: absolute; top: 4px; right: 18px; background: var(--v72f-accent);
  color: #1A1A2E; font-size: 0.9rem; font-weight: 700; border-radius: 50%; padding: 1px 5px;
}

/* Reveal utility for paragraph blocks */
.v72f-prose p { font-size: 1.3rem; color: var(--v72f-text-soft); margin: 0 0 10px; }
.v72f-prose h3 { color: var(--v72f-accent); font-size: 1.5rem; margin: 14px 0 6px; }
.v72f-prose a { color: var(--v72f-accent); font-weight: 700; }
.v72f-prose ul { margin: 0 0 10px; padding-left: 18px; color: var(--v72f-text-soft); font-size: 1.3rem; }

@media (min-width: 769px) {
  .v72f-bottom-nav { display: none; }
  .v72f-container { max-width: 760px; }
  .v72f-grid { grid-template-columns: repeat(5, 1fr); }
  .v72f-feature-row { grid-template-columns: repeat(4, 1fr); }
  .v72f-footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .v72f-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 360px) {
  .v72f-grid { grid-template-columns: repeat(2, 1fr); }
  .v72f-hero-track { height: 170px; }
}
