/* ============================================
   STYLE3.CSS - LUXURY DATENSCHUTZ STYLING
   ============================================ */

:root {
    --accent: #c5a059; /* Edles Gold */
    --accent-rgb: 197, 160, 89;
    --bg: #020617; /* Deep Night */
    --card: #0f172a;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --border: #1e293b;
    --shadow: 0 20px 50px rgba(0,0,0,0.5);
    --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Base Reset */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    cursor: none; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.8;
}

/* Custom Cursor */
.cursor-dot { 
    width: 8px; 
    height: 8px; 
    background: var(--accent); 
    position: fixed; 
    border-radius: 50%; 
    z-index: 10000; 
    pointer-events: none; 
}

.cursor-outline { 
    width: 40px; 
    height: 40px; 
    border: 2px solid var(--accent); 
    position: fixed; 
    border-radius: 50%; 
    z-index: 10000; 
    pointer-events: none; 
    transform: translate(-50%, -50%); 
}

/* Layout Wrapper */
.legal-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.05), transparent);
}

.legal-card {
    background: var(--card);
    max-width: 900px;
    width: 100%;
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Header Decor */
.legal-header { 
    text-align: center; 
    margin-bottom: 4rem; 
}

.logo-circle { 
    width: 60px; 
    height: 60px; 
    background: var(--accent); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 900; 
    margin: 0 auto 1.5rem; 
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.legal-card h1 { 
    font-size: 3rem; 
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff; 
    margin-bottom: 0.5rem; 
}

.subtitle { 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.8rem; 
    font-weight: 700;
}

/* Content Sections */
.legal-content {
    margin-bottom: 3rem;
}

.legal-section { 
    margin-bottom: 2.5rem; 
}

.legal-section h2 { 
    color: var(--accent); 
    font-size: 1.3rem; 
    margin-bottom: 1rem; 
    border-left: 3px solid var(--accent); 
    padding-left: 15px; 
}

.legal-section p { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    text-align: justify;
}

/* Center Button Styling */
.button-container-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent), #a88748);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.3);
}

.back-home-btn:hover { 
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.5); 
    color: white;
}

/* Animations */
.fade-in { 
    animation: fadeInUp 0.8s ease forwards; 
}

@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Responsive */
@media (max-width: 768px) {
    .legal-card { padding: 2.5rem 1.5rem; }
    .legal-card h1 { font-size: 2.2rem; }
    .back-home-btn { padding: 1rem 2rem; font-size: 0.8rem; }
}