    .game-demo-wrapper {
      width: 100%;
      padding: 40px 0;
      display: flex;
      justify-content: center;
      background-color: transparent;
    }

    .game-demo-section {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      padding: 25px;
      background: #1a1a1a;
      border: 3px solid #ffd700;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      text-align: center;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      box-sizing: border-box;
    }

    .game-demo-title {
      color: #ffd700;
      font-size: 1.25rem;
      font-weight: bold;
      margin-top: 0;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .game-demo-subtitle {
      color: #cccccc;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }

    .game-machine-box {
      display: flex;
      justify-content: center;
      gap: 15px;
      background: #000000;
      padding: 15px;
      border-radius: 12px;
      border: 2px solid #333333;
      margin-bottom: 20px;
    }

    .game-reel {
      width: 80px;
      height: 80px;
      background: #ffffff;
      border-radius: 8px;
      border: 2px solid #555555;
      font-size: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
      user-select: none;
    }

    .reel-spinning {
      animation: spinBlur 0.1s linear infinite;
    }

    @keyframes spinBlur {
      0% { transform: scaleY(1); opacity: 0.7; }
      50% { transform: scaleY(0.6); opacity: 0.4; }
      100% { transform: scaleY(1); opacity: 0.7; }
    }

    .game-spin-btn {
      background: linear-gradient(180deg, #ffcc00 0%, #ff9900 100%);
      border: none;
      color: #000000;
      padding: 12px 35px;
      font-size: 1.1rem;
      font-weight: bold;
      border-radius: 25px;
      cursor: pointer;
      box-shadow: 0 4px 0 #cc7a00;
      transition: all 0.1s ease;
    }

    .game-spin-btn:active {
      transform: translateY(3px);
      box-shadow: 0 1px 0 #cc7a00;
    }

    .game-spin-btn:disabled {
      background: #555555;
      box-shadow: none;
      color: #888888;
      cursor: not-allowed;
    }

    .game-disclaimer {
      color: #888888;
      font-size: 0.8rem;
      margin-top: 20px;
      margin-bottom: 0;
      line-height: 1.4;
      border-top: 1px solid #333333;
      padding-top: 12px;
      font-style: italic;
    }

                   /* FAQ SECTION */
                .cyber-faq-section {
                    margin-top: 30px;
                    background: var(--bg-panel);
                    border: 1px solid var(--border-soft);
                    border-radius: 18px;
                    padding: 34px 22px;
                    font-family: 'Montserrat', sans-serif;
                    box-shadow:
                        0 0 0 1px rgba(255, 0, 80, 0.06),
                        0 0 28px rgba(255, 0, 60, 0.08);
                    position: relative;
                    overflow: hidden;
                }

                .cyber-faq-section::before {
                    content: "";
                    position: absolute;
                    right: 0;
                    bottom: 12px;
                    width: 130px;
                    height: 3px;
                    background: linear-gradient(90deg, rgba(255, 210, 0, 0), #ffd400, #7a5c00);
                    box-shadow: 0 0 10px rgba(255, 212, 0, 0.35);
                }

                .cyber-faq-section::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 5px;
                    height: 110px;
                    background: linear-gradient(180deg, #ff2d7a 0%, #ff4d9d 100%);
                    box-shadow: 0 0 12px rgba(255, 60, 130, 0.55);
                }

                .faq-container {
                    max-width: 900px;
                    margin: 0 auto;
                    position: relative;
                    z-index: 1;
                }

                .faq-header {
                    text-align: left;
                    margin-bottom: 34px;
                    border-left: 3px solid var(--gold);
                    padding-left: 22px;
                }

                .title-main {
                    font-family: 'Orbitron', sans-serif;
                    font-size: clamp(1.4rem, 3vw, 2rem);
                    letter-spacing: 4px;
                    color: #000000;
                    margin: 0;
                    text-transform: uppercase;
                    text-align:center;
                }

                .title-sub {
                    color: var(--text-dim);
                    font-size: 0.92rem;
                    margin-top: 10px;
                    font-weight: 300;
                    text-align:center;
                }

                /* ACCORDION */
                .faq-list {
                    display: flex;
                    flex-direction: column;
                    gap: 6px;
                }

                .faq-card {
                    position: relative;
                    background: linear-gradient(180deg, rgba(28, 0, 0, 0.92), rgba(12, 0, 0, 0.96));
                    border: 1px solid rgba(255, 80, 80, 0.08);
                    overflow: hidden;
                }

                .faq-card::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 4px;
                    height: 100%;
                    background: linear-gradient(180deg, #ff325d 0%, #ff6a6a 100%);
                    box-shadow: 0 0 10px rgba(255, 50, 93, 0.30);
                }

                .faq-toggle {
                    display: none;
                }

                .faq-trigger {
                    display: flex;
                    align-items: center;
                    padding: 28px 14px;
                    cursor: pointer;
                    position: relative;
                    transition: 0.35s ease;
                }

                .faq-num {
                    font-family: 'Orbitron', sans-serif;
                    font-size: 0.8rem;
                    color: var(--gold);
                    margin-right: 26px;
                    opacity: 0.55;
                    min-width: 34px;
                }

                .faq-text {
                    font-size: 1.02rem;
                    font-weight: 500;
                    flex: 1;
                    color: #fff;
                    transition: 0.35s ease;
                    line-height: 1.6;
                }

                .faq-icon {
                    width: 20px;
                    height: 2px;
                    background: var(--text-dim);
                    position: relative;
                    transition: 0.35s ease;
                }

                .faq-icon::before {
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: inherit;
                    transform: rotate(90deg);
                    transition: 0.35s ease;
                }

                .faq-toggle:checked+.faq-trigger .faq-text {
                    color: #fff;
                    text-shadow: 0 0 14px rgba(212, 175, 55, 0.25);
                }

                .faq-toggle:checked+.faq-trigger .faq-num {
                    opacity: 1;
                    transform: scale(1.12);
                }

                .faq-toggle:checked+.faq-trigger .faq-icon {
                    background: var(--gold);
                    transform: rotate(180deg);
                    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
                }

                .faq-toggle:checked+.faq-trigger .faq-icon::before {
                    transform: rotate(0deg);
                }

                .faq-body {
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
                }

                .faq-toggle:checked~.faq-body {
                    max-height: 260px;
                }

                .faq-body p {
                    padding: 0 14px 32px 74px;
                    color: #c7bbbb;
                    line-height: 1.9;
                    font-weight: 300;
                    font-size: 0.95rem;
                    margin: 0;
                }

                /* RESPONSIVE */
                @media (max-width: 768px) {
                    .apl-section-product-marketing-content {
                        padding: 30px 18px;
                    }

                    .td1 {
                        letter-spacing: 2px;
                    }

                    .faq-trigger {
                        padding: 22px 12px;
                    }

                    .faq-text {
                        font-size: 0.94rem;
                    }

                    .faq-body p {
                        padding: 0 12px 24px 54px;
                    }

                    .faq-num {
                        margin-right: 14px;
                        min-width: 26px;
                    }
                }