/* --- Design Variablen --- */
:root {
    --bg-dark: #0d0d12;
    --brand-purple: #8A2BE2;
    --brand-gold: #F4BC1C;
    --glass-bg: rgba(25, 25, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(45, 45, 55, 0.8);
    --text-main: #f8f9fa;
    --text-muted: #a0a0ab;
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-lg: 20px;
    --radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Reset & Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* --- Background Animations --- */
.bg-animation {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.blob.purple {
    background: var(--brand-purple);
    width: 300px; height: 300px;
    top: -50px; left: -50px;
}

.blob.gold {
    background: var(--brand-gold);
    width: 250px; height: 250px;
    bottom: -50px; right: -50px;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* --- Layout & Glassmorphism --- */
.glass-container {
    width: 100%;
    max-width: 480px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
}

.logo-container {
    width: 80px; /* Größe ggf. anpassen, falls das Logo größer/kleiner sein soll */
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

#brand-claim {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 90%;
    margin: 0 auto;
}

/* --- Buttons & Links --- */
.action-section {
    width: 100%;
}

.btn-primary {
    width: 100%; 
    display: flex;
    background: linear-gradient(135deg, var(--brand-purple), #6a1b9a);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 16px; /* Exakt gleiches Padding wie bei .link-item für identische Höhe */
    font-size: 1rem;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    gap: 12px; /* Harmonischer Abstand zwischen Icon und Text */
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

/* Stellt sicher, dass das Icon im Primary-Button immer klein bleibt */
.btn-primary .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary:hover, .btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5);
    outline: none;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.link-item:hover, .link-item:focus-visible {
    background: var(--glass-hover);
    border-color: rgba(244, 188, 28, 0.4);
    transform: translateY(-2px);
    outline: none;
}

.link-item .icon {
    width: 20px;
    height: 20px;
    margin-right: 16px;
    color: var(--brand-gold);
}

.link-item .arrow {
    margin-left: auto;
    width: 16px;
    height: 16px;
    opacity: 0.5;
    transition: var(--transition);
}

.link-item:hover .arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* --- Social Links --- */
.social-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-item:hover, .social-item:focus-visible {
    background: var(--glass-hover);
    color: var(--brand-purple);
    border-color: var(--brand-purple);
    transform: translateY(-3px);
    outline: none;
}

.social-item svg {
    width: 20px; height: 20px;
}

/* --- Footer --- */
.footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

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

.footer a:hover {
    color: var(--text-main);
}

.footer .separator {
    margin: 0 8px;
    opacity: 0.5;
}

/* --- Toast Notification --- */
.toast {
    position: fixed;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    bottom: 30px;
    opacity: 1;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}