/* ph444 online casino - style-2c8c.css
   Mobile-first responsive stylesheet for ph444onlinecasino.click
   All custom classes use the vce3- prefix for namespace isolation.
   Root font 62.5% => 1rem = 10px for predictable rem sizing.
   Comments are in English per project convention.
*/

:root {
  --vce3-primary: #00695C;      /* deep teal - primary brand */
  --vce3-secondary: #2E4057;    /* dark slate - background */
  --vce3-accent: #D8BFD8;       /* thistle - soft accent */
  --vce3-lavender: #E6E6FA;     /* lavender - text on dark */
  --vce3-mint: #B2DFDB;         /* light teal - highlights */
  --vce3-gold: #FFC857;         /* bonus gold */
  --vce3-rose: #F06292;         /* promotional rose */
  --vce3-bg: #0d1f23;           /* page background */
  --vce3-card: #14323a;         /* card background */
  --vce3-card-2: #1a3b44;       /* alt card background */
  --vce3-text: #E6E6FA;
  --vce3-muted: #9FB3B0;
  --vce3-border: rgba(178, 223, 219, 0.18);
  --vce3-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  --vce3-radius: 14px;
  --vce3-radius-sm: 10px;
}

* { box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  background: var(--vce3-bg);
  color: var(--vce3-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--vce3-mint); text-decoration: none; }
a:hover { color: var(--vce3-lavender); text-decoration: underline; }
button { font-family: inherit; }

/* Layout helpers */
.vce3-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; position: relative; }
.vce3-wrapper { padding: 2rem 0; }

/* Header */
.vce3-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--vce3-secondary) 0%, var(--vce3-primary) 100%);
  border-bottom: 1px solid var(--vce3-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: padding .2s ease;
}
.vce3-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; max-width: 430px; margin: 0 auto; gap: 0.6rem;
}
.vce3-header--scrolled .vce3-header__inner { padding: 0.5rem 1.2rem; }
.vce3-brand { display: flex; align-items: center; gap: 0.7rem; color: var(--vce3-lavender); font-weight: 700; font-size: 1.5rem; text-decoration: none; min-width: 0; }
.vce3-brand img { width: 30px; height: 30px; border-radius: 8px; }
.vce3-brand span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vce3-header__actions { display: flex; align-items: center; gap: 0.5rem; }
.vce3-icon-btn {
  background: transparent; border: 1px solid var(--vce3-border);
  color: var(--vce3-lavender); width: 36px; height: 36px;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.7rem; transition: background .2s, transform .2s;
}
.vce3-icon-btn:hover { background: rgba(178, 223, 219, 0.12); transform: scale(1.05); }
.vce3-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: none; border-radius: 999px; padding: 0.7rem 1.2rem; font-size: 1.3rem;
  font-weight: 700; cursor: pointer; text-decoration: none; min-height: 38px;
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.vce3-btn:hover { transform: translateY(-1px); text-decoration: none; }
.vce3-btn--register { background: linear-gradient(135deg, var(--vce3-gold), #ff9f1c); color: #2a1500; box-shadow: 0 4px 12px rgba(255, 200, 87, 0.3); }
.vce3-btn--login { background: var(--vce3-accent); color: #2a1500; }
.vce3-btn--promo { background: linear-gradient(135deg, var(--vce3-rose), var(--vce3-gold)); color: #fff; }
.vce3-btn--ghost { background: transparent; border: 1px solid var(--vce3-border); color: var(--vce3-lavender); }
.vce3-btn--block { width: 100%; }
.vce3-btn--lg { font-size: 1.6rem; padding: 1rem 1.6rem; min-height: 48px; }

/* Mobile menu drawer */
.vce3-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 80%; max-width: 320px;
  height: 100%; background: var(--vce3-secondary); z-index: 9999;
  transform: translateX(0); transition: right .25s ease;
  padding: 6rem 1.6rem 2rem; overflow-y: auto;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
}
.vce3-mobile-menu--open { right: 0; }
.vce3-mobile-menu h3 { color: var(--vce3-mint); font-size: 1.4rem; margin: 1.5rem 0 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.vce3-mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.vce3-mobile-menu li { border-bottom: 1px solid var(--vce3-border); }
.vce3-mobile-menu a { display: block; padding: 1rem 0.4rem; color: var(--vce3-lavender); font-size: 1.4rem; font-weight: 600; }
.vce3-mobile-menu a:hover { color: var(--vce3-gold); padding-left: 0.8rem; }
.vce3-menu-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 9998;
}
.vce3-menu-overlay--visible { opacity: 1; pointer-events: auto; }
.vce3-menu-close { position: absolute; top: 1.2rem; right: 1.2rem; }

/* Main content with clearance for fixed header + bottom nav */
main { padding-top: 64px; }
@media (max-width: 768px) { main { padding-bottom: 88px; } }

/* Carousel */
.vce3-carousel { position: relative; border-radius: var(--vce3-radius); overflow: hidden; box-shadow: var(--vce3-shadow); margin: 1.2rem 0; }
.vce3-carousel-track { display: flex; transition: transform .45s ease; }
.vce3-carousel-slide { min-width: 100%; position: relative; cursor: pointer; }
.vce3-carousel-slide img { width: 100%; height: 190px; object-fit: cover; }
.vce3-carousel-slide .vce3-carousel-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 2.4rem 1.2rem 1rem; color: #fff;
}
.vce3-carousel-caption h2 { margin: 0 0 0.3rem; font-size: 1.8rem; color: var(--vce3-gold); }
.vce3-carousel-caption p { margin: 0; font-size: 1.2rem; color: var(--vce3-lavender); }
.vce3-carousel-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 2; }
.vce3-carousel-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.45); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.vce3-carousel-dot--active { background: var(--vce3-gold); transform: scale(1.25); }

/* Section + heading */
.vce3-section { padding: 1.6rem 0; }
.vce3-section__title { font-size: 1.9rem; color: var(--vce3-mint); margin: 0 0 1rem; display: flex; align-items: center; gap: 0.6rem; }
.vce3-section__title .material-icons { font-size: 24px; color: var(--vce3-gold); }
.vce3-section__intro { color: var(--vce3-muted); font-size: 1.35rem; margin: 0 0 1.2rem; line-height: 1.55; }

/* Filter pills */
.vce3-filter-bar { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.3rem 0 1rem; scrollbar-width: none; }
.vce3-filter-bar::-webkit-scrollbar { display: none; }
.vce3-filter-pill {
  border: 1px solid var(--vce3-border); background: var(--vce3-card);
  color: var(--vce3-lavender); border-radius: 999px; padding: 0.5rem 1rem;
  font-size: 1.25rem; white-space: nowrap; cursor: pointer; font-weight: 600;
}
.vce3-filter-pill--active { background: var(--vce3-primary); border-color: var(--vce3-mint); color: var(--vce3-lavender); }

/* Game grid - compact tiles */
.vce3-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.vce3-game-card {
  background: var(--vce3-card); border: 1px solid var(--vce3-border);
  border-radius: var(--vce3-radius-sm); overflow: hidden; cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex; flex-direction: column; text-align: center;
}
.vce3-game-card:hover { transform: translateY(-3px); border-color: var(--vce3-mint); box-shadow: 0 6px 14px rgba(0,0,0,0.35); }
.vce3-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #0a1518; }
.vce3-game-card__name { padding: 0.45rem 0.4rem 0.6rem; font-size: 1.05rem; font-weight: 600; color: var(--vce3-lavender); min-height: 32px; display: flex; align-items: center; justify-content: center; line-height: 1.2; }

/* Category badge */
.vce3-cat-header { display: flex; align-items: center; gap: 0.5rem; margin: 1.4rem 0 0.8rem; font-size: 1.55rem; color: var(--vce3-gold); font-weight: 700; }
.vce3-cat-header .vce3-cat-line { flex: 1; height: 1px; background: var(--vce3-border); }

/* Generic card */
.vce3-card { background: var(--vce3-card); border: 1px solid var(--vce3-border); border-radius: var(--vce3-radius); padding: 1.2rem; margin-bottom: 1rem; box-shadow: var(--vce3-shadow); }
.vce3-card h3 { margin: 0 0 0.5rem; font-size: 1.5rem; color: var(--vce3-mint); }
.vce3-card p { margin: 0 0 0.6rem; color: var(--vce3-text); font-size: 1.3rem; line-height: 1.55; }
.vce3-card--accent { border-left: 4px solid var(--vce3-gold); }
.vce3-card--promo { background: linear-gradient(135deg, rgba(240,98,146,0.18), rgba(255,200,87,0.18)); border: 1px solid rgba(255,200,87,0.4); }

/* Stats row */
.vce3-stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin: 0.6rem 0; }
.vce3-stat { background: var(--vce3-card-2); border-radius: var(--vce3-radius-sm); padding: 0.9rem; text-align: center; border: 1px solid var(--vce3-border); }
.vce3-stat__num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--vce3-gold); }
.vce3-stat__label { display: block; font-size: 1.1rem; color: var(--vce3-muted); margin-top: 0.2rem; }

/* RTP table */
.vce3-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.vce3-rtp-table th, .vce3-rtp-table td { padding: 0.65rem 0.5rem; border-bottom: 1px solid var(--vce3-border); text-align: left; }
.vce3-rtp-table th { color: var(--vce3-mint); font-size: 1.2rem; text-transform: uppercase; }
.vce3-rtp-table td.vce3-rtp-num { color: var(--vce3-gold); font-weight: 700; text-align: right; }

/* Testimonials */
.vce3-testimonial { display: flex; gap: 0.8rem; padding: 0.9rem; background: var(--vce3-card-2); border-radius: var(--vce3-radius-sm); border-left: 3px solid var(--vce3-mint); margin-bottom: 0.7rem; align-items: flex-start; }
.vce3-testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--vce3-primary), var(--vce3-accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.vce3-testimonial__body { flex: 1; min-width: 0; }
.vce3-testimonial__name { font-weight: 700; color: var(--vce3-mint); font-size: 1.25rem; }
.vce3-testimonial__stars { color: var(--vce3-gold); font-size: 1.1rem; margin: 0.1rem 0; }
.vce3-testimonial__text { margin: 0; font-size: 1.2rem; color: var(--vce3-text); line-height: 1.5; }

/* FAQ accordion */
.vce3-faq-item { background: var(--vce3-card); border: 1px solid var(--vce3-border); border-radius: var(--vce3-radius-sm); margin-bottom: 0.6rem; overflow: hidden; }
.vce3-faq-question { width: 100%; background: transparent; border: none; color: var(--vce3-lavender); padding: 1rem 1.1rem; text-align: left; font-size: 1.3rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; }
.vce3-faq-question .vce3-faq-icon { transition: transform .2s; color: var(--vce3-gold); font-size: 1.6rem; }
.vce3-faq-item--open .vce3-faq-icon { transform: rotate(45deg); }
.vce3-faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 1.1rem; color: var(--vce3-text); font-size: 1.25rem; line-height: 1.55; }
.vce3-faq-item--open .vce3-faq-answer { max-height: 320px; padding: 0 1.1rem 1rem; }

/* Payment methods */
.vce3-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.vce3-pay-item { background: var(--vce3-card-2); border: 1px solid var(--vce3-border); border-radius: var(--vce3-radius-sm); padding: 0.8rem 0.5rem; text-align: center; color: var(--vce3-lavender); font-size: 1.1rem; font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.vce3-pay-item .material-icons, .vce3-pay-item i { font-size: 22px; color: var(--vce3-mint); }

/* Steps list */
.vce3-steps { list-style: none; padding: 0; margin: 0; counter-reset: vce3step; }
.vce3-steps li { counter-increment: vce3step; padding: 0.7rem 0.7rem 0.7rem 3.2rem; position: relative; font-size: 1.3rem; color: var(--vce3-text); border-left: 2px dashed var(--vce3-border); margin-left: 1rem; }
.vce3-steps li::before {
  content: counter(vce3step); position: absolute; left: -1.1rem; top: 0.5rem;
  width: 28px; height: 28px; background: var(--vce3-primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; border: 2px solid var(--vce3-mint);
}

/* Winners strip */
.vce3-winner { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.8rem; background: var(--vce3-card-2); border-radius: var(--vce3-radius-sm); margin-bottom: 0.45rem; font-size: 1.2rem; }
.vce3-winner__avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--vce3-accent); color: #2a1500; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.vce3-winner__amount { margin-left: auto; color: var(--vce3-gold); font-weight: 800; }

/* CTA banner */
.vce3-cta { background: linear-gradient(135deg, var(--vce3-primary), var(--vce3-secondary)); border-radius: var(--vce3-radius); padding: 1.6rem; text-align: center; border: 1px solid var(--vce3-border); margin: 1.4rem 0; }
.vce3-cta h3 { margin: 0 0 0.4rem; color: var(--vce3-gold); font-size: 1.8rem; }
.vce3-cta p { margin: 0 0 1rem; color: var(--vce3-lavender); font-size: 1.3rem; }

/* Promo inline text link */
.vce3-link-inline { color: var(--vce3-gold); font-weight: 700; text-decoration: underline; cursor: pointer; background: none; border: none; padding: 0; font-size: inherit; }
.vce3-link-inline:hover { color: var(--vce3-rose); }

/* SEO content paragraphs */
.vce3-prose p { color: var(--vce3-text); font-size: 1.3rem; line-height: 1.6; margin: 0 0 1rem; }
.vce3-prose h3 { color: var(--vce3-mint); font-size: 1.5rem; margin: 1.2rem 0 0.5rem; }
.vce3-prose ul { color: var(--vce3-text); font-size: 1.3rem; line-height: 1.6; padding-left: 1.4rem; margin: 0 0 1rem; }

/* Footer */
.vce3-footer { background: var(--vce3-secondary); border-top: 1px solid var(--vce3-border); padding: 2rem 1.2rem 1.4rem; margin-top: 1.4rem; }
.vce3-footer__brand { color: var(--vce3-lavender); font-size: 1.3rem; line-height: 1.55; margin-bottom: 1rem; }
.vce3-footer__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1rem; margin-bottom: 1.2rem; }
.vce3-footer__links a { color: var(--vce3-mint); font-size: 1.2rem; }
.vce3-footer__promo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0 1.2rem; }
.vce3-footer__copy { color: var(--vce3-muted); font-size: 1.1rem; border-top: 1px solid var(--vce3-border); padding-top: 1rem; text-align: center; }

/* Mobile bottom navigation - fixed, unique rounded-floating design */
.vce3-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(46, 64, 87, 0.96), rgba(0, 105, 92, 0.98));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(178, 223, 219, 0.25);
  display: flex; justify-content: space-around; align-items: stretch;
  padding: 0.35rem 0.2rem 0.4rem; min-height: 60px;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.35);
}
.vce3-bottom-nav__btn {
  flex: 1; min-width: 60px; min-height: 56px;
  background: transparent; border: none; color: var(--vce3-lavender);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  font-size: 1rem; font-weight: 600; cursor: pointer; padding: 0.2rem;
  border-radius: 12px; position: relative; transition: background .15s, transform .15s, color .15s;
}
.vce3-bottom-nav__btn .material-icons, .vce3-bottom-nav__btn i, .vce3-bottom-nav__btn ion-icon { font-size: 22px; }
.vce3-bottom-nav__btn:hover { transform: translateY(-2px); color: var(--vce3-gold); }
.vce3-bottom-nav__btn--active { color: var(--vce3-gold); background: rgba(255, 200, 87, 0.12); }
.vce3-bottom-nav__btn--active::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 26px; height: 3px; background: var(--vce3-gold); border-radius: 0 0 4px 4px;
}
.vce3-bottom-nav__label { font-size: 1rem; line-height: 1; }

/* Hide bottom nav on desktop, hide desktop nav on mobile */
@media (min-width: 769px) {
  .vce3-bottom-nav { display: none; }
  main { padding-bottom: 0; }
}
@media (max-width: 768px) {
  .vce3-desktop-only { display: none !important; }
}

/* Utility */
.vce3-text-center { text-align: center; }
.vce3-mt-1 { margin-top: 0.5rem; }
.vce3-mt-2 { margin-top: 1rem; }
.vce3-mb-2 { margin-bottom: 1rem; }
.vce3-hidden { display: none !important; }
.vce3-divider { height: 1px; background: var(--vce3-border); margin: 1.2rem 0; border: none; }
