/* Main Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #0a0a1a;
    min-height: 100vh;
    position: relative;
}

.mystical-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.mystical-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.7) 0%, rgba(60, 30, 90, 0.4) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin: 0;
    background: linear-gradient(to right, #9c27b0, #ba68c8, #9c27b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
}

.tagline {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Improved Trusted Advisor Badge */
.trusted-advisor-badge {
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(106, 27, 154, 0.2) 100%);
    border: none;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 15px;
}

.trusted-advisor-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(106, 27, 154, 0.1) 100%);
    border-radius: 50px;
    opacity: 0.5;
    z-index: -1;
    animation: pulse-badge 3s infinite alternate;
}

.trusted-advisor-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9c27b0 0%, #6a1b9a 100%);
    border-radius: 50px;
    z-index: -2;
    opacity: 0.3;
    filter: blur(3px);
}

.trusted-advisor-badge i {
    margin-right: 8px;
    color: #9c27b0;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.8);
}

@keyframes pulse-badge {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-card {
    background: rgba(20, 20, 40, 0.75);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 39, 176, 0.4);
    flex: 1;
    backdrop-filter: blur(5px);
}

.full-width {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.card-content {
    max-width: 100%;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-top: 0;
    color: #9c27b0;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

h3 {
    color: #9c27b0;
    margin-top: 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

h4 {
    color: #9c27b0;
    margin: 15px 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.sensei-message {
    font-style: italic;
    border-left: 3px solid #9c27b0;
    padding-left: 15px;
    margin: 20px 0;
    color: #ffffff;
}

.main-message {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    padding: 20px 25px;
    margin: 25px auto;
    max-width: 90%;
    border-left: none;
    border-radius: 10px;
    background: rgba(156, 39, 176, 0.15);
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.3);
    font-style: normal;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.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;
}

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

.date-field {
    flex: 1;
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #9c27b0;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

input[type="text"],
input[type="date"],
input[type="email"] {
    width: 100%;
    padding: 14px;
    border: none;
    border-bottom: 2px solid rgba(156, 39, 176, 0.6);
    border-radius: 0;
    background-color: rgba(30, 30, 50, 0.4);
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="email"]:focus {
    outline: none;
    border-bottom: 2px solid #ba68c8;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
    background-color: rgba(30, 30, 50, 0.6);
}

input[type="text"]::placeholder,
input[type="date"]::placeholder,
input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Custom validation message styling */
input:invalid {
    box-shadow: none;
}

/* Style for the validation message */
input:invalid:required:not(:focus):not(:placeholder-shown) {
    border-bottom: 2px solid rgba(233, 30, 99, 0.8);
}

/* Override browser's default validation message */
input::-webkit-validation-bubble-message,
input::-webkit-validation-bubble,
input::-webkit-validation-bubble-arrow-clipper,
input::-webkit-validation-bubble-arrow,
input::-webkit-validation-bubble-icon {
    display: none;
}

/* Enhanced spiritual validation message */
.form-group::after,
.date-field::after {
    content: attr(data-validation-message);
    display: none;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(233, 30, 99, 0.2) 100%);
    border-radius: 20px;
    padding: 10px 18px;
    margin-top: 10px;
    font-style: italic;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    animation: glow-validation 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 5;
}

.form-group::after {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.3) 0%, rgba(233, 30, 99, 0.3) 100%);
}

@keyframes glow-validation {
    0% { box-shadow: 0 0 5px rgba(233, 30, 99, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 0 0 15px rgba(233, 30, 99, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.2); }
}

.form-group.show-validation::after,
.date-field.show-validation::after {
    display: block;
}

.btn-calculate {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-calculate:hover {
    background: linear-gradient(135deg, #ab47bc 0%, #ce93d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.5);
}

.hidden {
    display: none;
}

/* Results Styles */
.results-card {
    background: rgba(20, 20, 40, 0.75);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(156, 39, 176, 0.4);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
}

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

.number-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.6);
}

.reading-content {
    margin-bottom: 30px;
}

.reading-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.05rem;
}

/* Audio Player Styles */
.audio-player-container {
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    text-align: center;
}

.crystal-ball-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.crystal-ball-container:hover {
    transform: scale(1.05);
}

.crystal-ball {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
                rgba(255, 255, 255, 0.9) 0%, 
                rgba(156, 39, 176, 0.4) 40%, 
                rgba(90, 40, 140, 0.6) 80%);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.6), 
                inset 0 0 20px rgba(255, 255, 255, 0.5),
                0 0 40px rgba(156, 39, 176, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal-ball::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 30% 30%, 
                rgba(255, 255, 255, 0.8) 0%, 
                rgba(255, 255, 255, 0.1) 20%, 
                transparent 60%);
    opacity: 0.7;
    animation: rotate 20s linear infinite;
}

.crystal-ball::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, 
                rgba(156, 39, 176, 0.3) 0%, 
                transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

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

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.energy-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9c27b0;
    opacity: 0;
    animation: particle-float 3s ease-in-out infinite;
}

.energy-particle:nth-child(1) {
    top: 20%;
    left: 50%;
    background: #9c27b0;
    animation-delay: 0.2s;
}

.energy-particle:nth-child(2) {
    top: 30%;
    left: 30%;
    background: #9c27b0;
    animation-delay: 0.5s;
}

.energy-particle:nth-child(3) {
    top: 70%;
    left: 40%;
    background: #6a1b9a;
    animation-delay: 0.8s;
}

.energy-particle:nth-child(4) {
    top: 40%;
    left: 70%;
    background: #6a1b9a;
    animation-delay: 1.1s;
}

.energy-particle:nth-child(5) {
    top: 60%;
    left: 60%;
    background: #9c27b0;
    animation-delay: 1.4s;
}

.energy-particle:nth-child(6) {
    top: 50%;
    left: 20%;
    background: #9c27b0;
    animation-delay: 1.7s;
}

.energy-particle:nth-child(7) {
    top: 80%;
    left: 80%;
    background: #6a1b9a;
    animation-delay: 2s;
}

@keyframes particle-float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 0.8;
    }
    50% {
        transform: translate(10px, -20px) scale(1.5);
        opacity: 1;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        transform: translate(20px, -40px) scale(0.8);
        opacity: 0;
    }
}

.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 50%;
    border: 2px solid rgba(156, 39, 176, 0.5);
    opacity: 0;
    animation: wave-expand 3s ease-out infinite;
}

.energy-wave:nth-child(1) {
    animation-delay: 0s;
    border-color: rgba(156, 39, 176, 0.5);
}

.energy-wave:nth-child(2) {
    animation-delay: 0.5s;
    border-color: rgba(106, 27, 154, 0.5);
}

.energy-wave:nth-child(3) {
    animation-delay: 1s;
    border-color: rgba(156, 39, 176, 0.5);
}

.energy-wave:nth-child(4) {
    animation-delay: 1.5s;
    border-color: rgba(106, 27, 154, 0.5);
}

.energy-wave:nth-child(5) {
    animation-delay: 2s;
    border-color: rgba(156, 39, 176, 0.5);
}

@keyframes wave-expand {
    0% {
        width: 0%;
        height: 0%;
        opacity: 0.8;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

.audio-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    z-index: 2;
}

.audio-wave {
    width: 3px;
    background-color: rgba(156, 39, 176, 0.8);
    height: 5px;
    border-radius: 1px;
    animation: wave 1.2s infinite ease-in-out;
}

.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 wave {
    0%, 100% { height: 5px; }
    50% { height: 20px; }
}

.audio-paused .audio-wave {
    animation-play-state: paused;
}

.audio-message-title {
    font-size: 1.1rem;
    color: #9c27b0;
    margin: 10px 0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
}

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

.nav-link {
    color: #8bc34a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px dashed #8bc34a;
    padding-bottom: 2px;
}

.nav-link:hover {
    color: #aed581;
    border-bottom: 1px solid #aed581;
}

/* Offers Section */
.offers-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

/* Payment Option */
.payment-option {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.6) 0%, rgba(60, 30, 90, 0.6) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(156, 39, 176, 0.4);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M20,100 Q50,50 100,100 T180,100" fill="none" stroke="%239c27b0" stroke-width="1" opacity="0.2"/><circle cx="100" cy="100" r="50" fill="none" stroke="%239c27b0" stroke-width="1" opacity="0.1"/><path d="M50,50 L150,150 M50,150 L150,50" stroke="%239c27b0" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    order: 1;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.featured {
    border: 2px solid rgba(156, 39, 176, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(156, 39, 176, 0.3);
}

.best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 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);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ba68c8;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
}

.payment-option ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

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

.feature-crystal::before,
.feature-lotus::before,
.feature-soul::before,
.feature-eye::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #ba68c8;
}

.feature-crystal::before { content: "\f3a5"; }
.feature-lotus::before { content: "\f5bb"; }
.feature-soul::before { content: "\f5dc"; }
.feature-eye::before { content: "\f06e"; }

.icon-highlight {
    color: #e1bee7;
}

.btn-payment {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-payment:hover {
    background: linear-gradient(135deg, #ab47bc 0%, #ce93d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.5);
}

/* Subscription Offer */
.subscription-offer {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.6) 0%, rgba(60, 30, 90, 0.6) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(156, 39, 176, 0.4);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="%239c27b0" stroke-width="1" opacity="0.1"/><circle cx="100" cy="100" r="40" fill="none" stroke="%239c27b0" stroke-width="1" opacity="0.1"/><path d="M30,100 h140 M100,30 v140" stroke="%239c27b0" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    order: 2;
}

.subscription-offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 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);
}

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

.price-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ba68c8;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
}

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

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

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

.feature-moon::before,
.feature-sun::before,
.feature-star::before,
.feature-spa::before,
.feature-compass::before,
.feature-journal::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #ba68c8;
}

.feature-moon::before { content: "\f186"; }
.feature-sun::before { content: "\f185"; }
.feature-star::before { content: "\f005"; }
.feature-spa::before { content: "\f5bb"; }
.feature-compass::before { content: "\f14e"; }
.feature-journal::before { content: "\f02d"; }

.btn-subscribe {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-subscribe:hover {
    background: linear-gradient(135deg, #ab47bc 0%, #ce93d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.5);
}

/* Love Reading Offer */
.love-reading-offer {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.6) 0%, rgba(60, 30, 90, 0.6) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e91e63;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M20,100 Q50,50 100,100 T180,100" fill="none" stroke="%23e91e63" stroke-width="1" opacity="0.2"/><circle cx="100" cy="100" r="50" fill="none" stroke="%23e91e63" stroke-width="1" opacity="0.1"/><path d="M50,50 L150,150 M50,150 L150,50" stroke="%23e91e63" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    order: 3;
}

.love-reading-offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.love-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e91e63 0%, #f48fb1 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);
}

.love-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f48fb1;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
}

.love-reading-offer ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.love-reading-offer li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.feature-heart::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #f48fb1;
    content: "\f004";
}

/* Love Compatibility Link */
.love-compatibility-link-container {
    text-align: center;
    margin: 20px 0;
}

.love-compatibility-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(30, 30, 50, 0.6);
    color: #8bc34a;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.love-compatibility-link:hover {
    background: rgba(30, 30, 50, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.love-compatibility-link i {
    margin: 0 5px;
    color: #e91e63;
}

.free-love-reading-container {
    margin-top: 15px;
}

.free-love-reading-link {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    background: rgba(30, 30, 50, 0.6);
    color: #8bc34a;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.3);
    font-size: 0.9rem;
}

.free-love-reading-link:hover {
    background: rgba(30, 30, 50, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.free-love-reading-link i {
    margin: 0 5px;
    color: #e91e63;
}

/* Sacred Gift Section */
.sacred-gift-container {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.6) 0%, rgba(60, 30, 90, 0.6) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid rgba(156, 39, 176, 0.4);
}

.sacred-gift-title {
    margin-bottom: 15px;
}

.sacred-gift-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.6) 0%, rgba(60, 30, 90, 0.6) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid rgba(156, 39, 176, 0.4);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px;
    border: none;
    border-bottom: 2px solid rgba(156, 39, 176, 0.6);
    border-radius: 0;
    background-color: rgba(30, 30, 50, 0.4);
    color: #fff;
    font-size: 1rem;
}

.btn-newsletter {
    padding: 14px 20px;
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #ab47bc 0%, #ce93d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.5);
}

/* Numerology Symbols Animation */
.numerology-symbols-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
}

.numerology-symbol {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #ba68c8;
    opacity: 0.7;
    animation: float-symbol 8s ease-in-out infinite;
}

@keyframes float-symbol {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .main-message {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .calculator-card, .results-card {
        padding: 20px;
    }
    
    .date-fields-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .offers-section {
        flex-direction: column;
    }
    
    .payment-option, .subscription-offer, .love-reading-offer {
        max-width: 100%;
    }
    
    .crystal-ball-container {
        width: 150px;
        height: 150px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .btn-newsletter {
        margin-top: 10px;
        width: 100%;
    }
    
    .navigation-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Hot Links */
.hot-link {
    color: #8bc34a;
}

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