/* Add spiritual validation message styles */
.spiritual-validation-message {
    color: #ff80ab;
    margin-top: 5px;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 128, 171, 0.5);
    animation: glow-text 2s ease-in-out infinite alternate;
}

@keyframes glow-text {
    0% { text-shadow: 0 0 5px rgba(255, 128, 171, 0.3); }
    100% { text-shadow: 0 0 15px rgba(255, 128, 171, 0.8); }
}

.validation-highlight {
    border-color: #ff80ab !important;
    box-shadow: 0 0 10px rgba(255, 128, 171, 0.5) !important;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #121212;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Background Styles */
.mystical-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 25, 50, 0.9) 0%, rgba(60, 10, 60, 0.85) 100%);
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-top: 20px;
    background: linear-gradient(45deg, #ff80ab, #ff4081);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2rem;
    color: #ff80ab;
}

h3 {
    font-size: 1.5rem;
    color: #ba68c8;
}

p {
    margin-bottom: 15px;
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.tagline {
    font-size: 1.2rem;
    color: #e1bee7;
    margin-bottom: 20px;
}

.spiritual-advisor-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.spiritual-advisor-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(186, 104, 200, 0.3) 0%, rgba(255, 64, 129, 0.3) 100%);
    color: #e1bee7;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(186, 104, 200, 0.5);
    transition: all 0.3s ease;
}

.spiritual-advisor-badge:hover {
    background: linear-gradient(135deg, rgba(186, 104, 200, 0.5) 0%, rgba(255, 64, 129, 0.5) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(186, 104, 200, 0.3);
}

.spiritual-advisor-badge i {
    color: #ff80ab;
    margin-right: 5px;
}

/* Main Content Styles */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card Styles */
.calculator-card, .results-card {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.7) 0%, rgba(60, 30, 90, 0.7) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(186, 104, 200, 0.3);
    margin-bottom: 30px;
}

.card-content {
    padding: 30px;
}

.full-width {
    width: 100%;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #e1bee7;
    font-weight: 500;
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(186, 104, 200, 0.5);
    border-radius: 8px;
    background-color: rgba(30, 30, 50, 0.4);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: #ba68c8;
    box-shadow: 0 0 10px rgba(186, 104, 200, 0.5);
    background-color: rgba(30, 30, 50, 0.6);
}

.date-fields-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.date-field {
    flex: 1;
}

/* Button Styles */
.btn-calculate, .btn-payment, .btn-subscribe {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin: 20px 0;
    text-decoration: none;
}

.primary-action {
    background: linear-gradient(135deg, #ba68c8 0%, #ff4081 100%);
    color: white;
}

.primary-action:hover {
    background: linear-gradient(135deg, #ce93d8 0%, #ff80ab 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(186, 104, 200, 0.5);
}

.secondary-action {
    color: #90caf9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-action:hover {
    color: #42a5f5;
    text-decoration: underline;
}

/* Animation Styles */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(186, 104, 200, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(186, 104, 200, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(186, 104, 200, 0);
    }
}

.btn-animation:hover {
    animation: none;
}

/* Results View Styles */
.hidden {
    display: none;
}

.compatibility-reveal {
    text-align: center;
    margin-bottom: 30px;
}

.compatibility-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ba68c8 0%, #ff4081 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 30px rgba(186, 104, 200, 0.7);
    position: relative;
    overflow: hidden;
}

.compatibility-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent 30%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.percent {
    font-size: 1.5rem;
    margin-left: 2px;
}

.reading-content {
    padding: 0 20px;
}

/* Preview Section Styles */
.preview-section {
    position: relative;
    margin: 30px 0;
    padding: 20px;
    background: rgba(30, 30, 50, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(186, 104, 200, 0.3);
    max-height: 300px;
    overflow: hidden;
}

.preview-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(30, 30, 50, 0) 0%, rgba(30, 30, 50, 0.9) 80%, rgba(30, 30, 50, 1) 100%);
    pointer-events: none;
}

.locked-content-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.lock-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ba68c8 0%, #ff4081 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 15px rgba(186, 104, 200, 0.7);
    transition: all 0.3s ease;
}

.lock-icon-link {
    text-decoration: none;
}

.lock-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.8);
}

/* Payment Options Styles */
.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.payment-option, .subscription-offer {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.7) 0%, rgba(60, 30, 90, 0.7) 100%);
    border-radius: 15px;
    border: 1px solid rgba(186, 104, 200, 0.3);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.payment-option:hover, .subscription-offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(186, 104, 200, 0.3);
    border-color: rgba(186, 104, 200, 0.6);
}

.featured {
    border: 2px solid rgba(255, 64, 129, 0.6);
    box-shadow: 0 5px 20px rgba(255, 64, 129, 0.2);
}

.best-value, .offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ba68c8 0%, #ff4081 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.smaller-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff80ab;
    margin: 15px 0;
}

.subscription-price {
    margin: 15px 0;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #ff80ab;
}

.price-subtext {
    font-size: 0.9rem;
    color: #e1bee7;
    margin-bottom: 20px;
}

.benefits-container {
    margin: 20px 0;
    text-align: left;
}

.centered-heading {
    text-align: center;
    margin-bottom: 15px;
    color: #e1bee7;
}

.centered-benefits {
    list-style: none;
    padding: 0;
}

.centered-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.centered-benefits li i {
    color: #ff80ab;
    margin-right: 10px;
    margin-top: 3px;
}

.benefit-text {
    flex: 1;
}

.subscription-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.subscription-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.subscription-features li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #ff80ab;
}

.feature-heart::before {
    content: "\f004";
}

.feature-moon::before {
    content: "\f186";
}

.feature-spa::before {
    content: "\f5bb";
}

.feature-star::before {
    content: "\f005";
}

/* Navigation Links */
.navigation-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.nav-link {
    color: #90caf9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #42a5f5;
    text-decoration: underline;
}

/* Testimonial Link */
.testimonial-link {
    text-align: center;
    margin: 20px 0;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    color: #9e9e9e;
    font-size: 0.9rem;
}

/* Dual Form Container */
.dual-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.person-form {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    background: rgba(30, 30, 50, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(186, 104, 200, 0.3);
}

.connection-symbol {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ff80ab;
}

/* Hearts Animation */
.hearts-animation {
    position: relative;
    height: 60px;
    margin: 20px 0;
    overflow: hidden;
}

.hearts-animation i {
    position: absolute;
    color: #ff80ab;
    opacity: 0;
    animation: float-hearts 6s infinite;
}

.heart-1 {
    left: 30%;
    font-size: 1.5rem;
    animation-delay: 0s !important;
}

.heart-2 {
    left: 50%;
    font-size: 2rem;
    animation-delay: 2s !important;
}

.heart-3 {
    left: 70%;
    font-size: 1.8rem;
    animation-delay: 4s !important;
}

@keyframes float-hearts {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    20% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    80% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    100% {
        bottom: 80px;
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
}

/* Audio Player Styles */
.audio-player-container {
    text-align: center;
    margin: 30px 0;
}

.crystal-ball-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    cursor: pointer;
    position: relative;
}

.crystal-ball {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(186, 104, 200, 0.4), rgba(60, 30, 90, 0.8));
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(186, 104, 200, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.crystal-ball-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), rgba(186, 104, 200, 0.1), rgba(60, 30, 90, 0.3));
}

.crystal-ball-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 70%);
    opacity: 0.3;
}

.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.energy-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 4s infinite;
}

.energy-particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.energy-particle:nth-child(2) {
    left: 40%;
    animation-delay: 0.5s;
}

.energy-particle:nth-child(3) {
    left: 60%;
    animation-delay: 1s;
}

.energy-particle:nth-child(4) {
    left: 80%;
    animation-delay: 1.5s;
}

.energy-particle:nth-child(5) {
    left: 30%;
    animation-delay: 2s;
}

.energy-particle:nth-child(6) {
    left: 50%;
    animation-delay: 2.5s;
}

.energy-particle:nth-child(7) {
    left: 70%;
    animation-delay: 3s;
}

.energy-particle:nth-child(8) {
    left: 25%;
    animation-delay: 3.5s;
}

.energy-particle:nth-child(9) {
    left: 45%;
    animation-delay: 0.2s;
}

.energy-particle:nth-child(10) {
    left: 65%;
    animation-delay: 0.7s;
}

.energy-particle:nth-child(11) {
    left: 85%;
    animation-delay: 1.2s;
}

.energy-particle:nth-child(12) {
    left: 35%;
    animation-delay: 1.7s;
}

@keyframes particle-float {
    0% {
        bottom: 0;
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        bottom: 80%;
        opacity: 0;
    }
}

.energy-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.energy-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    top: -50%;
    border-radius: 40%;
    background: rgba(186, 104, 200, 0.2);
    animation: rotate-wave 12s linear infinite;
}

.energy-wave:nth-child(2) {
    background: rgba(255, 64, 129, 0.2);
    animation-duration: 8s;
}

.energy-wave:nth-child(3) {
    background: rgba(156, 39, 176, 0.2);
    animation-duration: 10s;
}

.energy-wave:nth-child(4) {
    background: rgba(103, 58, 183, 0.2);
    animation-duration: 14s;
}

.energy-wave:nth-child(5) {
    background: rgba(233, 30, 99, 0.2);
    animation-duration: 16s;
}

@keyframes rotate-wave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.audio-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.playing .audio-waves {
    opacity: 1;
}

.audio-wave {
    width: 3px;
    height: 20px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 0.7);
    animation: audio-wave 1.2s ease-in-out infinite;
    border-radius: 2px;
}

.audio-wave:nth-child(2) {
    animation-delay: 0.1s;
}

.audio-wave:nth-child(3) {
    animation-delay: 0.2s;
}

.audio-wave:nth-child(4) {
    animation-delay: 0.3s;
}

.audio-wave:nth-child(5) {
    animation-delay: 0.4s;
}

.audio-wave:nth-child(6) {
    animation-delay: 0.5s;
}

.audio-wave:nth-child(7) {
    animation-delay: 0.6s;
}

.audio-wave:nth-child(8) {
    animation-delay: 0.7s;
}

.audio-wave:nth-child(9) {
    animation-delay: 0.8s;
}

@keyframes audio-wave {
    0%, 100% {
        height: 10px;
    }
    50% {
        height: 30px;
    }
}

.audio-message-title {
    color: #e1bee7;
    font-size: 1.1rem;
    margin-top: 10px;
}

.audio-paused .audio-waves {
    opacity: 0;
}

.crystal-hover {
    box-shadow: 0 0 40px rgba(255, 64, 129, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

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

.animated-text {
    animation: text-glow 3s ease-in-out infinite alternate;
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 5px rgba(186, 104, 200, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(186, 104, 200, 0.8);
    }
}

.main-message {
    text-align: center;
    font-size: 1.1rem;
    color: #e1bee7;
    margin: 20px 0;
    line-height: 1.8;
}

.sensei-message {
    font-style: italic;
}

/* CTA Video Container */
.cta-video-container {
    margin: 30px 0;
    text-align: center;
}

/* Highlight Animation */
.highlight-animation {
    animation: highlight-pulse 2s ease-in-out;
}

@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 64, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .date-fields-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .dual-form-container {
        flex-direction: column;
    }
    
    .connection-symbol {
        margin: 10px 0;
    }
    
    .compatibility-circle {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
}

/* Links should be light green */
a {
    color: #8bc34a;
    transition: all 0.3s ease;
}

a:hover {
    color: #aed581;
    text-decoration: underline;
}

.nav-link {
    color: #8bc34a;
}

.nav-link:hover {
    color: #aed581;
}
