/* ---------------------------------------------------------
   DARKNEON PRO – Modernes Neon-Layout
   Einheitliches Layout-System (Hero + Content + Grid)
--------------------------------------------------------- */

/* Hintergrund */
body {
    background: #050505;
    color: #e5e5e5;
    font-family: Arial, sans-serif;
}

/* Wrapper */
.layout-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */
.layout-hero {
    text-align: center;
    margin-bottom: 40px;
}

.layout-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #00eaff;
    text-shadow: 0 0 12px rgba(0, 234, 255, 0.6);
    margin-bottom: 10px;
}

.layout-teaser {
    font-size: 18px;
    color: #9befff;
    text-shadow: 0 0 8px rgba(0, 234, 255, 0.4);
    margin-top: 5px;
}

/* ⭐ Beschreibung zentriert + Neon */
.layout-description {
    font-size: 17px;
    color: #b5f6ff;
    margin-top: 12px;
    text-shadow: 0 0 6px rgba(0, 234, 255, 0.4);
    text-align: center;
}

/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */
.layout-content {
    font-size: 17px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 40px;
}

/* ---------------------------------------------------------
   GRID – 4 CARDS NEBENEINANDER
--------------------------------------------------------- */
.layout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.layout-card {
    display: block;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 12px;
    text-decoration: none;
    color: #e5e5e5;
    transition: 0.25s ease;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.05);
}

.layout-card:hover {
    border-color: #00eaff;
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.4);
    transform: translateY(-4px);
}

/* Screenshot */
.layout-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* Placeholder */
.layout-placeholder {
    width: 100%;
    height: 150px;
    background: #111;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: inset 0 0 12px rgba(0, 234, 255, 0.2);
}

/* Titel */
.layout-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #00eaff;
    margin-bottom: 6px;
    text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
}

/* Beschreibung */
.layout-card-desc {
    font-size: 14px;
    color: #b5b5b5;
    line-height: 1.4;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1100px) {
    .layout-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }
}
