:root {
    --primary: #ff0055;
    --primary-glow: rgba(255, 0, 85, 0.5);
    --bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.7);
    --text: #ffffff;
    --text-dim: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hintergrund Video / Bild Fix */
#bg-video {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

/* Landing Page Hero & Pricing */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

.pricing-grid {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
}

.price-card {
    width: 300px;
    transition: transform 0.3s ease;
}

.price-card:hover { transform: translateY(-10px); }

.price-card.premium { border: 1px solid var(--primary); box-shadow: 0 0 20px var(--primary-glow); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-primary { background: var(--primary); color: white; box-shadow: 0 0 15px var(--primary-glow); }
.btn-primary:hover { opacity: 0.8; }

/* Dashboard Inputs */
input, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
}

/* Profile Elements */
.profile-avatar {
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-bottom: 1rem;
}

.badge-verified {
    color: #00d4ff;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px #00d4ff);
}