/* Crystal Reel Casino — distinct visual system */

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.animate-float-soft {
    animation: float-soft 7s ease-in-out infinite;
}

.crystal-card {
    background: linear-gradient(145deg, rgba(30, 20, 50, 0.7) 0%, rgba(15, 10, 28, 0.85) 100%);
    border: 1px solid rgba(167, 139, 250, 0.15);
    box-shadow: 0 4px 40px rgba(124, 58, 237, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.crystal-card-highlight {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.12) 0%, rgba(30, 20, 50, 0.6) 100%);
    border: 1px solid rgba(167, 139, 250, 0.25);
    box-shadow: 0 8px 48px rgba(124, 58, 237, 0.15);
}

.text-gradient-crystal {
    background: linear-gradient(135deg, #e9d5ff 0%, #a78bfa 40%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-silver {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 50%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-crystal {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.35);
    transition: all 0.3s ease;
}

.btn-crystal:hover {
    box-shadow: 0 6px 32px rgba(124, 58, 237, 0.5);
    transform: translateY(-1px);
}

.btn-outline-crystal {
    border: 1px solid rgba(167, 139, 250, 0.35);
    background: rgba(124, 58, 237, 0.06);
    transition: all 0.3s ease;
}

.btn-outline-crystal:hover {
    background: rgba(124, 58, 237, 0.14);
    border-color: rgba(167, 139, 250, 0.55);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.3), transparent);
}

.facet-bg {
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.prose-crystal h3 {
    color: #e9d5ff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose-crystal p {
    color: #a1a1aa;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.prose-crystal strong {
    color: #e4e4e7;
}
