File size: 24,348 Bytes
0536a25 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ANTI NSFW Bot - Advanced Content Moderation</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-purple: #8b5cf6;
--dark-purple: #5b21b6;
--light-purple: #c4b5fd;
--accent-pink: #ec4899;
--dark-bg: #0f0f23;
--card-bg: rgba(139, 92, 246, 0.08);
--glass-bg: rgba(255, 255, 255, 0.05);
--text-primary: #f8fafc;
--text-secondary: #cbd5e1;
--border-glow: rgba(139, 92, 246, 0.3);
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--dark-bg);
color: var(--text-primary);
line-height: 1.7;
min-height: 100vh;
overflow-x: hidden;
}
/* Animated background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
radial-gradient(circle at 40% 40%, rgba(91, 33, 182, 0.05) 0%, transparent 50%);
z-index: -1;
animation: backgroundPulse 8s ease-in-out infinite;
}
@keyframes backgroundPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.8; }
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
/* Enhanced Header */
header {
text-align: center;
padding: 120px 0 80px;
position: relative;
overflow: hidden;
}
header::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(from 0deg, transparent, var(--primary-purple), transparent);
animation: rotate 20s linear infinite;
opacity: 0.1;
}
@keyframes rotate {
to { transform: rotate(360deg); }
}
.hero-badge {
display: inline-block;
background: linear-gradient(135deg, var(--glass-bg), rgba(139, 92, 246, 0.1));
backdrop-filter: blur(10px);
border: 1px solid var(--border-glow);
padding: 8px 20px;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 500;
margin-bottom: 30px;
color: var(--light-purple);
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
h1 {
font-size: clamp(3rem, 8vw, 6rem);
font-weight: 800;
background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink), var(--light-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 25px;
letter-spacing: -0.02em;
animation: titleGlow 3s ease-in-out infinite alternate;
}
@keyframes titleGlow {
from { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)); }
to { filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8)); }
}
.subtitle {
font-size: 1.4rem;
color: var(--text-secondary);
margin-bottom: 40px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.bot-username {
display: inline-flex;
align-items: center;
gap: 12px;
background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
color: white;
padding: 16px 32px;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
box-shadow:
0 8px 32px rgba(139, 92, 246, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
overflow: hidden;
}
.bot-username::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}
.bot-username:hover::before {
left: 100%;
}
.bot-username:hover {
transform: translateY(-3px) scale(1.05);
box-shadow:
0 20px 60px rgba(139, 92, 246, 0.6),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
/* Enhanced Sections */
.section {
background: var(--glass-bg);
backdrop-filter: blur(20px);
padding: 60px 50px;
margin: 40px 0;
border-radius: 24px;
border: 1px solid var(--border-glow);
position: relative;
overflow: hidden;
animation: slideUp 0.8s ease-out;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}
h2 {
color: var(--text-primary);
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 30px;
display: flex;
align-items: center;
gap: 20px;
}
.icon {
font-size: 2.5rem;
filter: drop-shadow(0 0 10px currentColor);
}
/* Enhanced Feature Grid */
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
margin: 40px 0;
}
.feature-card {
background: linear-gradient(135deg, var(--card-bg), rgba(0, 0, 0, 0.2));
backdrop-filter: blur(10px);
padding: 40px 30px;
border-radius: 20px;
border: 1px solid var(--border-glow);
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
transform: scaleX(0);
transition: transform 0.5s ease;
}
.feature-card:hover::before {
transform: scaleX(1);
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow:
0 30px 80px rgba(139, 92, 246, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
border-color: var(--primary-purple);
}
.feature-card h3 {
color: var(--primary-purple);
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 12px;
}
/* Enhanced Commands */
.command {
background: linear-gradient(135deg, var(--card-bg), rgba(0, 0, 0, 0.3));
backdrop-filter: blur(10px);
padding: 25px;
margin: 20px 0;
border-radius: 16px;
border-left: 4px solid var(--primary-purple);
border: 1px solid rgba(139, 92, 246, 0.2);
transition: all 0.3s ease;
position: relative;
}
.command:hover {
transform: translateX(10px);
border-color: var(--primary-purple);
box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}
.command-name {
color: var(--accent-pink);
font-family: 'JetBrains Mono', 'Courier New', monospace;
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 10px;
}
.command-name::before {
content: '›';
color: var(--primary-purple);
font-weight: bold;
}
/* Enhanced Steps */
.setup-steps {
counter-reset: step-counter;
}
.step {
counter-increment: step-counter;
background: linear-gradient(135deg, var(--card-bg), rgba(0, 0, 0, 0.2));
backdrop-filter: blur(10px);
padding: 35px 35px 35px 80px;
margin: 30px 0;
border-radius: 20px;
position: relative;
border: 1px solid var(--border-glow);
transition: all 0.4s ease;
}
.step:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}
.step::before {
content: counter(step-counter);
position: absolute;
left: 25px;
top: 50%;
transform: translateY(-50%);
background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.4rem;
box-shadow:
0 8px 25px rgba(139, 92, 246, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.step h3 {
color: var(--light-purple);
font-size: 1.3rem;
margin-bottom: 10px;
}
/* Enhanced Warning */
.warning {
background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(139, 92, 246, 0.05));
backdrop-filter: blur(10px);
border: 1px solid rgba(239, 68, 68, 0.3);
padding: 25px;
border-radius: 16px;
margin: 30px 0;
position: relative;
overflow: hidden;
}
.warning::before {
content: '⚠️';
position: absolute;
top: -10px;
right: -10px;
font-size: 3rem;
opacity: 0.1;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.warning-title {
color: #fca5a5;
font-weight: 600;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 12px;
font-size: 1.1rem;
}
/* Enhanced Creator Section */
.creator {
text-align: center;
margin-top: 60px;
padding: 50px;
background: linear-gradient(135deg, var(--glass-bg), rgba(139, 92, 246, 0.05));
backdrop-filter: blur(20px);
border-radius: 24px;
border: 1px solid var(--border-glow);
position: relative;
}
.creator::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 2px;
background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
}
/* Scroll animations */
.fade-in {
opacity: 0;
transform: translateY(30px);
animation: fadeIn 0.8s ease-out forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
.container { padding: 0 15px; }
header { padding: 80px 0 60px; }
h1 { font-size: 3rem; }
.section { padding: 40px 25px; }
.feature-grid { grid-template-columns: 1fr; gap: 20px; }
.step { padding: 25px 25px 25px 70px; }
.step::before {
width: 40px;
height: 40px;
left: 20px;
font-size: 1.2rem;
}
h2 { font-size: 2rem; }
.icon { font-size: 2rem; }
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Selection styling */
::selection {
background: var(--primary-purple);
color: white;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="hero-badge">🛡️ Advanced AI Moderation</div>
<h1>ANTI NSFW BOT</h1>
<p class="subtitle">Protect your Telegram communities with cutting-edge AI content moderation technology</p>
<a href="https://t.me/nsfwnxbot" class="bot-username">
<span>🤖</span> @nsfwnxbot
</a>
</header>
<div class="section fade-in">
<h2><span class="icon">🛡️</span>About the Bot</h2>
<p style="font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px;">ANTI NSFW Bot represents the next generation of content moderation technology, utilizing advanced AI algorithms to automatically detect and remove inappropriate content from your Telegram groups. Our sophisticated system helps maintain a safe, professional, and comfortable environment for all community members by preventing the distribution of NSFW content that could result in group bans or user discomfort.</p>
<div class="feature-grid">
<div class="feature-card">
<h3>🖼️ Smart Image Detection</h3>
<p>Advanced computer vision algorithms analyze image content in real-time, identifying inappropriate material with industry-leading accuracy while minimizing false positives.</p>
</div>
<div class="feature-card">
<h3>🎭 Intelligent Sticker Filtering</h3>
<p>Comprehensive sticker analysis system that recognizes inappropriate animated and static stickers across multiple languages and cultural contexts.</p>
</div>
<div class="feature-card">
<h3>🎥 Advanced Video Analysis</h3>
<p>Frame-by-frame video content analysis using machine learning models trained specifically for detecting inappropriate video material and thumbnails.</p>
</div>
<div class="feature-card">
<h3>📊 Comprehensive Strike System</h3>
<p>Sophisticated user behavior tracking with customizable strike limits, automatic escalation, and detailed violation history for transparent moderation.</p>
</div>
<div class="feature-card">
<h3>⚡ Lightning Fast Response</h3>
<p>Sub-second content analysis and removal times ensure inappropriate content is eliminated before other users can interact with it.</p>
</div>
<div class="feature-card">
<h3>🔐 Privacy Focused</h3>
<p>All content analysis happens in real-time without storing personal data, ensuring complete privacy protection for your community members.</p>
</div>
</div>
</div>
<div class="section fade-in">
<h2><span class="icon">⚙️</span>Quick Setup Guide</h2>
<p style="margin-bottom: 40px; font-size: 1.1rem;">Get your community protected in under 2 minutes with our streamlined setup process:</p>
<div class="setup-steps">
<div class="step">
<h3>Add Bot to Your Group</h3>
<p>Search for <strong>@nsfwnxbot</strong> in Telegram and add it to your group chat. The bot supports groups of any size, from small teams to large communities with thousands of members.</p>
</div>
<div class="step">
<h3>Grant Administrative Privileges</h3>
<p>Promote the bot to administrator status and ensure the <strong>"Delete Messages"</strong> permission is enabled. This is essential for the bot to remove inappropriate content automatically.</p>
</div>
<div class="step">
<h3>Automatic Activation</h3>
<p>Once configured, the bot immediately begins monitoring your group. No additional setup required – protection starts instantly with our intelligent default settings.</p>
</div>
</div>
<div class="warning">
<div class="warning-title">⚠️ Critical Configuration Note</div>
<p>The bot requires administrator privileges with message deletion permissions to function effectively. Without these permissions, the bot cannot protect your community from inappropriate content. Additionally, ensure the bot is not restricted by group privacy settings.</p>
</div>
</div>
<div class="section fade-in">
<h2><span class="icon">💬</span>Command Reference</h2>
<p style="margin-bottom: 30px; font-size: 1.1rem;">Complete list of available commands for users and administrators:</p>
<div class="command">
<div class="command-name">/mystrikes</div>
<div class="command-desc">Display your current violation count and standing within the group. Includes timestamp of last violation and remaining strikes before action.</div>
</div>
<div class="command">
<div class="command-name">/strikes</div>
<div class="command-desc">View a leaderboard of users with the highest strike counts. Helps administrators identify patterns and repeat offenders for proactive moderation.</div>
</div>
<div class="command">
<div class="command-name">/pass [username/reply]</div>
<div class="command-desc"><strong>🔹 Admin Only:</strong> Add a user to the trusted whitelist. Their content will bypass automatic moderation while maintaining overall group protection standards.</div>
</div>
<div class="command">
<div class="command-name">/unpass [username/reply]</div>
<div class="command-desc"><strong>🔹 Admin Only:</strong> Remove a user from the trusted whitelist. Their future content will resume being subject to automatic moderation policies.</div>
</div>
<div class="command">
<div class="command-name">/passed</div>
<div class="command-desc">Display the complete list of users currently on the trusted whitelist, including the date they were added and by which administrator.</div>
</div>
<div class="command">
<div class="command-name">/stats</div>
<div class="command-desc"><strong>🔹 Admin Only:</strong> View comprehensive moderation statistics including total violations detected, content types blocked, and system performance metrics.</div>
</div>
</div>
<div class="section fade-in">
<h2><span class="icon">🔧</span>How It Works</h2>
<h3 style="color: var(--primary-purple); margin-top: 0;">🤖 AI-Powered Detection Engine</h3>
<p style="margin-bottom: 25px;">Our advanced machine learning models continuously analyze all media content shared in your group using state-of-the-art computer vision and deep learning algorithms trained on millions of examples.</p>
<h3 style="color: var(--primary-purple);">⚡ Instant Content Removal</h3>
<p style="margin-bottom: 25px;">When inappropriate content is detected, the system immediately removes the offending message and logs a strike against the user's account, all within milliseconds of detection.</p>
<h3 style="color: var(--primary-purple);">📈 Progressive Strike System</h3>
<p style="margin-bottom: 25px;">Users accumulate strikes for policy violations. Administrators can monitor these metrics and implement escalating consequences based on their community guidelines and tolerance levels.</p>
<h3 style="color: var(--primary-purple);">🎯 Smart Whitelist Management</h3>
<p style="margin-bottom: 25px;">Administrators can designate trusted community members as "passed" users, allowing their content to bypass automatic moderation while maintaining protection for the broader community.</p>
<h3 style="color: var(--primary-purple);">📊 Comprehensive Analytics</h3>
<p>Detailed reporting and analytics help administrators understand content patterns, identify trends, and make informed decisions about community management and policy adjustments.</p>
</div>
<div class="creator">
<h3 style="font-size: 1.8rem; margin-bottom: 20px;">👨💻 Created by Saul</h3>
<p style="font-size: 1.1rem; line-height: 1.8; max-width: 800px; margin: 0 auto;">Developed with a commitment to creating safer, more inclusive digital communities. This bot represents years of research in content moderation technology, designed to prevent inappropriate content sharing that could compromise group integrity or user experience. Our mission is to empower community administrators with professional-grade moderation tools that work automatically and transparently.</p>
</div>
</div>
<script>
// Intersection Observer for fade-in animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.animationDelay = '0.2s';
entry.target.classList.add('fade-in');
}
});
}, observerOptions);
// Observe all sections
document.querySelectorAll('.section').forEach(section => {
observer.observe(section);
});
// Add smooth hover effects for interactive elements
document.querySelectorAll('.feature-card, .command, .step').forEach(element => {
element.addEventListener('mouseenter', () => {
element.style.transform = element.classList.contains('step') ? 'translateY(-5px)' :
element.classList.contains('command') ? 'translateX(10px)' : 'translateY(-10px)';
});
element.addEventListener('mouseleave', () => {
element.style.transform = 'translateY(0) translateX(0)';
});
});
</script>
</body>
</html> |