 .page-header {
        margin-top: 60px;
        padding: 60px 40px;
        background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
        position: relative;
        overflow: hidden;
      }

      .page-header::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(45, 91, 255, 0.15) 0%,
          transparent 70%
        );
        top: -200px;
        right: -200px;
        border-radius: 50%;
      }

      .page-header-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #ff6b35;
        margin-bottom: 20px;
      }

      .breadcrumb a {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s;
      }

      .breadcrumb a:hover {
        color: #1e3a8a;
      }

      .page-title {
        font-size: 48px;
        font-weight: 800;
        color: #1e3a8a;
        margin-bottom: 15px;
      }

      .page-subtitle {
        font-size: 18px;
        color: #64748b;
        line-height: 1.6;
        max-width: 700px;
      }

      /* ── Main Content ── */
      .main-content {
        max-width: 1280px;
        margin: 0 auto;
        padding: 40px 40px 60px;
      }

      /* ── Section Header ── */
      .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 16px;
      }

      .section-title-group {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .section-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #2d5bff 0%, #1e3a8a 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
      }

      .section-title-group h2 {
        font-size: 22px;
        font-weight: 700;
        color: #1e3a8a;
      }

      .section-title-group p {
        font-size: 13px;
        color: #64748b;
        margin-top: 2px;
      }

      .report-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
      }

      .meta-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #f0f4ff;
        color: #2d5bff;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 20px;
        border: 1px solid #dbeafe;
      }

      .meta-tag.orange {
        background: #fff4ee;
        color: #ff6b35;
        border-color: #ffe0d0;
      }

      .btn-fullscreen {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-family: "Poppins", sans-serif;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
      }

      .btn-fullscreen:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
      }

      /* ── Report Frame Card ── */
      .report-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(45, 91, 255, 0.08);
        border: 1.5px solid #e8eeff;
        overflow: hidden;
        transition: box-shadow 0.3s;
      }

      .report-card:hover {
        box-shadow: 0 8px 32px rgba(45, 91, 255, 0.13);
      }

      /* Card top bar */
      .report-card-bar {
        background: linear-gradient(135deg, #1e3a8a 0%, #2d5bff 100%);
        padding: 14px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .bar-dots {
        display: flex;
        gap: 7px;
      }

      .bar-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block;
      }

      .bar-dots span:nth-child(1) {
        background: #fc5e5e;
      }
      .bar-dots span:nth-child(2) {
        background: #fbbf24;
      }
      .bar-dots span:nth-child(3) {
        background: #34d399;
      }

      .bar-label {
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        font-weight: 500;
        flex: 1;
        text-align: center;
        letter-spacing: 0.3px;
      }

      .bar-live {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 600;
        color: #34d399;
      }

      .bar-live::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #34d399;
        border-radius: 50%;
        display: block;
        animation: pulse-dot 1.5s infinite;
      }

      @keyframes pulse-dot {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(1.3);
        }
      }

      /* iframe wrapper */
      .iframe-wrapper {
        position: relative;
        width: 100%;
        background: #f0f4ff;
      }

      .iframe-wrapper iframe {
        display: block;
        width: 100%;
        height: 600px;
        border: none;
        transition: opacity 0.4s;
      }

      /* Loading overlay */
      .loading-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 10;
        transition:
          opacity 0.4s,
          visibility 0.4s;
      }

      .loading-overlay.hidden {
        opacity: 0;
        visibility: hidden;
      }

      .loading-spinner {
        width: 60px;
        height: 60px;
        border: 5px solid #dbeafe;
        border-top-color: #2d5bff;
        border-radius: 50%;
        animation: spin 0.9s linear infinite;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      .loading-text {
        font-size: 15px;
        font-weight: 600;
        color: #2d5bff;
      }

      .loading-sub {
        font-size: 13px;
        color: #94a3b8;
        margin-top: -12px;
      }

      /* ── Info Banner ── */
      .info-banner {
        margin-top: 24px;
        background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
        border: 1.5px solid #dbeafe;
        border-radius: 16px;
        padding: 18px 24px;
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }

      .info-banner-icon {
        font-size: 22px;
        flex-shrink: 0;
        margin-top: 2px;
      }

      .info-banner h4 {
        font-size: 14px;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 4px;
      }

      .info-banner p {
        font-size: 13px;
        color: #64748b;
        line-height: 1.6;
      }

      /* ── Responsive ── */
      @media (max-width: 900px) {
        
          .page-header {
          padding: 40px 20px;
        }

        .page-title {
          font-size: 32px;
        }
        .main-content {
          padding: 28px 20px 48px;
        }
        .section-header {
          flex-direction: column;
          align-items: flex-start;
        }
          .iframe-wrapper iframe {
    height: 300px;
  }
    
      }

      @media (max-width: 520px) {
         .iframe-wrapper iframe {
    height: 300px;
  }
      }
