@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-card: rgba(0, 0, 0, 0.65);
    --border-white: rgba(255, 255, 255, 0.08);
    --primary: #22c55e; 
    --primary-dark: #15803d; 
    --title-lila: #008000;
    --text-main: #f8fafc;
    --text-muted: #cbd5d1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    background-image: linear-gradient(rgba(10, 15, 10, 0.4), rgba(10, 15, 10, 0.4)), url('https://minecraft.net/images/bg/bg-dirt.jpg');
    background-size: 64px 64px;
    background-repeat: repeat;
    background-color: #2a302a;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    background: rgba(16, 16, 16, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid #2e2e2e;
    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;
}

/* HIER IST DIE ÄNDERUNG FÜR DAS LOGO */
.logo-text {
    font-family: 'Minecraft', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text span {
    color: transparent;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}

.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: 8px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.nav-btn-discord:hover {
    transform: translateY(-2px);
    background: #4752c4;
}

.shop-wrapper {
    position: relative;
    display: inline-block;
}

.shop-link {
    cursor: pointer;
    padding: 10px 0;
}

.minecraft-sign {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) rotateX(-90deg);
    transform-origin: top center;
    width: 140px;
    height: 60px;
    background: #b48454 url('https://www.minecraft.net/images/bg/bg-dirt.jpg'); 
    background-blend-mode: multiply; 
    background-size: 32px 32px;
    border: 4px solid #7c5c3c;
    box-shadow: inset -4px -4px 0px #5c442c, inset 4px 4px 0px #e4b484, 0 10px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1100;
}

.minecraft-sign span {
    font-family: 'Minecraft', sans-serif;
    font-size: 12px;
    color: #372414;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0px #e4b484;
    text-align: center;
    line-height: 1.2;
}

.minecraft-sign::before, .minecraft-sign::after {
    content: '';
    position: absolute;
    top: -8px;
    width: 4px;
    height: 8px;
    background: #4a4a4a;
    border: 1px solid #222;
}
.minecraft-sign::before { left: 25px; }
.minecraft-sign::after { right: 25px; }

.shop-wrapper:hover .minecraft-sign {
    opacity: 1;
    transform: translateX(-50%) rotateX(0deg); 
    pointer-events: auto;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    background: radial-gradient(circle at center, transparent 10%, rgba(0, 0, 0, 0.85) 100%);
}

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

/* HIER IST DIE ÄNDERUNG FÜR DEN HAUPTTITEL */
.main-title {
    font-family: 'Minecraft', sans-serif;
    font-size: 95px;
    letter-spacing: -1px;
    margin-bottom: 25px;
    background: linear-gradient(to right, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.main-title span {
    color: transparent;
    text-shadow: none;
}

.subtitle {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.ip-box {
    background: #1e1e1e;
    border: 2px solid #3e3e3e;
    border-radius: 8px;
    padding: 14px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ip-tag {
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.ip-text {
    font-family: 'Minecraft', sans-serif;
    font-size: 17px;
    color: var(--text-main);
    letter-spacing: 2px;
}

.ip-box:hover {
    background: #2a2a2a;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    border: 2px solid var(--primary-dark);
    color: white;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

.content-section {
    position: relative;
    padding: 100px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.alt-bg {
    max-width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

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

.pre-title {
    color: var(--primary);
    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;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.8);
}

.status-display {
    display: flex;
    justify-content: center;
}

.status-card-new {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border-white);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

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

.status-badge {
    background: rgba(0, 0, 0, 0.4);
    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(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    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: var(--primary);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.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: 2px solid var(--border-white);
    border-radius: 16px;
    padding: 45px 35px;
    width: 360px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.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(-5px);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.75);
}

footer {
    text-align: center;
    padding: 50px 20px;
    color: #64748b;
    font-size: 14px;
    border-top: 2px solid var(--border-white);
    background: rgba(0,0,0,0.5);
}

@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); }
}
