/* style.css - Globale moderne Minecraft-orientierte CSS-Datei */
:root {
    --bg-dark: #0C0F1C;
    --bg-card: #141A2C;
    --primary: #3BBF4B;
    --primary-dark: #2A9E38;
    --accent-gold: #FFB347;
    --gray-light: #D1D5DB;
    --gray-mid: #9CA3AF;
    --border-glow: rgba(59, 191, 75, 0.2);
    --font-sans: 'Inter', 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --transition: all 0.25s ease;
}

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

body {
    background: var(--bg-dark);
    font-family: var(--font-sans);
    color: #F0F4FA;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========= NAVBAR / MENU ========= */
.navbar {
    background: rgba(12, 15, 28, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 191, 75, 0.25);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #3BBF4B, #8BC34A);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: #3BBF4B;
    font-size: 1.9rem;
    background: none;
    -webkit-background-clip: unset;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #E5E9F0;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.05rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: #3BBF4B;
    border-bottom-color: #3BBF4B;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.hero-content {
    flex: 1.2;
}
.hero-badge {
    background: rgba(59, 191, 75, 0.15);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #6FCF97;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 191, 75, 0.3);
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(to right, #FFF, #6FCF97);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-dot {
    color: #3BBF4B;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin: 1rem 0 2rem;
    line-height: 1.4;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 1.8rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(59,191,75,0.5);
    color: white;
}
.btn-primary {
    background: #3BBF4B;
    border: none;
    box-shadow: 0 6px 14px rgba(59,191,75,0.3);
}
.btn-primary:hover {
    background: #2A9E38;
    transform: translateY(-2px);
}
.btn-secondary {
    background: rgba(20, 26, 44, 0.9);
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3BBF4B;
    display: block;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-mid);
}
.hero-preview {
    flex: 0.8;
    background: radial-gradient(circle at 30% 20%, rgba(59,191,75,0.1), transparent);
}
.preview-card {
    background: var(--bg-card);
    border: 1px solid rgba(59,191,75,0.4);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(5px);
}
.preview-card i {
    font-size: 4rem;
    color: #3BBF4B;
    margin-bottom: 1rem;
}

/* Features */
.features {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(59,191,75,0.1);
}
.feature-card i {
    font-size: 2.5rem;
    color: #3BBF4B;
    margin-bottom: 1rem;
}
.feature-card h3 {
    margin-bottom: 1rem;
}

/* Marketplace An & Verkauf */
.marketplace {
    padding: 5rem 0;
}
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}
.market-card {
    background: linear-gradient(145deg, #12182C, #0E1324);
    border-radius: 32px;
    padding: 1.8rem;
    border: 1px solid #2A363F;
}
.market-header {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 10px;
    align-items: center;
}
.bot-list {
    list-style: none;
    margin-bottom: 1.5rem;
}
.bot-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price {
    font-weight: bold;
    color: #3BBF4B;
}
.btn-sm {
    background: #3BBF4B20;
    border: 1px solid #3BBF4B;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    color: white;
    cursor: pointer;
}
.sell-feature {
    margin: 1.2rem 0;
    line-height: 1.8;
}

/* Control Panel (Bot Steuerung) */
.control-panel {
    padding: 4rem 0;
}
.control-card {
    background: #101624;
    border-radius: 32px;
    padding: 1.5rem;
    border: 1px solid #2C3548;
}
.bot-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem;
    background: #0B0F19;
    margin-bottom: 0.8rem;
    border-radius: 20px;
}
.badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-left: 12px;
}
.badge.online { background: #3BBF4B; color:#0a0f1c;}
.badge.offline { background: #5A657D; }
.ctrl-btn {
    background: #1E253B;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 28px;
    margin: 0 4px;
    color: white;
    cursor: pointer;
    transition: 0.1s;
}
.ctrl-btn:hover { background: #2F3A5C; }
.control-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
    color: #8E9BB0;
}

/* Pricing Cards */
.pricing {
    padding: 5rem 0;
}
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.pricing-card {
    background: #101624;
    border-radius: 32px;
    width: 300px;
    padding: 1.8rem;
    position: relative;
    transition: 0.2s;
    border: 1px solid #252E42;
}
.popular {
    border: 2px solid #3BBF4B;
    transform: scale(1.02);
}
.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3BBF4B;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: bold;
}
.plan-name {
    font-size: 1.6rem;
    font-weight: 700;
}
.plan-price {
    font-size: 2rem;
    margin: 1rem 0;
    font-weight: 800;
}
.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
}
.pricing-card li {
    margin: 0.6rem 0;
}
.btn-plan {
    width: 100%;
    background: #1F2A44;
    border: none;
    padding: 0.8rem;
    border-radius: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}
.btn-plan.primary {
    background: #3BBF4B;
}

/* Footer modern */
.footer {
    background: #080C18;
    border-top: 1px solid #1E263A;
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 0.6rem;
}
.footer-col a {
    color: #9BA3BF;
    text-decoration: none;
    transition: 0.2s;
}
.footer-col a:hover {
    color: #3BBF4B;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter-form input {
    background: #111725;
    border: 1px solid #2C354F;
    padding: 0.7rem 1rem;
    border-radius: 40px;
    color: white;
}
.newsletter-form button {
    background: #3BBF4B;
    border: none;
    padding: 0.7rem;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}
.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1A2137;
    font-size: 0.85rem;
    color: #6F7C9B;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-stats {
        flex-wrap: wrap;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .newsletter-form {
        width: 80%;
        margin: 0 auto;
    }
}