html, body { overflow-x: hidden; max-width: 100vw; }

  .dg-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6) var(--space-3);
    margin-bottom: var(--space-5);
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 40%, #0a1628 100%);
    border-radius: var(--radius-2);
    border: 1px solid rgba(255,200,50,0.18);
    box-shadow: 0 8px 48px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,200,50,0.12);
    text-align: center;
    overflow: hidden;
  }

  .dg-hero::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent), var(--color-gold), transparent);
    border-radius: var(--radius-2) var(--radius-2) 0 0;
  }

  .dg-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    margin-bottom: var(--space-3);
    background: rgba(255,200,50,0.12);
    border: 1px solid rgba(255,200,50,0.35);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
  }

  .dg-hero__badge span {
    display: inline-block;
    width: 7px; height: 7px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
    animation: dg-pulse 1.5s infinite;
  }

  @keyframes dg-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .dg-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg, #fff 30%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .dg-hero__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
    margin: 0 auto var(--space-4);
    line-height: 1.7;
  }

  .dg-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    width: 100%;
  }

  .dg-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,200,50,0.15);
    border-radius: var(--radius-2);
    min-width: 130px;
    transition: var(--transition-1);
  }

  .dg-stat:hover {
    background: rgba(255,200,50,0.08);
    border-color: rgba(255,200,50,0.4);
    transform: translateY(-3px);
  }

  .dg-stat__val {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1.1;
  }

  .dg-stat__lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.55);
    margin-top: 3px;
  }

  /* Sections */
  .dg-section {
    padding: var(--space-5) 0;
  }

  .dg-section-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid rgba(255,200,50,0.2);
  }

  .dg-section-lead {
    color: rgba(255,255,255,0.72);
    font-size: 0.97rem;
    margin-bottom: var(--space-4);
    line-height: 1.7;
  }

  /* Sala Cards */
  .dg-sala-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-4);
    background: linear-gradient(145deg, #12112a, #1c1840);
    border: 1px solid rgba(255,200,50,0.14);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-2);
    transition: var(--transition-1);
    height: auto;
  }

  .dg-sala-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,200,50,0.45);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,200,50,0.08);
  }

  .dg-sala-card__tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
  }

  .dg-sala-card__tag--thomo {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border: 1px solid rgba(220,53,69,0.35);
  }

  .dg-sala-card__tag--ga28 {
    background: rgba(13, 110, 253, 0.2);
    color: #6ea8fe;
    border: 1px solid rgba(13,110,253,0.35);
  }

  .dg-sala-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-2);
  }

  .dg-sala-card p {
    color: rgba(255,255,255,0.68);
    font-size: 0.93rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: var(--space-3);
  }

  .dg-sala-card__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,200,50,0.07);
    border-radius: var(--radius-1);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold);
    border: 1px solid rgba(255,200,50,0.15);
  }

  .dg-sala-card__feature svg {
    flex-shrink: 0;
  }

  /* Keo Table */
  .dg-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-2);
    border: 1px solid rgba(255,200,50,0.15);
    box-shadow: var(--shadow-2);
  }

  .dg-table {
    width: 100%;
    border-collapse: collapse;
    background: #12112a;
  }

  .dg-table thead th {
    padding: 14px 20px;
    background: rgba(255,200,50,0.1);
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid rgba(255,200,50,0.25);
    text-align: left;
  }

  .dg-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition-1);
  }

  .dg-table tbody tr:hover {
    background: rgba(255,200,50,0.05);
  }

  .dg-table tbody td {
    padding: 16px 20px;
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    line-height: 1.5;
    vertical-align: top;
  }

  .dg-table tbody td:first-child {
    font-weight: 700;
    color: #fff;
  }

  .dg-keo-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .dg-keo-badge--meron { background: rgba(220,53,69,0.2); color: #ff6b7a; }
  .dg-keo-badge--wala { background: rgba(13,110,253,0.2); color: #6ea8fe; }
  .dg-keo-badge--bdd { background: rgba(255,200,50,0.15); color: var(--color-gold); }

  /* Steps Timeline */
  .dg-steps {
    position: relative;
    padding-left: 0;
    list-style: none;
    margin: 0;
  }

  .dg-step {
    display: flex;
    gap: var(--space-3);
    padding-bottom: var(--space-4);
    position: relative;
  }

  .dg-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 46px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,200,50,0.4), rgba(255,200,50,0.05));
  }

  .dg-step__num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #e6960a);
    color: #000;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255,200,50,0.35);
    position: relative;
    z-index: 1;
  }

  .dg-step__body {
    padding: var(--space-3);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-2);
    flex-grow: 1;
    transition: var(--transition-1);
  }

  .dg-step__body:hover {
    background: rgba(255,200,50,0.06);
    border-color: rgba(255,200,50,0.2);
  }

  .dg-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
  }

  .dg-step__text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
  }

  .dg-step__bonus {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(255,200,50,0.12);
    border: 1px solid rgba(255,200,50,0.3);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-gold);
  }

  /* Payment highlight boxes */
  .dg-pay-box {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-2);
    transition: var(--transition-1);
  }

  .dg-pay-box:hover {
    background: rgba(255,200,50,0.06);
    border-color: rgba(255,200,50,0.25);
    transform: translateX(4px);
  }

  .dg-pay-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-1);
    background: rgba(255,200,50,0.1);
    flex-shrink: 0;
  }

  .dg-pay-box__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }

  .dg-pay-box__sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
  }

  .dg-speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-2) var(--space-3);
    background: linear-gradient(135deg, rgba(46,204,113,0.15), rgba(46,204,113,0.05));
    border: 1px solid rgba(46,204,113,0.3);
    border-radius: var(--radius-2);
    font-size: 0.9rem;
    font-weight: 700;
    color: #2ecc71;
    margin-top: var(--space-3);
  }

  /* FAQ Accordion */
  .dg-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }

  .dg-acc-item {
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-2);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
    transition: var(--transition-1);
  }

  .dg-acc-item:hover {
    border-color: rgba(255,200,50,0.25);
  }

  .dg-acc-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-3) var(--space-3);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: var(--space-2);
  }

  .dg-acc-trigger__q {
    font-size: 0.96rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
  }

  .dg-acc-trigger__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,200,50,0.1);
    border: 1px solid rgba(255,200,50,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-1);
  }

  .dg-acc-item.open .dg-acc-trigger__icon {
    transform: rotate(45deg);
    background: rgba(255,200,50,0.2);
  }

  .dg-acc-body {
    display: none;
    padding: 0 var(--space-3) var(--space-3);
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .dg-acc-item.open .dg-acc-body {
    display: block;
  }

  /* CTA Banner */
  .dg-cta-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-6) var(--space-4);
    background: linear-gradient(135deg, #1a0a2e 0%, #0a1628 50%, #1a0d00 100%);
    border: 1px solid rgba(255,200,50,0.22);
    border-radius: var(--radius-2);
    box-shadow: 0 8px 48px rgba(0,0,0,0.5);
    overflow: hidden;
  }

  .dg-cta-banner::before {
    content: '';
    position: absolute;
    bottom: -2px; left: -2px; right: -2px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent), var(--color-gold), transparent);
  }

  .dg-cta-banner h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-2);
  }

  .dg-cta-banner p {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin-bottom: var(--space-4);
    line-height: 1.6;
  }

  .dg-cta-banner .dg-bonus-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,200,50,0.12);
    border: 1px solid rgba(255,200,50,0.35);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
    letter-spacing: 0.04em;
  }

  @media (max-width: 767px) {
    .dg-hero { padding: var(--space-4) var(--space-2); }
    .dg-stat { min-width: 100px; }
    .dg-step__body { padding: var(--space-2); }
    .dg-cta-banner { padding: var(--space-4) var(--space-2); }
  }