:root {
    --bg: #0f1115;
    --card-bg: #1a1d23;
    --text: #ffffff;
    --text-dim: #9ca3af;
    --white: #ffffff;
    --blue-btn: #007bff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    display: flex;
    justify-content: center; /* Logo jetzt zentriert, da GitHub Link weg ist */
    padding: 2rem 10%;
}

.main-logo {
    height: 60px;
    width: auto;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 10%;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 800;
}

.content-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #2d333b;
    margin-bottom: 2.5rem;
}

.content-box p {
    font-size: 1.15rem;
    color: var(--text-dim);
}

/* Buttons nebeneinander */
.actions-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Für mobile Ansicht */
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    background-color: var(--white);
    color: var(--blue-btn);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    height: 42px; /* Angleichung an Ko-fi Widget Höhe */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.kofi-wrapper {
    display: flex;
    align-items: center;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #4b5563;
    font-size: 0.85rem;
}

/* Icon Styling */
[data-lucide] {
    width: 18px;
    height: 18px;
}