/* =========================================
   Pagluwin Theme - Custom CSS
   Site: pagluwin.com
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.8; }

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

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    background: #1a1a2e;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    position: relative;
}

/* Branding */
.site-branding .site-title-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-branding img { max-height: 50px; width: auto; }

/* Navigation */
.primary-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.primary-nav .nav-menu li a {
    display: block;
    padding: 8px 14px;
    color: #fff;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.primary-nav .nav-menu li a:hover,
.primary-nav .nav-menu li.current-menu-item > a {
    background: rgba(255,255,255,0.15);
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 5px;
    padding: 7px 10px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon { display: flex; flex-direction: column; gap: 5px; }

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger active (X) animation */
.menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   MAIN CONTENT
   ========================================= */
.main-content { padding: 40px 0; min-height: 60vh; }

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.post-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.post-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.post-card .post-thumbnail img { width: 100%; height: 200px; object-fit: cover; }

.post-body { padding: 18px; }

.post-title { font-size: 1.1rem; margin-bottom: 6px; font-weight: 600; }
.post-title a:hover { color: #1a1a2e; }

.post-meta { font-size: 0.8rem; color: #888; margin-bottom: 10px; }

.post-excerpt { font-size: 0.92rem; color: #555; margin-bottom: 12px; }

.read-more {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 7px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background 0.2s;
}
.read-more:hover { background: #16213e; opacity: 1; }

/* Single Post */
.entry-header { margin-bottom: 20px; }
.entry-title { font-size: 2rem; line-height: 1.3; margin-bottom: 8px; }
.entry-meta { font-size: 0.85rem; color: #888; }
.entry-thumbnail { margin-bottom: 24px; border-radius: 8px; overflow: hidden; }
.entry-thumbnail img { width: 100%; max-height: 450px; object-fit: cover; }
.entry-content { font-size: 1rem; line-height: 1.8; }
.entry-content p { margin-bottom: 16px; }
.entry-content h2, .entry-content h3 { margin: 24px 0 12px; }

/* Page */
.page-title { font-size: 1.8rem; margin-bottom: 20px; }
.page-content-body { font-size: 1rem; line-height: 1.8; }
.page-content-body p { margin-bottom: 16px; }

/* Pagination */
.pagination { margin-top: 40px; text-align: center; }
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 2px;
    font-size: 0.9rem;
}
.pagination .page-numbers.current { background: #1a1a2e; color: #fff; border-color: #1a1a2e; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #111;
    color: #ccc;
    padding: 40px 0 20px;
}

.footer-widgets { margin-bottom: 30px; }

.footer-widget-title { font-size: 1rem; color: #fff; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-menu { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; }
.footer-menu li a { color: #aaa; font-size: 0.88rem; }
.footer-menu li a:hover { color: #fff; opacity: 1; }

.footer-copy { font-size: 0.85rem; color: #777; }
.footer-copy a { color: #aaa; }

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {

    .menu-toggle { display: block; }

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
    }

    .primary-nav.nav-open { display: block; }

    .primary-nav .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .primary-nav .nav-menu li a {
        padding: 12px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .entry-title { font-size: 1.5rem; }

    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .posts-grid { grid-template-columns: 1fr; }
    .site-branding .site-title-link { font-size: 1.2rem; }
}


/* Homepage  */

/* ============================================================
   PagluWin Homepage — Full CSS
   Paste in: assets/css/custom.css OR Appearance > Customize > Additional CSS
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --pw-dark:    #0f0c29;
  --pw-dark2:   #1a1650;
  --pw-mid:     #16213e;
  --pw-accent:  #f5a623;
  --pw-gold:    #f5c518;
  --pw-green:   #27ae60;
  --pw-blue:    #2980b9;
  --pw-purple:  #8e44ad;
  --pw-text:    #333;
  --pw-light:   #f8f9fc;
  --pw-white:   #ffffff;
  --pw-radius:  12px;
  --pw-shadow:  0 4px 24px rgba(0,0,0,0.10);
  --pw-trans:   0.25s ease;
}

/* ── RESET / BASE ──────────────────────────────────────── */
.pw-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.pw-section-head { text-align: center; margin-bottom: 48px; }
.pw-section-title { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: var(--pw-dark); line-height: 1.25; margin-bottom: 12px; }
.pw-section-sub { font-size: 1.05rem; color: #666; max-width: 600px; margin: 0 auto; }
.pw-section-head--light .pw-section-title { color: var(--pw-white); }
.pw-section-head--light .pw-section-sub { color: rgba(255,255,255,0.75); }
.pw-left { text-align: left; }

/* ── BUTTONS ───────────────────────────────────────────── */
.pw-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--pw-trans), box-shadow var(--pw-trans);
  cursor: pointer;
  border: none;
}
.pw-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); opacity: 1; }

.pw-btn-primary { background: linear-gradient(135deg, #f5a623, #e8890c); color: #fff; }
.pw-btn-outline { background: transparent; color: var(--pw-white); border: 2px solid rgba(255,255,255,0.7); }
.pw-btn-outline:hover { background: rgba(255,255,255,0.1); }
.pw-btn-gold { background: linear-gradient(135deg, var(--pw-gold), #e6b800); color: #1a1a1a; }
.pw-btn-white { background: var(--pw-white); color: var(--pw-dark); }
.pw-btn-full { display: block; text-align: center; width: 100%; }

/* ══════════════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════════════ */
.pw-hero {
  background: linear-gradient(135deg, var(--pw-dark) 0%, var(--pw-dark2) 50%, #302b63 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.pw-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.pw-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pw-badge {
  display: inline-block;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.5);
  color: var(--pw-accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.pw-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--pw-white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.pw-highlight {
  background: linear-gradient(135deg, #f5a623, #f5c518);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pw-hero-sub { color: rgba(255,255,255,0.82); font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; }

.pw-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }

.pw-hero-note { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

/* Phone Mockup */
.pw-hero-img { display: flex; justify-content: center; align-items: flex-end; }
.pw-phone-mockup {
  width: 220px;
  background: #1e1e3a;
  border-radius: 30px;
  border: 3px solid rgba(245,166,35,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  padding: 20px;
  animation: pw-float 3s ease-in-out infinite;
}
@keyframes pw-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.pw-phone-screen { background: linear-gradient(135deg,#0f3460,#16213e); border-radius: 18px; padding: 24px 20px; }
.pw-phone-label  { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-bottom: 4px; }
.pw-phone-amount { color: #f5c518; font-size: 2rem; font-weight: 900; margin-bottom: 2px; }
.pw-phone-sub    { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-bottom: 16px; }
.pw-phone-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
.pw-phone-bar-fill { height: 100%; width: 72%; background: linear-gradient(90deg, #f5a623, #f5c518); border-radius: 4px; }
.pw-phone-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #f5a623, #e8890c);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.pw-hero-wave { line-height: 0; margin-top: 60px; }
.pw-hero-wave svg { display: block; width: 100%; height: 60px; }

/* ══════════════════════════════════════════════
   SECTION 2 — TRUST BAR
══════════════════════════════════════════════ */
.pw-trust {
  background: var(--pw-light);
  padding: 40px 0;
  border-bottom: 1px solid #e8e8e8;
}
.pw-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.pw-trust-item { padding: 16px; }
.pw-trust-num   { display: block; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--pw-dark); }
.pw-trust-label { display: block; font-size: 0.85rem; color: #888; margin-top: 4px; }

/* ══════════════════════════════════════════════
   SECTION 3 — ABOUT
══════════════════════════════════════════════ */
.pw-about { background: var(--pw-white); padding: 80px 0; }
.pw-about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pw-about-card {
  background: var(--pw-light);
  border-radius: var(--pw-radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #eee;
  transition: box-shadow var(--pw-trans), transform var(--pw-trans);
}
.pw-about-card:hover { box-shadow: var(--pw-shadow); transform: translateY(-4px); }
.pw-about-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.pw-about-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--pw-dark); margin-bottom: 10px; }
.pw-about-card p  { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* ══════════════════════════════════════════════
   SECTION 4 — STEPS
══════════════════════════════════════════════ */
.pw-steps {
  background: linear-gradient(135deg, var(--pw-dark) 0%, var(--pw-dark2) 100%);
  padding: 80px 0;
}
.pw-steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.pw-step-card {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pw-radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: background var(--pw-trans);
}
.pw-step-card:hover { background: rgba(255,255,255,0.12); }
.pw-step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--pw-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pw-step-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.pw-step-card h3 { color: var(--pw-white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pw-step-card p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.5; }
.pw-step-arrow { font-size: 1.5rem; color: var(--pw-accent); flex-shrink: 0; }
.pw-steps-cta { text-align: center; }

/* ══════════════════════════════════════════════
   SECTION 5 — BONUS
══════════════════════════════════════════════ */
.pw-bonus { background: var(--pw-white); padding: 80px 0; }
.pw-bonus-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 36px; }
.pw-bonus-card {
  border-radius: var(--pw-radius);
  padding: 32px 22px;
  text-align: center;
  position: relative;
  transition: transform var(--pw-trans);
}
.pw-bonus-card:hover { transform: translateY(-5px); }
.pw-bonus-card h3 { font-size: 1.05rem; font-weight: 700; margin: 14px 0 10px; }
.pw-bonus-card p  { font-size: 0.88rem; line-height: 1.6; }
.pw-bonus-icon { font-size: 2.2rem; display: block; }

.pw-bonus-card--gold   { background: #fffbf0; border: 2px solid #f5c518; }
.pw-bonus-card--gold h3   { color: #b8860b; }
.pw-bonus-card--gold p    { color: #7a6000; }
.pw-bonus-card--green  { background: #f0fff4; border: 2px solid #27ae60; }
.pw-bonus-card--green h3  { color: #1a7a40; }
.pw-bonus-card--green p   { color: #1a6035; }
.pw-bonus-card--blue   { background: #f0f8ff; border: 2px solid #2980b9; }
.pw-bonus-card--blue h3   { color: #1a5c8a; }
.pw-bonus-card--blue p    { color: #1a4a6e; }
.pw-bonus-card--purple { background: #faf0ff; border: 2px solid #8e44ad; }
.pw-bonus-card--purple h3 { color: #6a2080; }
.pw-bonus-card--purple p  { color: #4a1560; }

.pw-bonus-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════════════
   SECTION 6 — FEATURES
══════════════════════════════════════════════ */
.pw-features { background: var(--pw-light); padding: 80px 0; }
.pw-features-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.pw-feat-list { list-style: none; padding: 0; margin-top: 28px; }
.pw-feat-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.pw-feat-check { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.pw-feat-list li strong { font-weight: 700; color: var(--pw-dark); display: block; margin-bottom: 2px; }
.pw-feat-list li div    { color: #555; font-size: 0.93rem; line-height: 1.5; }

.pw-cta-box {
  background: linear-gradient(135deg, var(--pw-dark), var(--pw-dark2));
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 100px;
  box-shadow: 0 12px 40px rgba(15,12,41,0.3);
}
.pw-cta-box-top { color: var(--pw-accent); font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.pw-cta-box h3  { color: var(--pw-white); font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.pw-cta-box-sub { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 24px; }
.pw-cta-box-note{ color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 14px; }

/* ══════════════════════════════════════════════
   SECTION 7 — REVIEWS
══════════════════════════════════════════════ */
.pw-reviews {
  background: linear-gradient(135deg, #1a1650, #302b63);
  padding: 80px 0;
}
.pw-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pw-review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pw-radius);
  padding: 28px 24px;
  transition: background var(--pw-trans);
}
.pw-review-card:hover { background: rgba(255,255,255,0.13); }
.pw-review-stars { font-size: 1.1rem; margin-bottom: 14px; }
.pw-review-text { color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.pw-review-author { display: flex; align-items: center; gap: 12px; }
.pw-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pw-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pw-avatar-green  { background: var(--pw-green); }
.pw-avatar-orange { background: #e67e22; }
.pw-review-author strong { color: var(--pw-white); display: block; font-size: 0.92rem; }
.pw-review-author span   { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ══════════════════════════════════════════════
   SECTION 8 — FAQ
══════════════════════════════════════════════ */
.pw-faq { background: var(--pw-white); padding: 80px 0; }
.pw-faq-list { max-width: 780px; margin: 0 auto; }
.pw-faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--pw-trans);
}
.pw-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.pw-faq-q {
  width: 100%;
  background: var(--pw-light);
  border: none;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pw-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: background var(--pw-trans);
}
.pw-faq-q:hover { background: #f0f0f8; }
.pw-faq-q[aria-expanded="true"] { background: var(--pw-dark); color: var(--pw-white); }
.pw-faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--pw-trans);
  line-height: 1;
}
.pw-faq-q[aria-expanded="true"] .pw-faq-icon { transform: rotate(45deg); }
.pw-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.pw-faq-a.pw-open { max-height: 200px; padding: 16px 22px; }
.pw-faq-a p { color: #555; font-size: 0.95rem; line-height: 1.7; }

/* ══════════════════════════════════════════════
   SECTION 9 — FINAL CTA
══════════════════════════════════════════════ */
.pw-final-cta {
  background: linear-gradient(135deg, #f5a623 0%, #e8890c 50%, #d4700a 100%);
  padding: 80px 0;
  text-align: center;
}
.pw-final-cta-inner { max-width: 680px; margin: 0 auto; }
.pw-final-cta h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; color: var(--pw-white); margin-bottom: 16px; }
.pw-final-cta p  { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 30px; }
.pw-final-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 20px; line-height: 1.6; margin-bottom: 0; }

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pw-hero-inner    { grid-template-columns: 1fr; gap: 32px; }
  .pw-hero-img      { justify-content: flex-start; }
  .pw-hero          { padding-bottom: 40px; }
  .pw-features-inner{ grid-template-columns: 1fr; gap: 40px; }
  .pw-cta-box       { position: static; }
  .pw-bonus-grid    { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .pw-hero        { padding: 60px 0 0; }
  .pw-hero-btns   { flex-direction: column; }
  .pw-btn         { text-align: center; }

  .pw-trust-grid  { grid-template-columns: repeat(2,1fr); gap: 16px; }

  .pw-about-grid  { grid-template-columns: 1fr; }

  .pw-steps-grid  { flex-direction: column; gap: 20px; }
  .pw-step-arrow  { transform: rotate(90deg); font-size: 1.2rem; }

  .pw-reviews-grid { grid-template-columns: 1fr; }

  .pw-bonus-grid  { grid-template-columns: 1fr 1fr; }

  .pw-phone-mockup { width: 180px; }
  .pw-phone-amount { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .pw-trust-grid { grid-template-columns: 1fr 1fr; }
  .pw-bonus-grid { grid-template-columns: 1fr; }
  .pw-hero-title { font-size: 1.8rem; }
  .pw-phone-mockup { display: none; }
}




/* ══════════════════════════════════════════════
   ADDON CSS — Image Banner + Video Section
   Paste karo existing CSS ke END me
══════════════════════════════════════════════ */

/* About Banner Image */
.pw-about-img {
  margin-bottom: 40px;
  border-radius: var(--pw-radius);
  overflow: hidden;
  box-shadow: var(--pw-shadow);
}
.pw-about-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: var(--pw-radius);
}

/* Video Section */
.pw-video {
  background: var(--pw-light);
  padding: 80px 0;
}
.pw-video-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  background: #000;
  aspect-ratio: 16 / 9;
}
.pw-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}
.pw-video-note {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .pw-about-banner { height: 200px; }
}
@media (max-width: 480px) {
  .pw-about-banner { height: 160px; }
}




/* ============================================================
   Paglu Game — About Us Page CSS
   File: paglu-game-about.css
   Paste in: assets/css/custom.css ke END mein
   ============================================================ */

/* ── VARIABLES (already in custom.css — skip if exists) ── */
:root {
  --ab-dark:   #0f0c29;
  --ab-dark2:  #1a1650;
  --ab-accent: #f5a623;
  --ab-gold:   #f5c518;
  --ab-green:  #27ae60;
  --ab-light:  #f8f9fc;
  --ab-white:  #ffffff;
  --ab-text:   #333333;
  --ab-radius: 12px;
  --ab-shadow: 0 4px 24px rgba(0,0,0,0.10);
  --ab-trans:  0.25s ease;
}

.ab-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── SHARED ELEMENTS ─────────────────────────── */
.ab-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.ab-section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--ab-dark);
  margin-bottom: 12px;
}
.ab-section-head p {
  color: #666;
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}
.ab-section-head--light h2 { color: var(--ab-white); }
.ab-section-head--light p  { color: rgba(255,255,255,0.75); }

.ab-label {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: #c17d10;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.ab-label--dark {
  background: rgba(15,12,41,0.08);
  border-color: rgba(15,12,41,0.2);
  color: var(--ab-dark);
}

/* Buttons */
.ab-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--ab-trans), box-shadow var(--ab-trans);
  cursor: pointer;
  border: none;
}
.ab-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); opacity: 1; }
.ab-btn-primary { background: linear-gradient(135deg, #f5a623, #e8890c); color: #fff; }
.ab-btn-full    { display: block; text-align: center; width: 100%; }

/* ══════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════ */
.ab-hero {
  background: linear-gradient(135deg, var(--ab-dark) 0%, var(--ab-dark2) 50%, #302b63 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.ab-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.ab-hero-inner {
  max-width: 780px;
  padding-bottom: 60px;
}
.ab-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.ab-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.ab-breadcrumb a:hover { color: var(--ab-accent); opacity: 1; }

.ab-hero-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--ab-white);
  line-height: 1.25;
  margin-bottom: 18px;
}
.ab-highlight {
  background: linear-gradient(135deg, #f5a623, #f5c518);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ab-hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.ab-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ab-badge {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.85);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.ab-hero-wave { line-height: 0; }
.ab-hero-wave svg { display: block; width: 100%; height: 60px; }

/* ══════════════════════════════════════
   SECTION 2 — WHO WE ARE
══════════════════════════════════════ */
.ab-who {
  background: var(--ab-light);
  padding: 80px 0;
}
.ab-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ab-who-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ab-dark);
  margin: 8px 0 18px;
}
.ab-who-text p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.ab-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--ab-shadow);
  display: block;
}

/* ══════════════════════════════════════
   SECTION 3 — MISSION
══════════════════════════════════════ */
.ab-mission {
  background: var(--ab-white);
  padding: 80px 0;
}
.ab-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ab-mission-card {
  background: var(--ab-light);
  border-radius: var(--ab-radius);
  padding: 36px 26px;
  text-align: center;
  border: 1px solid #eee;
  transition: box-shadow var(--ab-trans), transform var(--ab-trans);
}
.ab-mission-card:hover {
  box-shadow: var(--ab-shadow);
  transform: translateY(-4px);
}
.ab-mission-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}
.ab-mission-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ab-dark);
  margin-bottom: 10px;
}
.ab-mission-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   SECTION 4 — GAME INFO TABLE
══════════════════════════════════════ */
.ab-game {
  background: var(--ab-light);
  padding: 80px 0;
}
.ab-game-inner { max-width: 780px; margin: 0 auto; }
.ab-game-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ab-dark);
  margin: 8px 0 18px;
}
.ab-game-inner > p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.ab-game-table-wrap {
  overflow-x: auto;
  border-radius: var(--ab-radius);
  box-shadow: var(--ab-shadow);
  margin-bottom: 28px;
}
.ab-game-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ab-white);
  font-size: 0.95rem;
}
.ab-game-table thead tr {
  background: var(--ab-dark);
  color: var(--ab-white);
}
.ab-game-table th,
.ab-game-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.ab-game-table th { font-weight: 700; font-size: 0.88rem; letter-spacing: 0.5px; }
.ab-game-table tbody tr:nth-child(even) { background: #f5f5fb; }
.ab-game-table tbody tr:hover { background: #efeffa; }
.ab-game-table td:first-child { font-weight: 600; color: var(--ab-dark); width: 45%; }

.ab-game-cta { text-align: center; margin-top: 10px; }

/* ══════════════════════════════════════
   SECTION 5 — TRUST NUMBERS
══════════════════════════════════════ */
.ab-trust {
  background: linear-gradient(135deg, var(--ab-dark), #302b63);
  padding: 80px 0;
}
.ab-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ab-trust-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--ab-radius);
  padding: 30px 20px;
  text-align: center;
  transition: background var(--ab-trans);
}
.ab-trust-card:hover { background: rgba(255,255,255,0.13); }
.ab-trust-num {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--ab-gold);
  margin-bottom: 6px;
}
.ab-trust-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ab-white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ab-trust-card p {
  color: rgba(255,255,255,0.60);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ══════════════════════════════════════
   SECTION 6 — DISCLOSURE
══════════════════════════════════════ */
.ab-disclosure {
  background: var(--ab-white);
  padding: 60px 0;
}
.ab-disclosure-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fffbf0;
  border: 2px solid #f5c518;
  border-radius: var(--ab-radius);
  padding: 32px 36px;
  max-width: 860px;
  margin: 0 auto;
}
.ab-disclosure-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.ab-disclosure-box h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ab-dark);
  margin-bottom: 12px;
}
.ab-disclosure-box p {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.ab-disclosure-box p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   SECTION 7 — CONTACT
══════════════════════════════════════ */
.ab-contact {
  background: var(--ab-light);
  padding: 80px 0;
}
.ab-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ab-contact-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ab-dark);
  margin: 8px 0 16px;
}
.ab-contact-text > p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.ab-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ab-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ab-contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ab-contact-list strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ab-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.ab-contact-list span {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.55;
}

/* Contact Form */
.ab-contact-form {
  background: var(--ab-white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--ab-shadow);
  border: 1px solid #eee;
}
.ab-form-group {
  margin-bottom: 20px;
}
.ab-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ab-dark);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.ab-form-group input,
.ab-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--ab-text);
  background: var(--ab-light);
  transition: border-color var(--ab-trans);
  font-family: inherit;
  resize: vertical;
}
.ab-form-group input:focus,
.ab-form-group textarea:focus {
  outline: none;
  border-color: var(--ab-accent);
  background: var(--ab-white);
}
.ab-form-group textarea { min-height: 120px; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .ab-who-inner     { grid-template-columns: 1fr; gap: 36px; }
  .ab-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .ab-trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .ab-img           { height: 260px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  .ab-hero          { padding: 60px 0 0; }
  .ab-hero-badges   { flex-direction: column; gap: 8px; }
  .ab-mission-grid  { grid-template-columns: 1fr; }
  .ab-trust-grid    { grid-template-columns: 1fr 1fr; }
  .ab-disclosure-box{ flex-direction: column; padding: 24px 20px; }
  .ab-contact-form  { padding: 24px 20px; }
  .ab-img           { height: 220px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .ab-trust-grid  { grid-template-columns: 1fr; }
  .ab-hero-title  { font-size: 1.7rem; }
  .ab-badge       { font-size: 0.75rem; }
}




/* ============================================================
   NEW SECTIONS CSS — Add to END of paglu-game-about.css
   New Sections: Table of Contents + Responsible Gaming
   ============================================================ */

/* ══════════════════════════════════════
   TABLE OF CONTENTS (NEW)
══════════════════════════════════════ */
.ab-toc {
  background: var(--ab-white);
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.ab-toc-box {
  max-width: 680px;
  margin: 0 auto;
  background: #f0f8ff;
  border: 2px solid #2980b9;
  border-radius: var(--ab-radius);
  padding: 28px 32px;
}
.ab-toc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ab-toc-icon { font-size: 1.4rem; }
.ab-toc-head h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a5c8a;
  margin: 0;
}
.ab-toc-list {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-toc-list li {
  font-size: 0.95rem;
}
.ab-toc-list a {
  color: #2980b9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.ab-toc-list a:hover {
  color: #1a5c8a;
  text-decoration: underline;
  opacity: 1;
}

/* ══════════════════════════════════════
   RESPONSIBLE GAMING (NEW)
══════════════════════════════════════ */
.ab-responsible {
  background: #fafafa;
  padding: 80px 0;
  border-top: 1px solid #eee;
}
.ab-responsible-inner { max-width: 920px; margin: 0 auto; }
.ab-responsible-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--ab-dark);
  margin: 8px 0 16px;
}
.ab-responsible-inner > p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.ab-responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.ab-responsible-card {
  border-radius: var(--ab-radius);
  padding: 28px 24px;
}
.ab-responsible-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.ab-responsible-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-responsible-card ul li {
  font-size: 0.9rem;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.ab-responsible-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Warning Card */
.ab-responsible-card--warn {
  background: #fff8f0;
  border: 2px solid #f5a623;
}
.ab-responsible-card--warn h3  { color: #b8620a; }
.ab-responsible-card--warn li  { color: #7a4510; }
.ab-responsible-card--warn li::before { color: #f5a623; }

/* Info Card (Outbound Links) */
.ab-responsible-card--info {
  background: #f0f8ff;
  border: 2px solid #2980b9;
}
.ab-responsible-card--info h3  { color: #1a5c8a; }
.ab-responsible-card--info li  { color: #1a4a6e; }
.ab-responsible-card--info li::before { color: #2980b9; }
.ab-responsible-card--info a {
  color: #2980b9;
  font-weight: 600;
  text-decoration: none;
}
.ab-responsible-card--info a:hover {
  text-decoration: underline;
  opacity: 1;
  color: #1a5c8a;
}

.ab-responsible-note {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  font-style: italic;
  padding: 16px;
  background: var(--ab-white);
  border-radius: 8px;
  border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .ab-responsible-grid { grid-template-columns: 1fr; }
  .ab-toc-box { padding: 20px; }
}




/* ============================================================
   Paglu Game — How To Download Page CSS
   File: paglu-game-download.css
   Paste in: assets/css/custom.css ke END mein
   ============================================================ */

/* ── VARIABLES ─────────────────────────────── */
:root {
  --dl-dark:    #0f0c29;
  --dl-dark2:   #1a1650;
  --dl-accent:  #f5a623;
  --dl-gold:    #f5c518;
  --dl-green:   #27ae60;
  --dl-blue:    #2980b9;
  --dl-orange:  #e67e22;
  --dl-light:   #f8f9fc;
  --dl-white:   #ffffff;
  --dl-text:    #333333;
  --dl-radius:  12px;
  --dl-shadow:  0 4px 24px rgba(0,0,0,0.10);
  --dl-trans:   0.25s ease;
}

.dl-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── SHARED ────────────────────────────────── */
.dl-section-head { text-align: center; margin-bottom: 48px; }
.dl-section-head h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--dl-dark);
  margin-bottom: 12px;
}
.dl-section-head p { color: #666; font-size: 1rem; max-width: 600px; margin: 0 auto; }
.dl-section-head--light h2 { color: var(--dl-white); }
.dl-section-head--light p  { color: rgba(255,255,255,0.75); }

.dl-label {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: #c17d10;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

/* Buttons */
.dl-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--dl-trans), box-shadow var(--dl-trans);
}
.dl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); opacity: 1; }
.dl-btn-primary { background: linear-gradient(135deg, #f5a623, #e8890c); color: #fff; }
.dl-btn-small   { padding: 10px 22px; font-size: 0.9rem; background: linear-gradient(135deg,#f5a623,#e8890c); color:#fff; }
.dl-btn-white   { background: var(--dl-white); color: var(--dl-dark); }

/* ══════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════ */
.dl-hero {
  background: linear-gradient(135deg, var(--dl-dark) 0%, var(--dl-dark2) 55%, #302b63 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.dl-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.dl-hero-inner { max-width: 760px; padding-bottom: 60px; }
.dl-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 16px;
}
.dl-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.dl-breadcrumb a:hover { color: var(--dl-accent); opacity: 1; }

.dl-hero-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--dl-white);
  line-height: 1.25;
  margin: 14px 0 18px;
}
.dl-highlight {
  background: linear-gradient(135deg, #f5a623, #f5c518);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dl-hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.dl-hero-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 28px;
}
.dl-hero-meta span {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}
.dl-hero-wave { line-height: 0; }
.dl-hero-wave svg { display: block; width: 100%; height: 60px; }

/* ══════════════════════════════════════
   SECTION 2 — TABLE OF CONTENTS
══════════════════════════════════════ */
.dl-toc { background: var(--dl-white); padding: 40px 0; border-bottom: 1px solid #eee; }
.dl-toc-box {
  max-width: 680px; margin: 0 auto;
  background: #f0f8ff;
  border: 2px solid var(--dl-blue);
  border-radius: var(--dl-radius);
  padding: 28px 32px;
}
.dl-toc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.dl-toc-head span { font-size: 1.4rem; }
.dl-toc-head h2 { font-size: 1.05rem; font-weight: 800; color: #1a5c8a; margin: 0; }
.dl-toc-list { padding-left: 20px; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dl-toc-list li { font-size: 0.93rem; }
.dl-toc-list a { color: var(--dl-blue); font-weight: 500; text-decoration: none; transition: color 0.2s; }
.dl-toc-list a:hover { color: #1a5c8a; text-decoration: underline; opacity: 1; }

/* ══════════════════════════════════════
   SECTION 3 — REQUIREMENTS
══════════════════════════════════════ */
.dl-requirements { background: var(--dl-light); padding: 80px 0; }
.dl-req-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dl-req-card {
  border-radius: var(--dl-radius);
  padding: 28px 22px;
  text-align: center;
  border-width: 2px;
  border-style: solid;
  transition: transform var(--dl-trans);
}
.dl-req-card:hover { transform: translateY(-4px); }
.dl-req-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.dl-req-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.dl-req-card p  { font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.dl-req-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}
.dl-req-card--green  { background: #f0fff4; border-color: var(--dl-green); }
.dl-req-card--green h3  { color: #1a7a40; }
.dl-req-card--green p   { color: #1a6035; }
.dl-req-tag--green   { background: #d4edda; color: #1a7a40; }
.dl-req-card--orange { background: #fff8f0; border-color: var(--dl-orange); }
.dl-req-card--orange h3 { color: #a04010; }
.dl-req-card--orange p  { color: #7a3010; }
.dl-req-tag--orange  { background: #fde8cc; color: #a04010; }
.dl-req-card--blue   { background: #f0f8ff; border-color: var(--dl-blue); }
.dl-req-card--blue h3   { color: #1a5c8a; }
.dl-req-card--blue p    { color: #1a4a6e; }
.dl-req-tag--blue    { background: #d0e8f8; color: #1a5c8a; }

/* ══════════════════════════════════════
   SECTION 4 — STEPS
══════════════════════════════════════ */
.dl-steps {
  background: linear-gradient(135deg, var(--dl-dark), var(--dl-dark2));
  padding: 80px 0;
}
.dl-steps-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.dl-step-item { display: flex; gap: 0; }
.dl-step-left {
  display: flex; flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
}
.dl-step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #f5a623, #e8890c);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
}
.dl-step-line {
  width: 2px;
  flex: 1;
  background: rgba(245,166,35,0.25);
  margin: 6px 0;
  min-height: 30px;
}
.dl-step-right {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--dl-radius);
  padding: 24px 26px;
  margin: 0 0 20px 16px;
  flex: 1;
}
.dl-step-right h3 { color: var(--dl-white); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.dl-step-right p  { color: rgba(255,255,255,0.75); font-size: 0.93rem; line-height: 1.7; margin-bottom: 12px; }
.dl-step-tip {
  background: rgba(245,166,35,0.12);
  border-left: 3px solid var(--dl-accent);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 14px;
  line-height: 1.6;
}
.dl-steps-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.2);
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 10px;
}
.dl-steps-path span {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.dl-path-arrow { background: transparent !important; padding: 0 !important; color: var(--dl-accent) !important; font-size: 1rem !important; }
.dl-path-on    { background: var(--dl-green) !important; color: #fff !important; }

/* ══════════════════════════════════════
   SECTION 5 — REGISTER STEPS
══════════════════════════════════════ */
.dl-register { background: var(--dl-white); padding: 80px 0; }
.dl-register-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dl-register-card {
  background: var(--dl-light);
  border-radius: var(--dl-radius);
  border: 1px solid #eee;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--dl-trans), transform var(--dl-trans);
  position: relative;
}
.dl-register-card:hover { box-shadow: var(--dl-shadow); transform: translateY(-4px); }
.dl-reg-num {
  display: flex;
  width: 38px; height: 38px;
  background: var(--dl-dark);
  color: var(--dl-white);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.dl-register-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--dl-dark); margin-bottom: 8px; }
.dl-register-card p  { color: #666; font-size: 0.88rem; line-height: 1.55; }
.dl-register-card--cta { background: linear-gradient(135deg, var(--dl-dark), var(--dl-dark2)); border-color: transparent; }
.dl-register-card--cta h3 { color: var(--dl-gold); }
.dl-register-card--cta p  { color: rgba(255,255,255,0.70); }
.dl-register-card--cta .dl-reg-num { background: var(--dl-accent); }

/* ══════════════════════════════════════
   SECTION 6 — TROUBLESHOOTING
══════════════════════════════════════ */
.dl-trouble {
  background: linear-gradient(135deg, #1a1650, #302b63);
  padding: 80px 0;
}
.dl-trouble-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.dl-trouble-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--dl-radius);
  overflow: hidden;
}
.dl-trouble-q {
  padding: 16px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dl-trouble-a {
  padding: 14px 22px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}
.dl-trouble-a strong { color: var(--dl-gold); }

/* ══════════════════════════════════════
   SECTION 7 — FAQ
══════════════════════════════════════ */
.dl-faq { background: var(--dl-white); padding: 80px 0; }
.dl-faq-list { max-width: 780px; margin: 0 auto; }
.dl-faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--dl-trans);
}
.dl-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.dl-faq-q {
  width: 100%; background: var(--dl-light); border: none;
  padding: 18px 22px; font-size: 0.97rem; font-weight: 600;
  color: var(--dl-dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; text-align: left; transition: background var(--dl-trans);
}
.dl-faq-q:hover { background: #f0f0f8; }
.dl-faq-q[aria-expanded="true"] { background: var(--dl-dark); color: var(--dl-white); }
.dl-faq-icon { font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform var(--dl-trans); line-height: 1; }
.dl-faq-q[aria-expanded="true"] .dl-faq-icon { transform: rotate(45deg); }
.dl-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 22px; }
.dl-faq-a.dl-open { max-height: 220px; padding: 16px 22px; }
.dl-faq-a p { color: #555; font-size: 0.93rem; line-height: 1.7; }
.dl-faq-a a { color: var(--dl-blue); text-decoration: underline; }

/* ══════════════════════════════════════
   SECTION 8 — FINAL CTA
══════════════════════════════════════ */
.dl-final-cta {
  background: linear-gradient(135deg, #f5a623 0%, #e8890c 50%, #d4700a 100%);
  padding: 80px 0;
  text-align: center;
}
.dl-final-cta-inner { max-width: 680px; margin: 0 auto; }
.dl-final-cta h2 { font-size: clamp(1.5rem,4vw,2.2rem); font-weight: 900; color: var(--dl-white); margin-bottom: 16px; }
.dl-final-cta p  { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 30px; }
.dl-final-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.60); margin-top: 20px; line-height: 1.6; margin-bottom: 0; }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .dl-req-grid      { grid-template-columns: repeat(2,1fr); }
  .dl-register-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .dl-hero          { padding: 60px 0 0; }
  .dl-hero-meta     { flex-direction: column; gap: 6px; }
  .dl-step-left     { width: 44px; }
  .dl-steps-path    { gap: 6px; }
  .dl-trouble-q, .dl-trouble-a { padding: 14px 16px; }
  .dl-toc-box       { padding: 20px; }
}
@media (max-width: 480px) {
  .dl-req-grid      { grid-template-columns: 1fr; }
  .dl-register-grid { grid-template-columns: 1fr; }
  .dl-hero-title    { font-size: 1.7rem; }
  .dl-step-right    { padding: 18px 16px; margin-left: 10px; }
}




/* ============================================================
   NEW — Feature Image Section CSS
   Add to END of: paglu-game-download.css
   ============================================================ */

.dl-feature-img {
  background: var(--dl-light);
  padding: 40px 0 0;
}

.dl-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  position: relative;
}

.dl-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.dl-figcaption {
  text-align: center;
  padding: 14px 20px;
  background: var(--dl-white);
  color: #666;
  font-size: 0.85rem;
  font-style: italic;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .dl-banner-img  { height: 240px; }
  .dl-feature-img { padding: 30px 0 0; }
}

@media (max-width: 480px) {
  .dl-banner-img  { height: 180px; }
}




/* ============================================================
   Paglu Game — Disclaimer Page CSS
   File: paglu-game-disclaimer.css
   Paste in: assets/css/custom.css ke END mein
   ============================================================ */

:root {
  --disc-dark:   #0f0c29;
  --disc-dark2:  #1a1650;
  --disc-accent: #f5a623;
  --disc-gold:   #f5c518;
  --disc-green:  #27ae60;
  --disc-blue:   #2980b9;
  --disc-red:    #e74c3c;
  --disc-orange: #e67e22;
  --disc-light:  #f8f9fc;
  --disc-white:  #ffffff;
  --disc-radius: 12px;
  --disc-shadow: 0 4px 24px rgba(0,0,0,0.10);
  --disc-trans:  0.25s ease;
}

.disc-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── SHARED ──────────────────────────── */
.disc-label {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: #c17d10;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.disc-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--disc-trans), box-shadow var(--disc-trans);
  border: none; cursor: pointer;
}
.disc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); opacity: 1; }
.disc-btn-primary { background: linear-gradient(135deg,#f5a623,#e8890c); color: #fff; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.disc-hero {
  background: linear-gradient(135deg, var(--disc-dark) 0%, var(--disc-dark2) 55%, #302b63 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.disc-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 70%);
  top: -60px; right: -60px;
  border-radius: 50%;
  pointer-events: none;
}
.disc-hero-inner { max-width: 760px; padding-bottom: 60px; }
.disc-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 16px;
}
.disc-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.disc-breadcrumb a:hover { color: var(--disc-accent); opacity: 1; }
.disc-hero-title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 900; color: #fff;
  line-height: 1.25; margin: 14px 0 18px;
}
.disc-highlight {
  background: linear-gradient(135deg, #f5a623, #f5c518);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.disc-hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem; line-height: 1.75; margin-bottom: 20px;
}
.disc-hero-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.disc-hero-meta span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.disc-hero-wave { line-height: 0; }
.disc-hero-wave svg { display: block; width: 100%; height: 60px; }

/* ══════════════════════════════════════
   FEATURE IMAGE
══════════════════════════════════════ */
.disc-feature-img { background: var(--disc-light); padding: 40px 0 0; }
.disc-figure { margin: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.disc-banner-img { width: 100%; height: 340px; object-fit: cover; display: block; border-radius: 16px; }
.disc-figcaption {
  text-align: center; padding: 14px 20px;
  background: var(--disc-white); color: #666;
  font-size: 0.85rem; font-style: italic;
  border-top: 1px solid #eee;
}

/* ══════════════════════════════════════
   TABLE OF CONTENTS
══════════════════════════════════════ */
.disc-toc { background: var(--disc-white); padding: 40px 0; border-bottom: 1px solid #eee; }
.disc-toc-box {
  max-width: 700px; margin: 0 auto;
  background: #fff8f0;
  border: 2px solid var(--disc-accent);
  border-radius: var(--disc-radius);
  padding: 28px 32px;
}
.disc-toc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.disc-toc-head span { font-size: 1.4rem; }
.disc-toc-head h2 { font-size: 1.05rem; font-weight: 800; color: #b8620a; margin: 0; }
.disc-toc-list { padding-left: 20px; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.disc-toc-list li { font-size: 0.93rem; }
.disc-toc-list a { color: var(--disc-orange); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.disc-toc-list a:hover { color: #a04010; text-decoration: underline; opacity: 1; }

/* ══════════════════════════════════════
   CONTENT SECTIONS (SHARED)
══════════════════════════════════════ */
.disc-section { padding: 64px 0; }
.disc-section--light { background: var(--disc-light); }
.disc-section--white { background: var(--disc-white); }
.disc-section--dark  { background: linear-gradient(135deg, var(--disc-dark), #302b63); }

.disc-content-block { max-width: 860px; margin: 0 auto; }
.disc-content-block--light p,
.disc-content-block--light li { color: rgba(255,255,255,0.80) !important; }

.disc-icon-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.disc-sec-icon { font-size: 2rem; flex-shrink: 0; }
.disc-icon-head h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800; color: var(--disc-dark); margin: 0;
}
.disc-section--dark .disc-icon-head h2 { color: var(--disc-white); }

.disc-content-block p {
  color: #555; font-size: 0.97rem;
  line-height: 1.78; margin-bottom: 16px;
}
.disc-content-block p a { color: var(--disc-blue); text-decoration: underline; }
.disc-list {
  padding-left: 20px; margin: 14px 0 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.disc-list li { color: #555; font-size: 0.95rem; line-height: 1.6; }

/* Highlight Boxes */
.disc-highlight-box {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 18px;
  line-height: 1.6;
}
.disc-highlight-box--red    { background: #fef0f0; border-left: 4px solid var(--disc-red); color: #7a1010; }
.disc-highlight-box--yellow { background: #fffbf0; border-left: 4px solid var(--disc-gold); color: #7a6000; }

/* ── AFFILIATE CARDS ──────────────────── */
.disc-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 20px 0; }
.disc-info-card {
  border-radius: var(--disc-radius);
  padding: 20px;
  display: flex; gap: 12px; align-items: flex-start;
  border-width: 1px; border-style: solid;
}
.disc-info-card span { font-size: 1.3rem; flex-shrink: 0; }
.disc-info-card strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.disc-info-card p { font-size: 0.85rem !important; line-height: 1.55 !important; margin: 0 !important; }
.disc-info-card a { color: inherit; font-weight: 600; }
.disc-info-card--green  { background: #f0fff4; border-color: var(--disc-green); }
.disc-info-card--green strong { color: #1a7a40; }
.disc-info-card--green p { color: #1a6035 !important; }
.disc-info-card--blue   { background: #f0f8ff; border-color: var(--disc-blue); }
.disc-info-card--blue strong { color: #1a5c8a; }
.disc-info-card--blue p { color: #1a4a6e !important; }
.disc-info-card--orange { background: #fff8f0; border-color: var(--disc-orange); }
.disc-info-card--orange strong { color: #a04010; }
.disc-info-card--orange p { color: #7a3010 !important; }

/* ── ACCURACY GRID ─────────────────── */
.disc-accuracy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 18px 0; }
.disc-accuracy-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--disc-white); border: 1px solid #ddd;
  border-radius: var(--disc-radius); padding: 18px;
}
.disc-acc-icon { font-size: 1.4rem; flex-shrink: 0; }
.disc-accuracy-item strong { display: block; font-weight: 700; color: var(--disc-dark); margin-bottom: 6px; font-size: 0.9rem; }
.disc-accuracy-item p { color: #666 !important; font-size: 0.88rem !important; margin: 0 !important; line-height: 1.55 !important; }

/* ── RESPONSIBLE GAMING ──────────────── */
.disc-resp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.disc-resp-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--disc-radius);
  padding: 24px 20px;
}
.disc-resp-card h3 { color: var(--disc-white); font-size: 0.97rem; font-weight: 700; margin-bottom: 14px; }
.disc-resp-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.disc-resp-card li { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.5; padding-left: 14px; position: relative; }
.disc-resp-card li::before { content: "•"; position: absolute; left: 0; color: var(--disc-accent); font-weight: 700; }
.disc-resp-card a { color: var(--disc-gold); text-decoration: underline; font-weight: 600; }

/* ── LEGAL CARDS ──────────────────── */
.disc-legal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 20px 0; }
.disc-legal-card {
  border-radius: var(--disc-radius);
  padding: 24px 18px;
  text-align: center;
  border-width: 2px; border-style: solid;
}
.disc-legal-card span { font-size: 2rem; display: block; margin-bottom: 10px; }
.disc-legal-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 10px; }
.disc-legal-card p  { font-size: 0.86rem !important; line-height: 1.6 !important; margin: 0 !important; }
.disc-legal-card a  { font-weight: 600; text-decoration: underline; }
.disc-legal-card--red    { background: #fef0f0; border-color: var(--disc-red); }
.disc-legal-card--red h3    { color: #a01010; }
.disc-legal-card--red p     { color: #7a1010 !important; }
.disc-legal-card--orange { background: #fff8f0; border-color: var(--disc-orange); }
.disc-legal-card--orange h3 { color: #a04010; }
.disc-legal-card--orange p  { color: #7a3010 !important; }
.disc-legal-card--orange a  { color: #a04010; }
.disc-legal-card--blue   { background: #f0f8ff; border-color: var(--disc-blue); }
.disc-legal-card--blue h3   { color: #1a5c8a; }
.disc-legal-card--blue p    { color: #1a4a6e !important; }

/* ── CONTACT SECTION ──────────────── */
.disc-contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.disc-contact-text h2 {
  font-size: clamp(1.3rem,3vw,1.8rem);
  font-weight: 800; color: var(--disc-dark);
  margin: 8px 0 14px;
}
.disc-contact-text > p { color: #555; font-size: 0.95rem; line-height: 1.7; margin-bottom: 22px; }
.disc-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.disc-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.disc-contact-list > li > span { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.disc-contact-list strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--disc-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.disc-contact-list div span { color: #555; font-size: 0.92rem; }

.disc-note-box {
  background: var(--disc-dark);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(15,12,41,0.25);
}
.disc-note-box h3 { color: var(--disc-gold); font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.disc-note-box ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.disc-note-box li { color: rgba(255,255,255,0.80); font-size: 0.88rem; }
.disc-note-date { color: rgba(255,255,255,0.35); font-size: 0.78rem; margin-top: 18px; margin-bottom: 0; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .disc-cards-row  { grid-template-columns: 1fr; }
  .disc-legal-grid { grid-template-columns: 1fr 1fr; }
  .disc-contact-box { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .disc-hero        { padding: 60px 0 0; }
  .disc-hero-meta   { flex-direction: column; gap: 6px; }
  .disc-resp-grid   { grid-template-columns: 1fr; }
  .disc-accuracy-grid { grid-template-columns: 1fr; }
  .disc-legal-grid  { grid-template-columns: 1fr; }
  .disc-banner-img  { height: 220px; }
  .disc-toc-box     { padding: 20px; }
}
@media (max-width: 480px) {
  .disc-hero-title  { font-size: 1.6rem; }
  .disc-banner-img  { height: 170px; }
  .disc-cards-row   { grid-template-columns: 1fr; }
}
