@import url('https://fonts.cdnfonts.com/css/minecraft-4');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --bg-dark: #03050a;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border-white: rgba(255, 255, 255, 0.05);
    --primary: #1e40af; /* Ein tieferes, moderneres Indigo-Blau */
    --primary-glow: rgba(30, 64, 175, 0.2);
    --accent: #6b21a8;  /* Ein edles, dunkleres Violett */
    --accent-glow: rgba(107, 33, 168, 0.2);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    background: rgba(3, 5, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-white);
    z-index: 1000;
}

.nav-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Minecraft', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-main);
}

.logo-text span {
    color: #3b82f6;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-btn-discord {
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    transition: all 0.3s ease;
}

.nav-btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

/* --- Moderner fließender Aurora-Hintergrund --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

/* Das fließende, morphende Nebelleuchten im Hintergrund */
.hero-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 33, 168, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 40%, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
    animation: auroraFlow 25s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Das feine Cyber-Raster über dem Nebel */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    /* Dunkelt zu den Rändern hin sanft ab (Vignette) */
    background-color: transparent;
    box-shadow: inset 0 0 100px rgba(3, 5, 10, 0.9);
    z-index: 2;
    pointer-events: none;
}

/* Die Sphären wurden entfernt, da der neue Nebel flüssiger und moderner animiert wird */
.glow-sphere { display: none; }

.hero-wrapper {
    position: relative;
    z-index: 5;
    max-width: 850px;
}

.main-title {
    font-family: 'Minecraft', sans-serif;
    font-size: 95px;
    letter-spacing: -1px;
    margin-bottom: 25px;
    color: var(--text-main);
    filter: drop-shadow(0 4px 30px rgba(0,0,0,0.8));
}

.main-title span {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 50px;
}

/* --- Klickbare IP Box --- */
.cta-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.ip-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-white);
    border-radius: 14px;
    padding: 14px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ip-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.ip-text {
    font-family: 'Minecraft', sans-serif;
    font-size: 17px;
    color: var(--text-main);
    letter-spacing: 2px; /* Mehr Abstand für Minecraft-Schrift */
    transition: color 0.2s;
}

.ip-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #3b82f6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(125, 119, 255, 0.15);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(56, 149, 255, 0.3);
}

/* --- Content Sektionen --- */
.content-section {
    position: relative;
    padding: 140px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.alt-bg {
    max-width: 100%;
    background: linear-gradient(180deg, #03050a 0%, #010205 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.pre-title {
    color: #3b82f6;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Minecraft', sans-serif;
    font-size: 44px;
    letter-spacing: 1px;
}

/* --- Status Card --- */
.status-display {
    display: flex;
    justify-content: center;
}

.status-card-new {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-white);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.status-header {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.status-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-white);
    padding: 10px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6b7280;
}

.pulse-dot.online {
    background: #10b981;
    box-shadow: 0 0 15px #10b981;
    animation: dotPulse 2s infinite;
}

.pulse-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 15px #ef4444;
}

.status-body {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.005);
    border: 1px solid rgba(255, 255, 255, 0.01);
    padding: 20px;
    border-radius: 16px;
    width: 50%;
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-value {
    font-family: 'Minecraft', sans-serif;
    font-size: 22px;
    color: #3b82f6;
}

/* --- Features Grid --- */
.grid-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-card {
    background: var(--bg-card);
    border: 1px solid var(--border-white);
    border-radius: 24px;
    padding: 45px 35px;
    width: 360px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 25px;
}

.modern-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
}

.modern-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.03);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 50px 20px;
    color: #334155;
    font-size: 14px;
    border-top: 1px solid var(--border-white);
}

/* --- Komplett überarbeitete flüssige Animationen --- */
@keyframes auroraFlow {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(90deg) scale(1.2);
    }
    100% {
        transform: rotate(180deg) scale(1);
    }
}

@keyframes dotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
