/* ============================================================
 * Plus777 Download - layout-c774.css
 * All custom classes use the v44c- prefix to avoid collisions.
 * CSS variables follow the --v44c- naming convention.
 * Mobile-first responsive layout, viewport capped at 430px.
 * ============================================================ */

:root {
  --v44c-bg: #0E1621;
  --v44c-bg-elev: #16202E;
  --v44c-bg-card: #1B2738;
  --v44c-bg-soft: #213046;
  --v44c-text: #AFEEEE;
  --v44c-text-muted: #C0C0C0;
  --v44c-primary: #40E0D0;
  --v44c-accent: #DAA520;
  --v44c-secondary: #2E8B57;
  --v44c-danger: #ff5a5f;
  --v44c-border: rgba(175, 238, 238, 0.12);
  --v44c-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --v44c-radius: 14px;
  --v44c-radius-sm: 10px;
  --v44c-header-h: 60px;
  --v44c-bottom-nav-h: 64px;
  --v44c-max-w: 430px;
  --v44c-gradient: linear-gradient(135deg, #40E0D0 0%, #2E8B57 100%);
  --v44c-gold-gradient: linear-gradient(135deg, #DAA520 0%, #f5d76e 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--v44c-bg);
  color: var(--v44c-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--v44c-primary); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.v44c-no-scroll { overflow: hidden; }

/* Layout containers */
.v44c-wrapper { max-width: var(--v44c-max-w); margin: 0 auto; padding: 0 1.4rem; }
.v44c-main { padding-top: calc(var(--v44c-header-h) + 0.5rem); padding-bottom: calc(var(--v44c-bottom-nav-h) + 2rem); }
.v44c-section { padding: 2.4rem 0; }
.v44c-section-title { font-size: 2rem; font-weight: 700; color: var(--v44c-text); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
.v44c-section-title i { color: var(--v44c-accent); font-size: 2.2rem; }
.v44c-lead { color: var(--v44c-text-muted); font-size: 1.5rem; line-height: 1.6; }

/* Header */
.v44c-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--v44c-header-h);
  background: rgba(14, 22, 33, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--v44c-border);
  z-index: 1000;
}
.v44c-header-inner { max-width: var(--v44c-max-w); margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 1.2rem; }
.v44c-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: var(--v44c-text); }
.v44c-brand-logo { width: 32px; height: 32px; border-radius: 8px; background: var(--v44c-gradient); display: grid; place-items: center; color: #0E1621; font-weight: 800; font-size: 1.6rem; }
.v44c-brand-name { font-size: 1.6rem; font-weight: 700; background: var(--v44c-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.v44c-header-actions { display: flex; align-items: center; gap: 0.6rem; }

/* Buttons */
.v44c-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 38px; padding: 0 1.2rem; border-radius: 999px; font-size: 1.35rem; font-weight: 600; transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease; cursor: pointer; }
.v44c-btn:active { transform: scale(0.96); }
.v44c-btn-primary { background: var(--v44c-gradient); color: #0E1621; box-shadow: 0 6px 14px rgba(64, 224, 208, 0.3); }
.v44c-btn-accent { background: var(--v44c-gold-gradient); color: #0E1621; box-shadow: 0 6px 14px rgba(218, 165, 32, 0.3); }
.v44c-btn-outline { border: 1px solid var(--v44c-primary); color: var(--v44c-primary); background: rgba(64, 224, 208, 0.08); }
.v44c-btn-block { width: 100%; }
.v44c-icon-btn { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; color: var(--v44c-text); font-size: 1.8rem; background: rgba(175, 238, 238, 0.08); }

/* Mobile menu */
.v44c-menu-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 9998; }
.v44c-overlay-active { opacity: 1; pointer-events: auto; }
.v44c-mobile-menu { position: fixed; top: 0; right: -85%; width: 80%; max-width: 320px; height: 100vh; background: var(--v44c-bg-elev); padding: 2.4rem 1.6rem; transform: translateX(0); transition: right 0.3s ease; z-index: 9999; overflow-y: auto; }
.v44c-menu-open { right: 0; }
.v44c-menu-title { font-size: 1.7rem; font-weight: 700; color: var(--v44c-accent); margin: 1.6rem 0 0.8rem; border-bottom: 1px solid var(--v44c-border); padding-bottom: 0.6rem; }
.v44c-menu-link { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0.6rem; color: var(--v44c-text); font-size: 1.5rem; border-radius: 10px; transition: background 0.15s ease; }
.v44c-menu-link:hover, .v44c-menu-link:focus { background: rgba(64, 224, 208, 0.08); }
.v44c-menu-link i { color: var(--v44c-primary); font-size: 1.7rem; width: 22px; text-align: center; }
.v44c-menu-cta { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }

/* Carousel */
.v44c-carousel { position: relative; border-radius: var(--v44c-radius); overflow: hidden; box-shadow: var(--v44c-shadow); margin-bottom: 1.2rem; }
.v44c-slides { position: relative; width: 100%; aspect-ratio: 16/9; }
.v44c-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; cursor: pointer; }
.v44c-slide img { width: 100%; height: 100%; object-fit: cover; }
.v44c-slide-active { opacity: 1; }
.v44c-slide-caption { position: absolute; left: 1.2rem; bottom: 1.2rem; right: 1.2rem; background: rgba(14, 22, 33, 0.7); padding: 0.8rem 1rem; border-radius: 10px; font-size: 1.35rem; color: var(--v44c-text); }
.v44c-carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: grid; place-items: center; background: rgba(0,0,0,0.45); color: #fff; border-radius: 50%; font-size: 1.6rem; z-index: 2; }
.v44c-arrow-left { left: 0.6rem; }
.v44c-arrow-right { right: 0.6rem; }
.v44c-dots { position: absolute; bottom: 0.6rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.5rem; z-index: 2; }
.v44c-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; }
.v44c-dot-active { background: var(--v44c-accent); width: 22px; border-radius: 4px; }

/* Hero */
.v44c-hero { background: linear-gradient(160deg, #16202E 0%, #0E1621 100%); border: 1px solid var(--v44c-border); border-radius: var(--v44c-radius); padding: 2rem 1.6rem; text-align: center; margin-bottom: 1.4rem; }
.v44c-hero h1 { font-size: 2.3rem; line-height: 1.25; color: var(--v44c-text); margin-bottom: 1rem; }
.v44c-hero h1 span { color: var(--v44c-accent); }
.v44c-hero p { color: var(--v44c-text-muted); font-size: 1.45rem; margin-bottom: 1.4rem; }
.v44c-hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* Game grid */
.v44c-category-tabs { display: flex; gap: 0.6rem; overflow-x: auto; padding: 0.4rem 0 1rem; -webkit-overflow-scrolling: touch; }
.v44c-category-tab { flex: 0 0 auto; padding: 0.6rem 1.2rem; border-radius: 999px; background: rgba(175, 238, 238, 0.08); color: var(--v44c-text-muted); font-size: 1.35rem; font-weight: 600; white-space: nowrap; }
.v44c-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.v44c-game-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--v44c-bg-card); border-radius: var(--v44c-radius-sm); padding: 0.6rem; border: 1px solid var(--v44c-border); transition: transform 0.15s ease, border-color 0.15s ease; cursor: pointer; }
.v44c-game-card:hover, .v44c-game-card:active { transform: translateY(-2px); border-color: var(--v44c-primary); }
.v44c-game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; margin-bottom: 0.5rem; }
.v44c-game-name { font-size: 1.2rem; color: var(--v44c-text); font-weight: 600; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Cards & features */
.v44c-card { background: var(--v44c-bg-card); border: 1px solid var(--v44c-border); border-radius: var(--v44c-radius); padding: 1.6rem; margin-bottom: 1.2rem; }
.v44c-card-title { font-size: 1.7rem; font-weight: 700; color: var(--v44c-accent); margin-bottom: 0.8rem; }
.v44c-feature-list { display: grid; gap: 0.8rem; margin-top: 0.8rem; }
.v44c-feature-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: var(--v44c-bg-soft); border-radius: 10px; }
.v44c-feature-item i, .v44c-feature-item ion-icon { color: var(--v44c-primary); font-size: 1.9rem; flex-shrink: 0; }
.v44c-feature-item h4 { font-size: 1.45rem; color: var(--v44c-text); margin-bottom: 0.3rem; }
.v44c-feature-item p { color: var(--v44c-text-muted); font-size: 1.3rem; line-height: 1.5; }

/* Steps */
.v44c-steps { display: grid; gap: 0.8rem; counter-reset: v44c-step; }
.v44c-step { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: var(--v44c-bg-soft); border-radius: 10px; counter-increment: v44c-step; }
.v44c-step::before { content: counter(v44c-step); flex-shrink: 0; width: 30px; height: 30px; background: var(--v44c-gradient); color: #0E1621; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.4rem; }
.v44c-step p { font-size: 1.35rem; color: var(--v44c-text-muted); line-height: 1.55; }

/* FAQ accordion */
.v44c-faq-item { background: var(--v44c-bg-soft); border-radius: 10px; margin-bottom: 0.6rem; overflow: hidden; }
.v44c-faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; font-size: 1.4rem; font-weight: 600; color: var(--v44c-text); width: 100%; text-align: left; }
.v44c-faq-icon { color: var(--v44c-accent); font-size: 1.6rem; font-weight: 700; }
.v44c-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.2rem; color: var(--v44c-text-muted); font-size: 1.3rem; line-height: 1.55; }
.v44c-faq-open .v44c-faq-body { padding-bottom: 1.1rem; }

/* Testimonials */
.v44c-testimonials { display: grid; gap: 0.8rem; }
.v44c-testimonial { background: var(--v44c-bg-soft); border-radius: 10px; padding: 1.2rem; border-left: 3px solid var(--v44c-accent); }
.v44c-testimonial-stars { color: var(--v44c-accent); margin-bottom: 0.5rem; font-size: 1.3rem; }
.v44c-testimonial p { color: var(--v44c-text); font-size: 1.35rem; line-height: 1.5; margin-bottom: 0.6rem; }
.v44c-testimonial-author { color: var(--v44c-text-muted); font-size: 1.25rem; }

/* Payment grid */
.v44c-payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.v44c-payment-item { background: var(--v44c-bg-soft); border-radius: 10px; padding: 0.9rem 0.4rem; text-align: center; font-size: 1.15rem; color: var(--v44c-text-muted); border: 1px solid var(--v44c-border); }
.v44c-payment-item i { display: block; font-size: 1.9rem; color: var(--v44c-primary); margin-bottom: 0.4rem; }

/* Winners ticker */
.v44c-winners { display: grid; gap: 0.5rem; }
.v44c-winner { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 1rem; background: var(--v44c-bg-soft); border-radius: 10px; font-size: 1.3rem; }
.v44c-winner-name { color: var(--v44c-text); font-weight: 600; }
.v44c-winner-amount { color: var(--v44c-accent); font-weight: 700; }

/* Inline link styles */
.v44c-inline-link { color: var(--v44c-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.v44c-promo-text { color: var(--v44c-accent); font-weight: 700; text-decoration: underline; cursor: pointer; }

/* CTA banner */
.v44c-cta-banner { background: var(--v44c-gradient); border-radius: var(--v44c-radius); padding: 2rem 1.4rem; text-align: center; color: #0E1621; margin: 1.4rem 0; }
.v44c-cta-banner h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.v44c-cta-banner p { font-size: 1.4rem; margin-bottom: 1.2rem; }

/* Footer */
.v44c-footer { background: var(--v44c-bg-elev); border-top: 1px solid var(--v44c-border); padding: 2.4rem 1.4rem; margin-top: 2rem; }
.v44c-footer-brand { font-size: 1.8rem; font-weight: 700; background: var(--v44c-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.6rem; }
.v44c-footer-desc { color: var(--v44c-text-muted); font-size: 1.35rem; line-height: 1.6; margin-bottom: 1.2rem; }
.v44c-footer-promos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-bottom: 1.4rem; }
.v44c-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1rem; margin-bottom: 1.4rem; }
.v44c-footer-links a { color: var(--v44c-text-muted); font-size: 1.3rem; padding: 0.3rem 0; }
.v44c-footer-links a:hover { color: var(--v44c-primary); }
.v44c-footer-copy { text-align: center; color: var(--v44c-text-muted); font-size: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--v44c-border); }

/* Mobile bottom navigation */
.v44c-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; height: var(--v44c-bottom-nav-h);
  background: rgba(22, 32, 46, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--v44c-border);
  display: flex; justify-content: space-around; align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}
.v44c-bottom-nav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 60px;
  color: var(--v44c-text-muted); font-size: 1.1rem; text-decoration: none; gap: 0.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.v44c-bottom-nav-btn i, .v44c-bottom-nav-btn .material-icons-outlined, .v44c-bottom-nav-btn ion-icon { font-size: 2.2rem; }
.v44c-bottom-nav-btn:active { transform: scale(0.92); }
.v44c-bottom-nav-btn.v44c-nav-current, .v44c-bottom-nav-btn:hover { color: var(--v44c-accent); }
.v44c-nav-promo { position: relative; }
.v44c-nav-promo::after { content: ''; position: absolute; top: 6px; right: 16px; width: 8px; height: 8px; background: var(--v44c-danger); border-radius: 50%; }

/* Reveal animation */
.v44c-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.v44c-revealed { opacity: 1; transform: translateY(0); }

/* Responsive (desktop) */
@media (min-width: 769px) {
  .v44c-bottom-nav { display: none; }
  .v44c-wrapper, .v44c-header-inner { max-width: 760px; }
  .v44c-main { padding-bottom: 2rem; }
  .v44c-game-grid { grid-template-columns: repeat(6, 1fr); }
  .v44c-payment-grid { grid-template-columns: repeat(6, 1fr); }
  .v44c-footer-promos { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 600px) and (max-width: 768px) {
  .v44c-game-grid { grid-template-columns: repeat(4, 1fr); }
  .v44c-payment-grid { grid-template-columns: repeat(4, 1fr); }
}
