/* DIVINE DESIGN SYSTEM */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #1e003a;
    --bg-card: rgba(30, 0, 58, 0.7);
    --bg-container: rgba(15, 0, 30, 0.85);
    
    --accent-gold: #ff007a; /* Vivid Pink */
    --accent-gold-light: #00dfd8; /* Vivid Cyan */
    --accent-gold-dark: #7928ca; /* Vivid Purple */
    
    --accent-holy: #ffeb3b; /* Bright Yellow */
    --accent-purple: #7928ca; 
    
    --text-main: #ffffff;
    --text-muted: #e2e8f0;
    
    --border-gold: rgba(255, 0, 122, 0.5);
    --border-gold-glow: rgba(0, 223, 216, 0.5);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #7928ca;
    background-image: linear-gradient(135deg, #ff007a 0%, #7928ca 50%, #00dfd8 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* HEADINGS & TEXT */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--accent-gold-light);
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* HEADER */
header.header, header:not(.header) {
    text-align: center;
    padding: 60px 20px 30px;
    background: transparent;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}
header h1 {
    margin-bottom: 15px;
}
p.subtitle, .header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* MAIN CONTAINERS (für Datenschutz/Nutzungsbed.) */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-container);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(212,175,55,0.1);
    min-height: 100vh;
}
.content {
    padding: 3rem;
}

/* CARDS & LAYOUT (Startseite) */
.news-banner {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.2));
    color: var(--accent-gold-light);
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

main.categories-container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.columns-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.category-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.category-title {
    font-size: 1.8rem;
    color: var(--accent-gold-light);
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 15px;
}

.cards-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    flex: 1;
}

.card, .feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 40px;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.wide-card {
    max-width: 100%;
    margin: 0 auto 40px auto;
}

.card-content-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.card-content-flex .card-icon {
    font-size: 5rem;
    margin-bottom: 0;
}

.card-content-flex .card-text {
    flex: 1;
}

@media (max-width: 768px) {
    .card-content-flex {
        flex-direction: column;
        text-align: center;
    }
}

.card:hover, .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 152, 0, 0.1);
    border-color: var(--accent-gold);
}

.card::before, .feature-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.card:hover::before, .feature-card:hover::before { opacity: 1; }

.card-icon, .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}

.card h2, .feature-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.card p, .feature-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.6;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 1px solid var(--accent-gold);
    cursor: pointer;
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(0,0,0,0));
    color: var(--accent-gold-dark);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.1);
}

.btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: white;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    border-color: transparent;
}

/* SECTIONS (Legal Pages) */
.section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}
.section h2 {
    color: var(--accent-gold-light);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}
.section h3 {
    color: var(--accent-gold);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.3rem;
}
.section p, .section li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.section ul {
    margin-left: 2rem;
}
.highlight {
    background: rgba(212,175,55,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--accent-gold-light);
}

/* MISC LEGAL COMPONENTS */
.language-toggle, .back-button {
    position: absolute;
    top: 25px;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-light);
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.language-toggle { right: 25px; }
.back-button { left: 25px; }
.language-toggle:hover, .back-button:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.bot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.feature {
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.3s;
}
.feature:hover {
    border-color: var(--accent-gold);
    background: rgba(212,175,55,0.05);
}
.feature h4 {
    color: var(--accent-gold-light);
    margin-bottom: 0.8rem;
}

.hidden { display: none; }

/* FOOTER */
footer {
    background: rgba(10, 5, 16, 0.95);
    padding: 50px 20px;
    border-top: 1px solid var(--border-gold);
    margin-top: auto;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}
.footer-section h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent-gold-light);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.copyright {
    text-align: center;
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .container { margin: 10px; }
    .content { padding: 1.5rem; }
}
