strikes / index.html
Reaperxxxx's picture
Update index.html
0536a25 verified
<!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>