* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: #0d0d0d;
      color: #fff;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      text-align: center;
      padding: 12px;
    }

    .container {
      max-width: 600px;
      margin: 0 auto;
    }

    /* Meta stats video */
    .video-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 4px;
      font-size: 13px;
      color: #aaa;
    }

    /* Pemutar Video & Overlay Pemicu Direct Link */
    .video-wrapper {
      position: relative;
      width: 100%;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    }

    video {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Overlay Tombol Play Buatan */
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 10;
    }

    .play-btn {
      width: 70px;
      height: 70px;
      background: #ff0000;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 25px rgba(255,0,0,0.8);
      transition: transform 0.2s;
    }

    .play-btn::after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 14px 0 14px 24px;
      border-color: transparent transparent transparent #ffffff;
      margin-left: 5px;
    }

    .video-wrapper:hover .play-btn {
      transform: scale(1.1);
    }

    /* Teks Peringatan Buffering */
    .buffering-note {
      font-size: 12px;
      color: #ffcc00;
      margin-top: 10px;
      line-height: 1.4;
    }

    /* Tombol Utama Direct Link / Smartlink */
    .cta-button {
      display: block;
      width: 100%;
      margin-top: 10px;
      padding: 16px 20px;
      background: linear-gradient(135deg, #ff416c, #ff4b2b);
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(255, 75, 43, 0.5);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.02); }
      100% { transform: scale(1); }
    }

    /* Seksi Komentar Fiktif */
    .comments-section {
      margin-top: 25px;
      text-align: left;
      background: #181818;
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #282828;
    }

    .comments-header {
      font-size: 14px;
      font-weight: bold;
      color: #ddd;
      margin-bottom: 12px;
      border-bottom: 1px solid #333;
      padding-bottom: 8px;
    }

    .comment-item {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
    }

    .comment-item:last-child {
      margin-bottom: 0;
    }

    .avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 14px;
      color: #fff;
      flex-shrink: 0;
    }

    .comment-content {
      font-size: 13px;
    }

    .user-name {
      font-weight: bold;
      color: #4a90e2;
      margin-bottom: 2px;
    }

    .comment-text {
      color: #ccc;
      line-height: 1.3;
    }

    .comment-time {
      font-size: 11px;
      color: #777;
      margin-top: 4px;
    }

    /* PROFESSIONAL PAGE LAYOUT */
    body {
      background:
        radial-gradient(circle at top, rgba(255,255,255,0.05), transparent 35%),
        #0b0b0b;
      min-height: 100vh;
    }

    .page-shell {
      max-width: 980px;
      margin: 0 auto;
    }

    .site-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 2px 18px;
      border-bottom: 1px solid #242424;
      margin-bottom: 18px;
    }

    .brand {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: .2px;
    }

    .brand span {
      color: #ff3b30;
    }

    .header-badge {
      font-size: 11px;
      color: #999;
      border: 1px solid #303030;
      border-radius: 999px;
      padding: 6px 10px;
      background: #141414;
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 600px) 160px;
      justify-content: center;
      align-items: start;
      gap: 24px;
    }

    .main-content {
      min-width: 0;
    }

    .ad-column {
      position: sticky;
      top: 18px;
      width: 160px;
    }

    .ad-label {
      text-align: center;
      font-size: 9px;
      color: #666;
      letter-spacing: .8px;
      text-transform: uppercase;
      margin-bottom: 7px;
    }

    .ad-box {
      width: 160px;
      min-height: 600px;
      background: #111;
      border: 1px solid #242424;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    .ad-box iframe {
      display: block;
      width: 160px;
      height: 600px;
      border: 0;
    }

    .video-info {
      background: #121212;
      border: 1px solid #242424;
      border-radius: 10px 10px 0 0;
      padding: 10px 12px;
    }

    .video-wrapper {
      border-radius: 0 0 12px 12px;
      border: 1px solid #242424;
      border-top: 0;
    }

    .buffering-note {
      padding: 0 4px;
    }

    .comments-section {
      margin-bottom: 18px;
    }

    .footer-note {
      color: #666;
      font-size: 11px;
      padding: 18px 0 8px;
      text-align: center;
    }

    @media (max-width: 820px) {
      .page-shell {
        max-width: 620px;
      }

      .content-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .ad-column {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 2;
      }

      .main-content {
        order: 1;
      }

      .ad-box {
        width: 160px;
      }

      .site-header {
        padding-left: 2px;
        padding-right: 2px;
      }
    }

    @media (max-width: 420px) {
      body {
        padding: 8px;
      }

      .site-header {
        margin-bottom: 12px;
      }

      .brand {
        font-size: 16px;
      }

      .header-badge {
        font-size: 10px;
      }
    }
