/* Shared Styles for Dream Vibe */
:root {
    --dream-primary: #f0f4ff;
    --dream-accent: #a5b4fc;
    --dream-text: #374151;
    --dream-soft-purple: #e0e7ff;
    --dream-soft-blue: #dbeafe;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    color: var(--dream-text);
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.dream-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.dream-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.9);
}

.cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(165, 180, 252, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    position: fixed;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2rem;
}

.btn-primary {
    background: #a5b4fc;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #818cf8;
    box-shadow: 0 10px 15px -3px rgba(165, 180, 252, 0.4);
}

.tool-header {
    margin-bottom: 3rem;
}

.tool-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tool-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

