    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: #0b0b12;
      font-family: 'Segoe UI', system-ui, sans-serif;
      padding: 20px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 20px;
      color: white;
      overflow-x: hidden;
      position: relative;
    }

    #secrets-counter {
      background: rgba(0,0,0,0.3);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: clamp(14px, 4vw, 18px);
      font-weight: bold;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.1);
      z-index: 10;
    }

    .media-trigger,
    .action-trigger {
      color: white;
      font-size: clamp(16px, 5.8vw, 26px);
      font-weight: bold;
      text-align: center;
      padding: 16px clamp(18px, 7.5vw, 46px);
      border-radius: 14px;
      cursor: pointer;
      box-shadow: 0 5px 16px rgba(0,0,0,0.35);
      transition: all 0.22s ease;
      user-select: none;
      width: 100%;
      max-width: 600px;
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
      position: relative;
      overflow: hidden;
      border: none;
      z-index: 5;
    }

    .media-trigger:hover,
    .action-trigger:hover {
      transform: scale(1.025);
      box-shadow: 0 8px 22px rgba(0,0,0,0.45);
    }

    .media-trigger:active,
    .action-trigger:active {
      transform: scale(0.985);
    }

    .video-trigger     { background: linear-gradient(135deg, #ff2a6d, #d100a6); }
    .photo-trigger     { background: linear-gradient(135deg, #05d9e8, #0077ff); }
    .archive-trigger   { background: linear-gradient(135deg, #ff9a00, #ff5500); }
    .pack-trigger      { background: linear-gradient(135deg, #00c853, #64dd17); }
    .password-trigger  { background: linear-gradient(135deg, #aa00ff, #6200ea); }
    .access-trigger    { background: linear-gradient(135deg, #ffd600, #ff6d00); }
    .vip-trigger       { background: linear-gradient(135deg, #ff00c8, #8a2be2); }
    .cheat-trigger     { background: linear-gradient(135deg, #00ff9d, #00bfa5); }
    .key-trigger       { background: linear-gradient(135deg, #ffd700, #ffa500); }
    .box-trigger       { background: linear-gradient(135deg, #ff4500, #daa520); }

    .hidden-content {
      margin-top: 16px;
      display: none;
      width: 100%;
      max-width: 600px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
      z-index: 5;
    }

    iframe, img {
      width: 100%;
      display: block;
    }

    iframe { aspect-ratio: 16 / 9; border: none; }

    .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.85);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-content {
      background: #1a1a25;
      padding: 30px 40px;
      border-radius: 16px;
      text-align: center;
      max-width: 90%;
      width: 320px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .modal h3 {
      font-size: 20px;
      margin-bottom: 16px;
      color: #ffd600;
    }

    .modal p {
      font-size: 16px;
      line-height: 1.5;
    }

    .password-display {
      font-family: monospace;
      font-size: 22px;
      letter-spacing: 4px;
      margin: 16px 0;
      color: #64dd17;
      min-height: 30px;
    }

    .star {
      position: absolute;
      font-size: 24px;
      pointer-events: none;
      z-index: 100;
      opacity: 0;
    }

    @keyframes floatStar {
      0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
      }
      100% {
        transform: translate(var(--tx), var(--ty)) rotate(360deg);
        opacity: 0;
      }
    }

    @media (max-width: 600px) {
      .media-trigger, .action-trigger {
        padding: 14px 22px;
        font-size: 18px;
      }
      .modal-content {
        padding: 24px;
        width: 90%;
      }
    }

      .footer {
        top margin: 50px;
        top bottom: 10px;
    }