/* Custom CSS for Tarot Theme */
:root {
    --mystical-purple: #2D1B69;
    --deep-purple: #1a0b3d;
    --gold-accent: #FFD700;
    --cosmic-blue: #4a5568;
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --mystical-glow: rgba(255, 215, 0, 0.3);
}

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--mystical-purple) 50%, #1a202c 100%);
    color: #f7fafc;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-accent);
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.tarot-card {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border: 2px solid var(--gold-accent);
    box-shadow:
        0 10px 30px var(--shadow-dark),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tarot-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 40px var(--shadow-dark),
        0 0 20px var(--mystical-glow);
}

.mystical-title {
    font-family: 'Cinzel', serif;
    background: linear-gradient(45deg, var(--gold-accent), #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.cosmic-glow {
    box-shadow: 0 0 30px var(--mystical-glow);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Floating particles animation */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-purple);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 4px;
}

/* ElevenLabs widget styling override */
elevenlabs-convai {
    border-radius: 15px !important;
    box-shadow: 0 0 30px var(--mystical-glow) !important;
}