/* --- RESET & VARIABLES --- */
:root {
    --bg-color: #111111;       /* Fast Schwarz */
    --container-bg: #1e1e1e;   /* Dunkles Grau */
    --text-main: #e0e0e0;      /* Helles Grau (Beton) */
    --accent: #ff6600;         /* Warn-Orange */
    --accent-hover: #ff8533;
    --border-color: #333;
    --font-heading: 'Black Ops One', cursive; /* Stencil Look */
    --font-body: 'Roboto Mono', monospace;    /* Tech/Code Look */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
}

/* --- LAYOUT UTILS --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* --- HEADER / HERO --- */
.hero {
    background-color: #000;
    border-bottom: 2px solid var(--accent);
    padding: 60px 0;
    text-align: center;
    background-image: repeating-linear-gradient(
        45deg,
        #0a0a0a,
        #0a0a0a 10px,
        #111 10px,
        #111 20px
    );
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    border-top: 1px solid #333;
    display: inline-block;
    padding-top: 10px;
}

/* --- SECTIONS --- */
section {
    margin-bottom: 60px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    border-left: 5px solid var(--accent);
    padding-left: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}

p {
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    color: #aaa;
    border-left: 2px solid #444;
    padding-left: 10px;
    margin-left: 5px;
    display: inline-block;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
}

/* --- FEATURE GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: var(--container-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    position: relative;
}

.feature-card::before {
    content: '+';
    position: absolute;
    top: 5px;
    right: 10px;
    color: #444;
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* --- ALERT BOX --- */
.alert-box {
    border: 2px dashed var(--accent);
    padding: 20px;
    text-align: center;
    background: rgba(255, 102, 0, 0.1);
    margin-top: 30px;
}

/* --- CTA SECTION --- */
.cta-section {
    background: #151515;
    padding: 40px;
    border: 1px solid #333;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 2px solid var(--accent);
}

.benefits-list strong {
    color: var(--accent);
}

.small-print {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 20px;
}

/* --- FORMULAR --- */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup-form input {
    background: #000;
    border: 1px solid #444;
    padding: 15px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.signup-form input:focus {
    border-color: var(--accent);
}

.signup-form button {
    background-color: var(--accent);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 15px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
    font-weight: bold;
}

.signup-form button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* --- FOOTER --- */
.footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #222;
    margin-top: 40px;
}

@media (min-width: 600px) {
    .signup-form { flex-direction: row; }
    .signup-form input { flex: 1; }
    h1 { font-size: 4.5rem; }
}

/* --- LOGIN SYSTEM & INTERNAL --- */

.hidden {
    display: none !important;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-box {
    background: #111;
    border: 1px solid var(--accent);
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.15);
}

.modal-box h3 {
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.modal-box input {
    background: #050505;
    border: 1px solid #333;
    color: var(--accent);
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.modal-box button[type="submit"] {
    background: var(--accent);
    color: #000;
    font-family: var(--font-heading);
    padding: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.close-btn {
    position: absolute;
    top: 10px; right: 15px;
    background: none !important;
    border: none !important;
    color: #555 !important;
    font-size: 1.5rem !important;
    cursor: pointer;
}

.error-msg {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 15px;
    font-family: monospace;
}

/* Logout Button im internen Bereich */
.logout-btn {
    background: transparent;
    border: 1px solid #0f0;
    color: #0f0;
    font-family: monospace;
    padding: 8px 16px;
    cursor: pointer;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.logout-btn:hover {
    background: #0f0;
    color: #000;
}

/* --- TARNKAPPE FÜR DEN LOGIN (Neu) --- */
#login-trigger {
    cursor: default; /* Zeigt keine "Klick-Hand" an */
    user-select: none;
}