:root {
    --moss-dark: #4a5d23;
    --moss-bright: #84cc16;
    --bg-main: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.85);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border: rgba(74, 93, 35, 0.12);
}

body {
    margin: 0; padding: 0;
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex; flex-direction: column; min-height: 100vh;
}

body::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; background: url('Tux.svg') no-repeat center center;
    background-size: 35%; filter: grayscale(100%); opacity: 0.04; pointer-events: none;
}

.dashboard-grid {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
    max-width: 1400px; margin: 40px auto; padding: 0 40px;
}

.glass-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 24px; padding: 35px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: var(--moss-bright);
    box-shadow: 0 20px 40px rgba(74, 93, 35, 0.08);
    transform: translateY(-5px);
}

.hero-section { grid-column: span 8; }

/* Scroll-Logik für die Journal-Sektion */
.journal-section { 
    grid-column: span 4; 
    max-height: 600px; 
    display: flex; 
    flex-direction: column; 
}

.blog-list {
    overflow-y: auto;
    padding-right: 15px;
    flex-grow: 1;
}

.blog-list::-webkit-scrollbar { width: 4px; }
.blog-list::-webkit-scrollbar-thumb { background: var(--moss-dark); border-radius: 10px; }

.showcase-section { grid-column: span 12; }

.mono { font-family: 'JetBrains Mono', monospace; color: var(--moss-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin: 20px 0; color: var(--text-dark); }
h2 { font-size: 1.8rem; margin-bottom: 25px; color: var(--text-dark); border-left: 4px solid var(--moss-dark); padding-left: 15px; }

.action-btn {
    background: var(--moss-dark); color: white; padding: 12px 24px; border: none;
    border-radius: 12px; font-weight: 800; cursor: pointer; transition: 0.3s;
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .dashboard-grid {
        flex-direction: column !important;
    }
    .mobile-hide {
        display: none; /* Oder weglassen, wenn die Kategorien auch mobil sichtbar sein sollen */
    }
    aside {
        width: 100% !important;
    }
}
.action-btn:hover { background: var(--moss-bright); box-shadow: 0 0 20px rgba(132, 204, 22, 0.4); }

.modal-overlay { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(15,23,42,0.8); z-index:1000; align-items:center; justify-content:center; backdrop-filter: blur(10px); }
.modal-content { max-width: 800px; width: 95%; position: relative; max-height: 90vh; overflow-y: auto; padding: 40px; border-radius: 24px; background: white; }
.close-x { position: absolute; right: 25px; top: 20px; font-size: 30px; cursor: pointer; color: var(--text-muted); }
.price-list-item { margin-top: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }

@media (max-width: 1100px) { .dashboard-grid { grid-template-columns: 1fr; } .hero-section, .journal-section, .showcase-section { grid-column: span 1 !important; } }