:root {
    --bg-color: #0d1117;
    --text-color: #e6edf3;
    /* Von Grün auf Blau umgestellt: */
    --accent-color: #58a6ff; 
    --secondary-color: #58a6ff;
    --info-text: #1d1d1f;
    --info-accent: #0066ff; /* Ein etwas kräftigeres Blau für den weißen Bereich */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Zentraler Container für formschöne Breitenbegrenzung */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 1.5rem 0;
    border-bottom: 1px solid #30363d;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
}

.logo span {
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--accent-color);
}

.hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* Die sachliche Informations-Sektion (Heller Bereich) */
.info-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: var(--info-text);
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #000;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
}

.info-block h3 {
    font-size: 0.9rem;
    color: var(--info-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

footer {
    text-align: center;
    padding: 60px 0;
    font-size: 0.85rem;
    color: #8b949e;
    border-top: 1px solid #30363d;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Client-Sektion */
.client-section {
    padding: 100px 0;
    background-color: var(--bg-color); /* Zurück zum dunklen Hintergrund für Kontrast */
    color: var(--text-color);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #8b949e;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.client-card {
    background: #161b22;
    border: 1px solid #30363d;
    padding: 30px;
    border-radius: 6px;
    transition: border-color 0.3s, transform 0.2s;
}

.client-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.client-tag {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: bold;
}

.client-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
}

.client-card p {
    font-size: 0.95rem;
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 25px;
}

.client-link {
    display: inline-block;
    color: #fff;
    background-color: var(--accent-color);
    text-decoration: none;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.client-link:hover {
    opacity: 0.8;
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    background-color: #f5f5f7; /* Sehr helles Grau */
    color: #333;
    font-size: 0.9rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.legal-block h3 {
    font-size: 1rem;
    color: #000;
    margin-bottom: 10px;
}

.legal-block p {
    line-height: 1.6;
    color: #555;
}

.footer-link {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 1px transparent;
}

.footer-link:hover {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}

/* Phoenix Spezial-Karte */
.highlight-card {
    border: 2px solid var(--accent-color) !important; /* Dein Blau als Rahmen */
    background: linear-gradient(145deg, #161b22, #1c2128) !important;
    position: relative;
    overflow: hidden;
}

.highlight-card h3 {
    color: var(--accent-color);
    font-size: 1.6rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.release-info {
    background: rgba(88, 166, 255, 0.1);
    border: 1px dashed var(--accent-color);
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--accent-color);
}

/* Deaktivierter Button bis zum 24.12. */
.disabled {
    background-color: #30363d !important;
    color: #8b949e !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.download-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.dev-log {
    margin-top: 25px;
    padding: 15px;
    background: rgba(0, 102, 255, 0.05);
    border-left: 3px solid var(--accent-color);
    font-size: 0.85rem;
}

.dev-log h4 {
    margin: 0 0 10px 0;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.dev-log code {
    background: #1c2128;
    color: #e6edf3;
    padding: 2px 5px;
    border-radius: 3px;
}
