box-sizing: border-box; }
body {

Weiterleitung zur Startseite … Falls es nicht automatisch geht, hier klicken.

font-family: 'Arial', sans-serif;
background: #0a0a1a; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ header { padding: 20px 0; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .header-content { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 2.5em; font-weight: bold; background: linear-gradient(45deg, #bc17fd, #e91e63, #ff075a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 30px rgba(155, 89, 182, 0.5); } nav ul { display: flex; list-style: none; gap: 30px; } nav a { color: white; text-decoration: none; font-weight: 500; transition: all 0.3s ease; position: relative; } nav a:hover { color: #ff6b9d; transform: translateY(-2px); } nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(45deg, #ff6b9d, #9b59b6); transition: width 0.3s ease; } nav a:hover::after { width: 100%; } /* Hero Section */ .hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,') repeat; animation: float 20s infinite linear; } @keyframes float { 0% { transform: translateY(100vh) rotate(0deg); } 100% { transform: translateY(-100vh) rotate(360deg); } } .hero-content { z-index: 2; position: relative; } .hero h1 { font-size: 4.5em; margin-bottom: 20px; background: linear-gradient(45deg, #fff, #ff6b9d, #9b59b6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: glow 2s ease-in-out infinite alternate; } @keyframes glow { from { text-shadow: 0 0 20px rgba(255, 107, 157, 0.5); } to { text-shadow: 0 0 30px rgba(255, 107, 157, 0.8); } } .hero p { font-size: 1.3em; color: rgba(255, 255, 255, 0.9); margin-bottom: 30px; max-width: 600px; } .cta-button { display: inline-block; padding: 15px 40px; background: linear-gradient(45deg, #ff6b9d, #9b59b6); color: white; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3); } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5); } /* Features Section */ .features { padding: 100px 0; background: rgba(255, 255, 255, 0.05); } .features h2 { text-align: center; font-size: 3em; margin-bottom: 60px; color: white; text-shadow: 0 0 20px rgba(255, 107, 157, 0.3); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .feature-card { background: rgba(255, 255, 255, 0.1); padding: 40px; border-radius: 20px; text-align: center; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); transition: all 0.3s ease; } .feature-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.15); box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2); } .feature-icon { font-size: 3em; margin-bottom: 20px; background: linear-gradient(45deg, #ff6b9d, #9b59b6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .feature-card h3 { font-size: 1.5em; margin-bottom: 15px; color: white; } .feature-card p { color: rgba(255, 255, 255, 0.8); line-height: 1.6; } /* Discord Bot Section */ .discord-section { padding: 100px 0; background: rgba(0, 0, 0, 0.2); } .discord-section h2 { text-align: center; font-size: 3em; margin-bottom: 60px; color: white; text-shadow: 0 0 20px rgba(114, 137, 218, 0.5); } .discord-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; } .bot-info { background: rgba(114, 137, 218, 0.1); padding: 40px; border-radius: 20px; border: 2px solid rgba(114, 137, 218, 0.3); backdrop-filter: blur(10px); } .bot-info h3 { color: #7289da; font-size: 1.8em; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; } .bot-status { display: inline-block; width: 12px; height: 12px; background: #43b581; border-radius: 50%; animation: pulse 2s infinite; } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(67, 181, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(67, 181, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(67, 181, 129, 0); } } .updates-feed { max-height: 500px; overflow-y: auto; background: rgba(255, 255, 255, 0.05); border-radius: 15px; padding: 20px; } .update-item { background: rgba(255, 255, 255, 0.1); margin-bottom: 20px; padding: 20px; border-radius: 10px; border-left: 4px solid #ff6b9d; transition: all 0.3s ease; } .update-item:hover { background: rgba(255, 255, 255, 0.15); transform: translateX(5px); } .update-date { color: #7289da; font-size: 0.9em; margin-bottom: 8px; } .update-title { color: white; font-size: 1.1em; font-weight: bold; margin-bottom: 8px; } .update-description { color: rgba(255, 255, 255, 0.8); line-height: 1.5; } .feature-badge { display: inline-block; background: linear-gradient(45deg, #ff6b9d, #9b59b6); color: white; padding: 4px 12px; border-radius: 15px; font-size: 0.8em; margin-top: 10px; } .discord-invite { text-align: center; margin-top: 40px; } .discord-button { display: inline-block; background: #7289da; color: white; padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3); } .discord-button:hover { background: #5b6eae; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(114, 137, 218, 0.4); } /* About Section */ .about { padding: 100px 0; text-align: center; } .about h2 { font-size: 3em; margin-bottom: 30px; color: white; text-shadow: 0 0 20px rgba(255, 107, 157, 0.3); } .about p { font-size: 1.2em; color: rgba(255, 255, 255, 0.9); max-width: 800px; margin: 0 auto; line-height: 1.8; } /* Footer */ footer { background: rgba(0, 0, 0, 0.3); padding: 50px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.1); } .social-links { margin-bottom: 30px; } .social-links a { display: inline-block; margin: 0 15px; font-size: 1.5em; color: white; transition: all 0.3s ease; } .social-links a:hover { color: #ff6b9d; transform: translateY(-3px); } footer p { color: rgba(255, 255, 255, 0.7); } /* Responsive Design */ @media (max-width: 768px) { .header-content { flex-direction: column; gap: 20px; } nav ul { gap: 20px; } .hero h1 { font-size: 3em; } .hero p { font-size: 1.1em; } .features h2, .discord-section h2, .about h2 { font-size: 2.2em; } .discord-container { grid-template-columns: 1fr; gap: 30px; } .logo { font-size: 2em; } } /* Custom Scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); } ::-webkit-scrollbar-thumb { background: linear-gradient(45deg, #ff6b9d, #9b59b6); border-radius: 10px; } ::-webkit-scrollbar-thumb:hover { background: linear-gradient(45deg, #9b59b6, #ff6b9d); }

Willkommen bei Queenies

Deine königliche Discord Community mit dem ultimativen Bot! Erlebe perfektes Community Management, regelmäßige Updates und eine lebendige Gemeinschaft von Discord-Enthusiasten.

Community beitreten

Queenies Bot & Community Hub

Community Status: 15.247 Mitglieder Online

Willkommen in der größten deutschen Discord Bot Community! Hier entwickeln wir gemeinsam den Queenies Bot, teilen Erfahrungen und unterstützen uns gegenseitig. Bot + Community = Perfekte Kombination!

🌟 Community + Bot Features:

  • 👑 Exklusive Community-Events
  • 🤖 50+ Bot Commands
  • 📅 Tägliche Aktivitäten & Challenges
  • 🎉 Gaming Nights & Voice Chats
  • 📊 Community-gesteuerte Bot-Entwicklung
  • � Direkter Dev-Support

📢 Bot & Community Updates

05. November 2025
🎉 Community ist für jeden und alles offen
Großer Meilenstein erreicht! Bot Update 2.1.0 mit Community-Features: Member-Statistiken, Event-Planer und erweiterte Rollen-Automatisierung.
Community
28. Oktober 2025
🎮 Community Gaming Night erfolgreich!
500+ Teilnehmer bei unserem Gaming Event! Bot Update: Neue Gaming-Commands und Tournament-Features für Community-Events.
Community Event
15. Oktober 2025
✨ Halloween Community Event
Gemeinsames Halloween-Event mit 1.000+ Mitgliedern! Spezielle Halloween-Bot-Commands von der Community entwickelt.
Event
02. Oktober 2025
🎮 Community-Entwicklung: Gaming Features
Von der Community gewünschte Features umgesetzt: Minispiele, Community-Belohnungssystem und tägliche Challenges entwickelt.
Community Feature
20. September 2025
📊 Analytics Dashboard
Neues Dashboard für Server-Administratoren mit detaillierten Statistiken und Einblicken in die Community-Aktivität.
Dashboard
08. September 2025
💎 Premium Features Beta
Beta-Test für Premium-Features gestartet: Erweiterte Customization, Priority Support und exklusive Kommandos.
Beta

Community Features & Bot Power

Aktive Community

Community ist für jeden und alles offen

Queenies Bot Power

Unser hauseigener Bot mit 50+ Befehlen, Auto-Moderation, Musik, Games und Community-Management Features.

Support & Updates

24/7 Community Support, wöchentliche Bot-Updates und direkte Verbindung zu den Entwicklern für Feature-Requests.

Bot & Community - Perfekte Symbiose

Queenies ist mehr als nur ein Discord Bot - wir sind eine lebendige Community von über 15.000 Discord-Enthusiasten! Unser Bot wird von der Community für die Community entwickelt. Jedes Feature entsteht durch eure Ideen und Feedback. Tägliche Events, gemeinsame Gaming-Sessions, Bot-Entwicklung und eine familiäre Atmosphäre - das ist Queenies Bot & Community in perfekter Harmonie. Werde Teil unserer königlichen Discord-Familie!