:root {
    --bg: #16122a;
    --surface: #1e1838;
    --text: #ebe8f2;
    --text-muted: #a89fc4;
    --accent: #4a7bc8;
    --accent-hover: #6b9ae0;
    --magenta: #b04da8;
    --magenta-soft: rgba(176, 77, 168, 0.2);
    --gold: #e6b84a;
    --stripe: rgba(147, 197, 253, 0.1);
    --border: rgba(74, 123, 200, 0.28);
    --radius: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    background-image:
        linear-gradient(135deg, var(--stripe) 0%, transparent 25%),
        linear-gradient(315deg, var(--stripe) 0%, transparent 25%),
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(176, 77, 168, 0.14), transparent 50%),
        radial-gradient(ellipse 70% 50% at 80% 100%, rgba(74, 123, 200, 0.12), transparent 45%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(230, 184, 74, 0.08), transparent 40%);
}

.page {
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Logo */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-wrap {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(74, 123, 200, 0.08) 0%, var(--magenta-soft) 100%);
    border: 1px solid rgba(74, 123, 200, 0.2);
}

.logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--accent);
}

.header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 1.5rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

.motto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    max-width: 28em;
    margin-left: auto;
    margin-right: auto;
}

/* Main */
.main {
    flex: 1;
}

.channels-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin: 0 0 1.25rem;
    opacity: 0.95;
}

.channels {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.channel-item {
    margin: 0;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.channel-link:hover {
    border-color: var(--accent);
    background: rgba(74, 123, 200, 0.14);
    box-shadow: 0 0 20px rgba(74, 123, 200, 0.2);
    transform: translateY(-2px);
}

.channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.channel-icon--odysee {
    background-color: #0f0f23;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23efefef'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14.5v-9l6 4.5-6 4.5z'/%3E%3C/svg%3E");
}

.channel-icon--youtube {
    background-color: #ff0000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

.channel-name {
    font-weight: 500;
    flex: 1;
}

.channel-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .channel-link {
        flex-wrap: wrap;
    }
    .channel-desc {
        width: 100%;
        margin-left: 56px;
        margin-top: -0.25rem;
    }
}

/* Jetzt mitmachen */
.cta-section {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, var(--magenta-soft) 0%, rgba(74, 123, 200, 0.08) 100%);
    border: 1px solid rgba(176, 77, 168, 0.25);
    border-radius: var(--radius);
    text-align: center;
}

.cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 0.75rem;
}

.cta-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
    line-height: 1.55;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 100%);
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(74, 123, 200, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(176, 77, 168, 0.4);
}

/* Kontaktformular */
.contact-section {
    margin-top: 2.5rem;
}

.contact-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin: 0 0 1.25rem;
    opacity: 0.95;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74, 123, 200, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 100%);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(74, 123, 200, 0.35);
}

.form-messages {
    margin-bottom: 1.5rem;
}

.form-message {
    margin: 0;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.form-message--success {
    background: rgba(74, 123, 200, 0.15);
    border: 1px solid rgba(74, 123, 200, 0.4);
    color: var(--text);
}

.form-message--error {
    background: rgba(176, 77, 168, 0.15);
    border: 1px solid rgba(176, 77, 168, 0.4);
    color: var(--text);
}

/* Footer */
.footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer p::before {
    content: '✦ ';
    color: var(--gold);
    opacity: 0.8;
}

.footer-nav {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-sep {
    margin: 0 0.5rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Rechtliche Seiten (Impressum, Datenschutz) */
.page--legal .main {
    padding-bottom: 2rem;
}

.header--compact {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent);
}

.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
}

.main--legal {
    max-width: 42rem;
}

.legal-intro {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    margin: 0 0 0.5rem;
}

.legal-block p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text);
}

.legal-block p:last-child {
    margin-bottom: 0;
}
