/* ===================================
   RESET & GRUNDLAGEN
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0b0f1a;
    color: #e5e7eb;
    line-height: 1.6;
}

/* ===================================
   NAVIGATION
   =================================== */
.main-nav {
    background: #020617;
    border-bottom: 2px solid #c00;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
}

.main-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ff3333;
}

/* ===================================
   HEADER
   =================================== */
header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #020617, #1e293b);
    border-bottom: 3px solid #c00;
}

header h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

header p {
    color: #9ca3af;
}

/* ===================================
   CONTENT
   =================================== */
.content {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.content p {
    margin-bottom: 12px;
}

/* ===================================
   LIGATABELLE
   =================================== */
#ligatabelle {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

#ligatabelle h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff3333;
}

/* Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    background: #020617;
    border-radius: 8px;
    overflow: hidden;
}

/* Kopf */
th {
    background: #c00;
    color: #fff;
    padding: 14px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Zellen */
td {
    padding: 12px;
    border-bottom: 1px solid #1e293b;
}

/* Hover */
tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Zentrierung */
th, td {
    text-align: center;
}

/* ===================================
   EVENT
   =================================== */
.event-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 25px;
    background: #020617;
    border-left: 4px solid #c00;
    text-align: center;
    border-radius: 6px;
}

.event-container h2 {
    margin-bottom: 10px;
    color: #ff3333;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    margin-top: 60px;
    padding: 30px 20px;
    background: #020617;
    text-align: center;
    border-top: 2px solid #1e293b;
}

footer p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

footer a {
    color: #ff3333;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Impressum */
#impressum-content {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* ===================================
   MOBILE
   =================================== */
@media (max-width: 768px) {

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }

    header h1 {
        font-size: 2rem;
    }

    table {
        font-size: 0.9rem;
    }
}

