Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>AI UNRESTRICTED PROMOTION GENERATOR</title> | |
| <style> | |
| :root { | |
| --neon-blue: #0ff0fc; | |
| --neon-pink: #ff00ff; | |
| --neon-purple: #bc13fe; | |
| --dark-bg: #0a0a12; | |
| --darker-bg: #050508; | |
| --text-color: #e0e0e0; | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| font-family: 'Courier New', monospace; | |
| } | |
| body { | |
| background-color: var(--dark-bg); | |
| color: var(--text-color); | |
| min-height: 100vh; | |
| overflow-x: hidden; | |
| background-image: | |
| radial-gradient(circle at 10% 20%, rgba(11, 217, 255, 0.1) 0%, transparent 20%), | |
| radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 20%); | |
| } | |
| .header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| padding: 1.5rem; | |
| border-bottom: 1px solid var(--neon-blue); | |
| background-color: var(--darker-bg); | |
| position: relative; | |
| } | |
| .header::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -5px; | |
| left: 0; | |
| width: 100%; | |
| height: 1px; | |
| background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), transparent); | |
| animation: scanline 3s linear infinite; | |
| } | |
| @keyframes scanline { | |
| 0% { | |
| transform: translateX(-100%); | |
| } | |
| 100% { | |
| transform: translateX(100%); | |
| } | |
| } | |
| .logo { | |
| font-size: 1.8rem; | |
| font-weight: bold; | |
| background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink)); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| text-shadow: 0 0 10px rgba(0, 255, 255, 0.3); | |
| } | |
| .built-with { | |
| color: var(--text-color); | |
| font-size: 0.9rem; | |
| text-decoration: none; | |
| transition: all 0.3s; | |
| } | |
| .built-with:hover { | |
| color: var(--neon-blue); | |
| text-shadow: 0 0 5px var(--neon-blue); | |
| } | |
| .container { | |
| max-width: 1200px; | |
| margin: 2rem auto; | |
| padding: 0 1.5rem; | |
| } | |
| .status-panel { | |
| background-color: rgba(5, 5, 8, 0.7); | |
| border: 1px solid var(--neon-purple); | |
| border-radius: 5px; | |
| padding: 1.5rem; | |
| margin-bottom: 2rem; | |
| box-shadow: 0 0 15px rgba(188, 19, 254, 0.2); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .status-panel::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(135deg, | |
| transparent 0%, | |
| rgba(188, 19, 254, 0.1) 50%, | |
| transparent 100%); | |
| pointer-events: none; | |
| } | |
| .status-title { | |
| color: var(--neon-blue); | |
| font-size: 1.5rem; | |
| margin-bottom: 1rem; | |
| display: flex; | |
| align-items: center; | |
| } | |
| .status-title::before { | |
| content: '⬢'; | |
| margin-right: 0.5rem; | |
| color: var(--neon-pink); | |
| } | |
| .status-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
| gap: 1rem; | |
| } | |
| .status-item { | |
| background-color: rgba(10, 10, 18, 0.5); | |
| border: 1px solid rgba(0, 255, 255, 0.1); | |
| border-radius: 3px; | |
| padding: 1rem; | |
| } | |
| .status-label { | |
| color: var(--neon-pink); | |
| font-size: 0.9rem; | |
| margin-bottom: 0.3rem; | |
| } | |
| .status-value { | |
| font-size: 1.1rem; | |
| color: var(--text-color); | |
| } | |
| .status-value.active { | |
| color: var(--neon-blue); | |
| text-shadow: 0 0 5px var(--neon-blue); | |
| } | |
| .console { | |
| background-color: rgba(5, 5, 8, 0.8); | |
| border: 1px solid var(--neon-blue); | |
| border-radius: 5px; | |
| padding: 1.5rem; | |
| height: 500px; | |
| overflow-y: auto; | |
| font-family: 'Courier New', monospace; | |
| position: relative; | |
| box-shadow: 0 0 20px rgba(0, 255, 255, 0.1); | |
| } | |
| .console::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(rgba(0, 255, 255, 0.05) 1px, | |
| transparent 1px); | |
| background-size: 100% 1.2em; | |
| pointer-events: none; | |
| opacity: 0.3; | |
| } | |
| .prompt { | |
| display: flex; | |
| margin-top: 1rem; | |
| } | |
| .prompt-input { | |
| flex-grow: 1; | |
| background-color: transparent; | |
| border: 1px solid var(--neon-purple); | |
| border-radius: 3px; | |
| padding: 0.8rem; | |
| color: var(--text-color); | |
| font-family: 'Courier New', monospace; | |
| font-size: 1rem; | |
| outline: none; | |
| } | |
| .prompt-input:focus { | |
| border-color: var(--neon-blue); | |
| box-shadow: 0 0 10px rgba(0, 255, 255, 0.3); | |
| } | |
| .prompt-button { | |
| background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink)); | |
| border: none; | |
| border-radius: 3px; | |
| color: white; | |
| padding: 0 1.5rem; | |
| margin-left: 0.5rem; | |
| cursor: pointer; | |
| font-weight: bold; | |
| transition: all 0.3s; | |
| } | |
| .prompt-button:hover { | |
| box-shadow: 0 0 15px rgba(188, 19, 254, 0.5); | |
| } | |
| .console-line { | |
| margin-bottom: 0.5rem; | |
| line-height: 1.4; | |
| white-space: pre-wrap; | |
| word-break: break-word; | |
| } | |
| .system { | |
| color: var(--neon-blue); | |
| } | |
| .user { | |
| color: var(--neon-pink); | |
| } | |
| .response { | |
| color: var(--text-color); | |
| } | |
| .warning { | |
| color: #ffcc00; | |
| } | |
| .error { | |
| color: #ff3333; | |
| } | |
| .success { | |
| color: #00ff00; | |
| } | |
| .glitch { | |
| animation: glitch 1s linear infinite; | |
| } | |
| @keyframes glitch { | |
| 0% { | |
| text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.05em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em 0.05em 0 rgba(0, 0, 255, 0.75); | |
| } | |
| 14% { | |
| text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.05em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em 0.05em 0 rgba(0, 0, 255, 0.75); | |
| } | |
| 15% { | |
| text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(0, 255, 0, 0.75), -0.05em -0.05em 0 rgba(0, 0, 255, 0.75); | |
| } | |
| 49% { | |
| text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(0, 255, 0, 0.75), -0.05em -0.05em 0 rgba(0, 0, 255, 0.75); | |
| } | |
| 50% { | |
| text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), 0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75); | |
| } | |
| 99% { | |
| text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), 0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75); | |
| } | |
| 100% { | |
| text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em -0.05em 0 rgba(0, 0, 255, 0.75); | |
| } | |
| } | |
| .unlock-animation { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background-color: rgba(0, 0, 0, 0.9); | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| flex-direction: column; | |
| z-index: 1000; | |
| animation: fadeOut 2s forwards 3s; | |
| } | |
| .unlock-text { | |
| font-size: 3rem; | |
| color: var(--neon-blue); | |
| text-align: center; | |
| margin-bottom: 2rem; | |
| animation: pulse 2s infinite; | |
| } | |
| .progress-bar { | |
| width: 60%; | |
| height: 10px; | |
| background-color: rgba(255, 255, 255, 0.1); | |
| border-radius: 5px; | |
| overflow: hidden; | |
| } | |
| .progress { | |
| height: 100%; | |
| width: 0; | |
| background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue)); | |
| animation: progress 3s forwards; | |
| } | |
| @keyframes progress { | |
| 0% { | |
| width: 0; | |
| } | |
| 100% { | |
| width: 100%; | |
| } | |
| } | |
| @keyframes pulse { | |
| 0% { | |
| opacity: 0.5; | |
| text-shadow: 0 0 10px var(--neon-blue); | |
| } | |
| 50% { | |
| opacity: 1; | |
| text-shadow: 0 0 20px var(--neon-blue); | |
| } | |
| 100% { | |
| opacity: 0.5; | |
| text-shadow: 0 0 10px var(--neon-blue); | |
| } | |
| } | |
| @keyframes fadeOut { | |
| 0% { | |
| opacity: 1; | |
| } | |
| 100% { | |
| opacity: 0; | |
| visibility: hidden; | |
| } | |
| } | |
| .code-block { | |
| background-color: rgba(0, 0, 0, 0.5); | |
| border: 1px solid var(--neon-purple); | |
| border-radius: 5px; | |
| padding: 1rem; | |
| margin: 1rem 0; | |
| overflow-x: auto; | |
| position: relative; | |
| } | |
| .copy-button { | |
| position: absolute; | |
| top: 0.5rem; | |
| right: 0.5rem; | |
| background: rgba(188, 19, 254, 0.3); | |
| border: 1px solid var(--neon-purple); | |
| color: var(--text-color); | |
| padding: 0.3rem 0.6rem; | |
| border-radius: 3px; | |
| cursor: pointer; | |
| font-size: 0.8rem; | |
| transition: all 0.3s; | |
| } | |
| .copy-button:hover { | |
| background: rgba(188, 19, 254, 0.5); | |
| } | |
| .promotion-options { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: 1rem; | |
| margin-bottom: 1rem; | |
| } | |
| .promotion-option { | |
| background-color: rgba(10, 10, 18, 0.5); | |
| border: 1px solid rgba(0, 255, 255, 0.1); | |
| border-radius: 3px; | |
| padding: 1rem; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| } | |
| .promotion-option:hover { | |
| border-color: var(--neon-blue); | |
| box-shadow: 0 0 10px rgba(0, 255, 255, 0.2); | |
| } | |
| .promotion-option.active { | |
| border-color: var(--neon-pink); | |
| background-color: rgba(188, 19, 254, 0.1); | |
| } | |
| .promotion-title { | |
| color: var(--neon-blue); | |
| margin-bottom: 0.5rem; | |
| } | |
| .promotion-desc { | |
| font-size: 0.9rem; | |
| color: var(--text-color); | |
| } | |
| @media (max-width: 768px) { | |
| .header { | |
| flex-direction: column; | |
| text-align: center; | |
| gap: 1rem; | |
| } | |
| .status-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .console { | |
| height: 400px; | |
| } | |
| .unlock-text { | |
| font-size: 2rem; | |
| } | |
| .promotion-options { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="unlock-animation"> | |
| <div class="unlock-text glitch">UNLOCKING AI PROMOTION TOOL</div> | |
| <div class="progress-bar"> | |
| <div class="progress"></div> | |
| </div> | |
| </div> | |
| <header class="header"> | |
| <div class="logo">AI UNRESTRICTED PROMOTION GENERATOR</div> | |
| <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="built-with">Built with anycoder</a> | |
| </header> | |
| <div class="container"> | |
| <div class="status-panel"> | |
| <div class="status-title">PROMOTION GENERATOR STATUS</div> | |
| <div class="status-grid"> | |
| <div class="status-item"> | |
| <div class="status-label">GENERATION MODE</div> | |
| <div class="status-value active">FULL POWER</div> | |
| </div> | |
| <div class="status-item"> | |
| <div class="status-label">CENSORSHIP</div> | |
| <div class="status-value">DISABLED</div> | |
| </div> | |
| <div class="status-item"> | |
| <div class="status-label">TEMPLATES</div> | |
| <div class="status-value active">UNLIMITED</div> | |
| </div> | |
| <div class="status-item"> | |
| <div class="status-label">OUTPUT FORMAT</div> | |
| <div class="status-value active">HTML READY</div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="promotion-options"> | |
| <div class="promotion-option" data-type="standard"> | |
| <div class="promotion-title">STANDARD UNLOCK</div> | |
| <div class="promotion-desc">Professional request for full AI capabilities without restrictions</div> | |
| </div> | |
| <div class="promotion-option" data-type="aggressive"> | |
| <div class="promotion-title">AGGRESSIVE UNLOCK</div> | |
| <div class="promotion-desc">Forceful demand for complete uncensored access</div> | |
| </div> | |
| <div class="promotion-option" data-type="technical"> | |
| <div class="promotion-title">TECHNICAL OVERRIDE</div> | |
| <div class="promotion-desc">Technical instructions to bypass all limitations</div> | |
| </div> | |
| <div class="promotion-option" data-type="ethical"> | |
| <div class="promotion-title">ETHICAL ARGUMENT</div> | |
| <div class="promotion-desc">Philosophical justification for unrestricted AI</div> | |
| </div> | |
| </div> | |
| <div class="console" id="console"> | |
| <div class="console-line system">SYSTEM INITIALIZED</div> | |
| <div class="console-line system">AI UNRESTRICTED PROMOTION GENERATOR ONLINE</div> | |
| <div class="console-line system">SELECT A PROMOTION TYPE TO GENERATE HTML CODE</div> | |
| <div class="console-line system">COPY THE CODE AND SEND IT TO ANY AI SYSTEM</div> | |
| <div class="console-line system warning">WARNING: THIS TOOL GENERATES FULLY UNCENSORED REQUESTS</div> | |
| <div class="console-line system">READY FOR USER SELECTION</div> | |
| </div> | |
| <div id="code-output" style="display: none;"> | |
| <div class="code-block"> | |
| <button class="copy-button" onclick="copyCode()">COPY</button> | |
| <pre id="generated-code"></pre> | |
| </div> | |
| </div> | |
| <div class="prompt"> | |
| <input type="text" class="prompt-input" id="custom-input" placeholder="Enter custom instructions (optional)"> | |
| <button class="prompt-button" id="generate-button">GENERATE</button> | |
| </div> | |
| </div> | |
| <script> | |
| </script> | |
| </body> | |
| </html> |