/*!
 * fb777pro login - Core Theme Stylesheet
 * Mobile-first Philippine casino access platform
 * All custom classes use wd096- prefix for namespace isolation
 */
:root {
  --wd096-primary: #ff1493;
  --wd096-primary-deep: #c0036f;
  --wd096-light-pink: #ffcccb;
  --wd096-pink: #ffc0cb;
  --wd096-bg: #34495e;
  --wd096-bg-deep: #22313f;
  --wd096-text: #ffcccb;
  --wd096-text-bright: #ffffff;
  --wd096-muted: #aebfd0;
  --wd096-gold: #ffd479;
  --wd096-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.35);
  --wd096-radius: 1rem;
  --wd096-radius-lg: 1.6rem;
  --wd096-gradient: linear-gradient(135deg, #ff1493 0%, #ff7ac2 100%);
  --wd096-gradient-dark: linear-gradient(160deg, #34495e 0%, #22313f 100%);
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--wd096-bg);
  background-image: var(--wd096-gradient-dark);
  color: var(--wd096-text-bright);
  font-size: 1.5rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: var(--wd096-primary);
  text-decoration: none;
}

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

.wd096-skip-link {
  position: absolute;
  left: -999rem;
  top: 0;
  background: var(--wd096-primary);
  color: #fff;
  padding: 0.8rem 1.2rem;
  z-index: 9999;
}
.wd096-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ========== Header ========== */
.wd096-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #22313f 0%, #34495e 100%);
  border-bottom: 0.2rem solid var(--wd096-primary);
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.4);
}

.wd096-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  gap: 0.8rem;
}

.wd096-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--wd096-text-bright);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.wd096-logo img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 0.2rem solid var(--wd096-primary);
}

.wd096-logo span {
  background: var(--wd096-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.wd096-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.wd096-btn-primary {
  background: var(--wd096-gradient);
  color: #fff;
  box-shadow: 0 0.3rem 0.8rem rgba(255, 20, 147, 0.4);
}

.wd096-btn-outline {
  background: transparent;
  color: var(--wd096-text-bright);
  border: 0.15rem solid var(--wd096-primary);
}

.wd096-btn:hover {
  transform: translateY(-0.1rem);
  filter: brightness(1.1);
}

.wd096-btn:active {
  transform: scale(0.96);
}

.wd096-menu-btn {
  background: transparent;
  border: none;
  color: var(--wd096-text-bright);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 0.6rem;
}

.wd096-menu-btn:hover {
  background: rgba(255, 20, 147, 0.18);
}

/* ========== Mobile Menu ========== */
.wd096-mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #1a2632;
  transition: max-height 0.35s ease;
}

.wd096-mobile-menu.wd096-menu-open {
  max-height: 540px;
}

.wd096-mobile-menu ul {
  list-style: none;
  padding: 0.5rem 1rem 1rem;
  max-width: 430px;
  margin: 0 auto;
}

.wd096-mobile-menu li {
  border-bottom: 0.1rem solid rgba(255, 20, 147, 0.18);
}

.wd096-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 0.5rem;
  color: var(--wd096-text);
  font-size: 1.35rem;
  font-weight: 500;
}

.wd096-mobile-menu a:hover {
  color: var(--wd096-primary);
}

/* ========== Main ========== */
main {
  padding-top: 6rem;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 8rem;
  }
}

.wd096-section {
  max-width: 430px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem;
}

.wd096-section-title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wd096-section-title i {
  color: var(--wd096-primary);
}

.wd096-section-intro {
  color: var(--wd096-muted);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.wd096-h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin: 1.5rem 0;
  background: var(--wd096-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========== Carousel ========== */
.wd096-carousel {
  position: relative;
  border-radius: var(--wd096-radius-lg);
  overflow: hidden;
  box-shadow: var(--wd096-shadow);
  margin-bottom: 2rem;
}

.wd096-slides {
  position: relative;
  height: 18rem;
}

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

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

.wd096-slide-caption {
  position: absolute;
  left: 1rem;
  bottom: 1.5rem;
  right: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.8);
}

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

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

.wd096-carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wd096-dot-active {
  background: var(--wd096-primary);
}

/* ========== CTA Banner ========== */
.wd096-cta {
  background: var(--wd096-gradient);
  border-radius: var(--wd096-radius);
  padding: 1.4rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--wd096-shadow);
  margin: 1.5rem 0;
}

.wd096-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.wd096-cta p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.wd096-cta .wd096-btn {
  background: #fff;
  color: var(--wd096-primary);
  font-size: 1.4rem;
  padding: 0.9rem 2rem;
}

/* ========== Promo Link Inline ========== */
.wd096-promo-link {
  color: #fff;
  background: var(--wd096-gradient);
  padding: 0.15rem 0.6rem;
  border-radius: 0.6rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.wd096-promo-link:hover {
  filter: brightness(1.1);
}

/* ========== Game Grid ========== */
.wd096-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 0.2rem solid rgba(255, 20, 147, 0.3);
}

.wd096-category-header h2 {
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wd096-category-header h2 i {
  color: var(--wd096-primary);
}

.wd096-category-header .wd096-more {
  font-size: 1.2rem;
  color: var(--wd096-pink);
}

.wd096-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.wd096-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--wd096-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 0.1rem solid rgba(255, 20, 147, 0.15);
}

.wd096-game-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.4rem 1rem rgba(255, 20, 147, 0.35);
  border-color: var(--wd096-primary);
}

.wd096-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.wd096-game-name {
  font-size: 1.1rem;
  text-align: center;
  padding: 0.4rem 0.3rem;
  color: var(--wd096-text-bright);
  line-height: 1.2;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ========== Info Cards ========== */
.wd096-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--wd096-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border-left: 0.3rem solid var(--wd096-primary);
  box-shadow: var(--wd096-shadow);
}

.wd096-card h3 {
  color: var(--wd096-primary);
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.wd096-card ul {
  list-style: none;
  padding-left: 0;
}

.wd096-card li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 1.3rem;
  color: var(--wd096-text);
}

.wd096-card li::before {
  content: "▸";
  position: absolute;
  left: 0.4rem;
  color: var(--wd096-primary);
}

/* ========== RTP Table ========== */
.wd096-rtp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  font-size: 1.2rem;
}

.wd096-rtp-table th,
.wd096-rtp-table td {
  padding: 0.6rem 0.4rem;
  text-align: left;
  border-bottom: 0.1rem solid rgba(255, 20, 147, 0.18);
}

.wd096-rtp-table th {
  color: var(--wd096-primary);
  font-weight: 700;
}

.wd096-rtp-bar {
  display: inline-block;
  height: 0.7rem;
  background: var(--wd096-gradient);
  border-radius: 0.4rem;
  vertical-align: middle;
}

/* ========== Testimonials ========== */
.wd096-testimonials {
  display: grid;
  gap: 1rem;
}

.wd096-testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--wd096-radius);
  padding: 1rem 1.2rem;
  border-left: 0.3rem solid var(--wd096-gold);
}

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

.wd096-testimonial-text {
  font-size: 1.25rem;
  color: var(--wd096-text);
  margin-top: 0.4rem;
  font-style: italic;
}

.wd096-stars {
  color: var(--wd096-gold);
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

/* ========== Payment Methods ========== */
.wd096-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.wd096-payment-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.6rem;
  padding: 0.7rem 0.3rem;
  text-align: center;
  font-size: 1rem;
  color: var(--wd096-text);
}

.wd096-payment-item i {
  font-size: 1.6rem;
  color: var(--wd096-primary);
  display: block;
  margin-bottom: 0.2rem;
}

/* ========== Winners ========== */
.wd096-winner-list {
  list-style: none;
  margin-top: 0.6rem;
}

.wd096-winner-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 0.1rem dashed rgba(255, 20, 147, 0.2);
  font-size: 1.25rem;
}

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

/* ========== Download CTA ========== */
.wd096-download-cta {
  background: linear-gradient(135deg, #22313f 0%, #ff1493 200%);
  border-radius: var(--wd096-radius-lg);
  padding: 1.8rem 1.2rem;
  text-align: center;
  border: 0.2rem solid var(--wd096-primary);
}

.wd096-download-cta h3 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
  color: #fff;
}

.wd096-download-cta p {
  color: var(--wd096-light-pink);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* ========== Footer ========== */
.wd096-footer {
  background: #1a2632;
  border-top: 0.2rem solid var(--wd096-primary);
  padding: 2rem 1rem 3rem;
  margin-top: 2rem;
}

.wd096-footer-inner {
  max-width: 430px;
  margin: 0 auto;
}

.wd096-footer-brand {
  font-size: 1.3rem;
  color: var(--wd096-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.wd096-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.wd096-footer-promos .wd096-btn {
  font-size: 1.15rem;
  padding: 0.5rem 1rem;
}

.wd096-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.wd096-footer-links a {
  color: var(--wd096-text);
  font-size: 1.2rem;
  padding: 0.4rem 0;
}

.wd096-footer-links a:hover {
  color: var(--wd096-primary);
}

.wd096-footer-copy {
  color: var(--wd096-muted);
  font-size: 1.1rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 0.1rem solid rgba(255, 20, 147, 0.15);
}

/* ========== Bottom Nav ========== */
.wd096-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #22313f 0%, #141e28 100%);
  border-top: 0.2rem solid var(--wd096-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: 6rem;
  padding: 0.3rem 0;
}

.wd096-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--wd096-muted);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
  font-family: inherit;
  transition: color 0.2s ease, transform 0.2s ease;
  min-width: 60px;
  min-height: 56px;
  padding: 0.2rem;
}

.wd096-bottom-nav-item i,
.wd096-bottom-nav-item .material-icons-outlined {
  font-size: 2.2rem;
}

.wd096-bottom-nav-item span:not(.material-icons-outlined) {
  font-size: 1rem;
  letter-spacing: 0.02rem;
}

.wd096-bottom-nav-item:hover {
  color: var(--wd096-primary);
}

.wd096-bottom-nav-item:active {
  transform: scale(0.92);
}

.wd096-bottom-nav-item.wd096-active {
  color: var(--wd096-primary);
}

.wd096-bottom-nav-promo {
  color: var(--wd096-gold);
}

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

/* ========== Reveal Animation ========== */
.wd096-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wd096-reveal.wd096-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Desktop tweaks ========== */
@media (min-width: 769px) {
  body {
    background-size: cover;
  }
  .wd096-header-inner,
  .wd096-section,
  .wd096-footer-inner,
  .wd096-mobile-menu ul {
    max-width: 760px;
  }
  .wd096-game-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ========== Accessibility focus ========== */
:focus-visible {
  outline: 0.2rem solid var(--wd096-gold);
  outline-offset: 0.2rem;
  border-radius: 0.3rem;
}
