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

html, body {
    height: 100%;
    font-family: 'Play', system-ui, Arial, sans-serif;
    background-color: #111;
    color: #e6eef6;
    min-height: 100vh;
    background-image: url("../images/background.jpg");
    background-attachment: fixed;
    background-size: cover;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Header */
.header {
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: linear-gradient(135deg,#222 25%,#111 25%,#111 50%,#222 50%,#222 75%,#111 75%,#111 100%);
    background-size: 5px 5px;
    border-bottom: 1px solid #444;
    box-shadow: 0 8px 24px rgba(0,0,0,1);
}

.header h1 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-left: 1px solid #444;
    border-right: 1px solid #444;
    background: linear-gradient(180deg,#0b1622, rgba(0,0,0,0.8));
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
}

/* Top Section */
.top-section {
    width: 100%;
    height: 120px;
    background-color: #ecf0f1;
    padding: 15px;
    border-bottom: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container für Sidebar und Module */
.content-container {
    display: flex;
    flex: 1;
}

/* Sidebar */
.sidebar {
    width: 300px;
    padding: 15px;
    border-right: 1px solid #444;
}

.sidebar h3 {
    margin-bottom: 15px;
    color: #e6eef6;
}

.sidebar p {
    line-height: 1.6;
    color: #555;
}

.sidebar-nav, .login-form {
    background: #222;
    padding: 1rem;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 1rem;
}

.sidebar-nav a {
    color: #ffb730;
    text-decoration: none;
}

/* Modulbereich */
.modules {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
}

.module {
    flex: 1; /* sorgt für vertikale Ausdehnung */
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: calc(100vh - 241px);
}

/* Landingpage */
.landing {
    flex: 1;
    padding: 50px;
    line-height: 1.5;
    color: #9aa6b2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.landing h1 {
    color: #e6eef6;
    margin-bottom: 10px;
}

.landing ul {
    margin-left: 50px;
    text-align: left;
}

/* Login und Buttons */
.login-form, .login-status {
    max-width: 320px;
    margin: 2rem auto;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}

.login-form input {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0;
    border-radius: .25rem;
    border: 1px solid #444;
    background: rgba(0,0,0,0.3);
    color: #fff;
}

.login-form button {
    text-align: center;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    background: #ffb730;
    color: #333;
    padding: 11px 18px;
    margin-top: .5rem;
    border-radius: .25rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
}

.btn {
    text-align: center;
    width: 125px;
    cursor: pointer;
    text-decoration: none;
    background: #ffb730;
    color: #333;
    padding: 11px 18px;
    border-radius: .25rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
}

.btn:hover {
    background: #444;
}

.secondary {
    text-align: center;
    width: 125px;
    cursor: pointer;
    text-decoration: none;
    background: #333;
    color: #ffb730;
    padding: 11px 18px;
    border-radius: .25rem;
    border: none;
    cursor: pointer;
    font-weight: 700; 
    font-size: 12px;
}

.secondary:hover {
    background: #444;
}
.logout {
    background: #b33;
    color: #fff;
}

.logout:hover {
    background: #d44;
}

/* Screenshots */
.shots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.shot {
    background: linear-gradient(180deg, #0b1622, rgba(0,0,0,0.7));
    backdrop-filter: blur(5px);
    padding: 12px;
    border-radius: .25rem;
    border: 1px solid #444;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shot:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 215, 107, 0.2);
}

.shot img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: .25rem;
}

.shot h4 {
    margin: 10px 0 0;
    font-size: 14px;
    color: #ffd86b;
}

/* Footer */
.footer {
    width: 100%;
    background-image: linear-gradient(135deg,#222 25%,#111 25%,#111 50%,#222 50%,#222 75%,#111 75%,#111 100%);
    background-size: 5px 5px;
    border-top: 1px solid #444;
    color: white;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer p {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: linear-gradient(180deg,#0b1622, rgba(0,0,0,0.7));
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: .25rem;
    border:1px solid #444;
    box-shadow:0 8px 24px rgba(0,0,0,1);
}



/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        max-width: 100%;
    }

    .content-container {
        flex-direction: column;
    }

    .sidebar {

