/* 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(90, 40, 140, 0.6) 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, #d4af37, #f8e9a1, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    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(212, 175, 55, 0.4);
    flex: 1;
    backdrop-filter: blur(5px);
}

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

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

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

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

.sensei-message {
    font-style: italic;
    border-left: 3px solid #b83dcc;
    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(184, 61, 204, 0.15);
    box-shadow: 0 0 15px rgba(184, 61, 204, 0.3);
    font-style: normal;
    letter-spacing: 0.5px;
}

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

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

.date-field {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #d4af37;
    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: 1px solid #5a3a8a;
    border-radius: 8px;
    background-color: rgba(30, 30, 50, 0.7);
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: #b83dcc;
    box-shadow: 0 0 8px rgba(184, 61, 204, 0.5);
}

.btn-calculate {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #b83dcc 0%, #7d3cb7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    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, #cc4de0 0%, #8f45d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 61, 204, 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(212, 175, 55, 0.4);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
}

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

.number-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b83dcc 0%, #7d3cb7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(184, 61, 204, 0.6);
}

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

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

.centered-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

/* 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(184, 61, 204, 0.4) 40%, 
                rgba(90, 40, 140, 0.6) 80%);
    box-shadow: 0 0 30px rgba(184, 61, 204, 0.6), 
                inset 0 0 20px rgba(255, 255, 255, 0.5),
                0 0 40px rgba(212, 175, 55, 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(212, 175, 55, 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: #d4af37;
    opacity: 0;
    animation: particle-float 3s ease-in-out infinite;
}

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

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

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

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

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

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

.energy-particle:nth-child(7) {
    top: 80%;
    left: 80%;
    background: #b83dcc;
    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(212, 175, 55, 0.5);
    opacity: 0;
    animation: wave-expand 3s ease-out infinite;
}

.energy-wave:nth-child(1) {
    animation-delay: 0s;
    border-color: rgba(212, 175, 55, 0.5);
}

.energy-wave:nth-child(2) {
    animation-delay: 0.5s;
    border-color: rgba(184, 61, 204, 0.5);
}

.energy-wave:nth-child(3) {
    animation-delay: 1s;
    border-color: rgba(212, 175, 55, 0.5);
}

.energy-wave:nth-child(4) {
    animation-delay: 1.5s;
    border-color: rgba(184, 61, 204, 0.5);
}

.energy-wave:nth-child(5) {
    animation-delay: 2s;
    border-color: rgba(212, 175, 55, 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(212, 175, 55, 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: #d4af37;
    margin: 10px 0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Email Capture Styles */
.email-capture-container {
    width: 100%;
    max-width: 450px;
    margin: 15px auto;
    position: relative;
}

.email-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    position: relative;
}

#pdfEmail {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #5a3a8a;
    background-color: rgba(30, 30, 50, 0.7);
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.download-link {
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(184, 61, 204, 0.8) 0%, rgba(125, 60, 183, 0.8) 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
}

.download-link:hover {
    background: linear-gradient(135deg, rgba(184, 61, 204, 1) 0%, rgba(125, 60, 183, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.download-icon {
    margin-right: 10px;
    font-size: 1.1rem;
}

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

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

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

/* Offers Section */
.offers-section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 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: 12px;
    padding: 25px;
    margin-bottom: 20px;
    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);
}

.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%, #ff4081 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.love-reading-offer h3 {
    color: #e91e63;
    margin-top: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
}

.love-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 15px 0;
}

.btn-love {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.btn-love:hover {
    background: linear-gradient(135deg, #f06292 0%, #ff80ab 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.5);
}

/* Subscription Offer Styles */
.subscription-offer {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.6) 0%, rgba(60, 30, 90, 0.6) 100%);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    border: 1px solid #d4af37;
    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="%23d4af37" stroke-width="1" opacity="0.2"/><circle cx="100" cy="100" r="50" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"/><path d="M50,50 L150,150 M50,150 L150,50" stroke="%23d4af37" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.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, #b83dcc 0%, #7d3cb7 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.subscription-offer h3 {
    color: #d4af37;
    margin-top: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
}

.subscription-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 15px 0 5px;
}

.price-highlight {
    font-size: 2.5rem;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.price-subtext {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 20px;
    font-style: italic;
}

.subscription-price span {
    font-size: 1rem;
    opacity: 0.9;
}

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

.subscription-features li {
    padding: 8px 0 8px 35px;
    position: relative;
    color: #ffffff;
    margin-bottom: 10px;
}

.subscription-features li::before {
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 900;
}

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

.feature-sun::before {
    content: "\f185"; /* sun */
}

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

.feature-compass::before {
    content: "\f14e"; /* compass */
}

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

.btn-subscribe {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #b83dcc 0%, #7d3cb7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.btn-subscribe:hover {
    background: linear-gradient(135deg, #cc4de0 0%, #8f45d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 61, 204, 0.5);
}

/* Newsletter Signup Styles */
.newsletter-signup {
    margin-top: 30px;
    padding: 25px;
    background: rgba(30, 30, 50, 0.6);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.newsletter-signup h3 {
    color: #d4af37;
    margin-top: 0;
    font-size: 1.3rem;
}

.newsletter-signup p {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 0.95rem;
}

.newsletter-signup .form-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-signup input[type="email"] {
    flex: 1;
}

.btn-secondary {
    padding: 14px 20px;
    background: linear-gradient(135deg, #b83dcc 0%, #7d3cb7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #cc4de0 0%, #8f45d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 61, 204, 0.5);
}

/* Payment Option Styles */
.payment-option {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.6) 0%, rgba(60, 30, 90, 0.6) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #d4af37;
    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="%23d4af37" stroke-width="1" opacity="0.2"/><circle cx="100" cy="100" r="50" fill="none" stroke="%23d4af37" stroke-width="1" opacity="0.1"/><path d="M50,50 L150,150 M50,150 L150,50" stroke="%23d4af37" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.payment-option.featured {
    border-width: 2px;
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37 0%, #f8e9a1 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.payment-option h3 {
    color: #d4af37;
    margin-top: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
}

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

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

.payment-option li {
    padding: 8px 0 8px 35px;
    position: relative;
    color: #ffffff;
    margin-bottom: 10px;
}

.payment-option li::before {
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 900;
}

.feature-crystal::before {
    content: "\f3a5"; /* gem */
}

.feature-lotus::before {
    content: "\f4d8"; /* seedling */
}

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

.feature-eye::before {
    content: "\f06e"; /* eye */
}

.feature-pdf::before {
    content: "\f1c1"; /* file-pdf */
}

.btn-payment {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #b83dcc 0%, #7d3cb7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.btn-payment:hover {
    background: linear-gradient(135deg, #cc4de0 0%, #8f45d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 61, 204, 0.5);
}

/* Sacred Gift Styles */
.sacred-gift-container {
    margin: 30px 0;
    padding: 20px;
    background: rgba(20, 20, 40, 0.5);
    border-radius: 10px;
    position: relative;
    border-left: 4px solid #d4af37;
    text-align: left;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,50 L80,50 M50,20 L50,80" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/><path d="M30,30 L70,70 M30,70 L70,30" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    background-position: center;
}

.sacred-gift-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: rgba(212, 175, 55, 0.3) transparent transparent transparent;
    border-top-left-radius: 10px;
}

.sacred-gift-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sacred-gift-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f8e9a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.sacred-gift-icon i {
    color: #333;
    font-size: 1.2rem;
}

.sacred-gift-title h4 {
    color: #d4af37;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.sacred-gift-container p {
    color: #ffffff;
    margin: 10px 0;
    font-size: 0.95rem;
}

.sacred-gift-note {
    font-style: italic;
    font-size: 0.85rem !important;
    opacity: 0.8;
}

/* Bonus Badge */
.bonus-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f8e9a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    transform: rotate(15deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: pulse-bonus 2s infinite;
}

@keyframes pulse-bonus {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

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

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

.testimonial-link a:hover {
    color: #8cd152;
    border-bottom: 1px solid #8cd152;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Animation Classes */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(184, 61, 204, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(184, 61, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 61, 204, 0); }
}

.highlight-animation {
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 30px 5px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
}

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

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
    100% { text-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
}

.btn-animation {
    position: relative;
    overflow: hidden;
}

.btn-animation::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -50%; opacity: 0; }
    10% { left: -50%; opacity: 1; }
    60% { left: 150%; opacity: 1; }
    61% { opacity: 0; }
    100% { left: 150%; opacity: 0; }
}

.primary-action {
    position: relative;
    z-index: 1;
}

.secondary-action {
    position: relative;
    z-index: 1;
}

/* Trusted Advisor Badge */
.trusted-advisor-badge {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(20, 20, 40, 0.7);
    border: 1px solid #d4af37;
    border-radius: 30px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trusted-advisor-badge:hover {
    background: rgba(30, 30, 50, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.trusted-advisor-badge i {
    margin-right: 5px;
    color: #d4af37;
}

/* Crystal Ball Hover Effect */
.crystal-hover {
    box-shadow: 0 0 40px rgba(184, 61, 204, 0.8), 
                inset 0 0 30px rgba(255, 255, 255, 0.6),
                0 0 50px rgba(212, 175, 55, 0.5);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .offers-section {
        flex-direction: row;
        align-items: stretch;
        flex-wrap: wrap;
    }
    
    .love-reading-offer {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .subscription-offer, .payment-option {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .btn-subscribe, .btn-payment, .btn-love {
        margin-top: auto;
    }
    
    .newsletter-signup .form-group {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .main-message {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .crystal-ball-container {
        width: 150px;
        height: 150px;
    }
    
    .date-fields-container {
        flex-direction: row;
    }
    
    .email-input-group {
        flex-direction: column;
    }
    
    .navigation-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .subscription-offer, .payment-option, .love-reading-offer {
        margin-bottom: 30px;
    }
    
    .sacred-gift-title {
        flex-direction: column;
        text-align: center;
    }
    
    .sacred-gift-icon {
        margin: 0 auto 10px;
    }
    
    .bonus-badge {
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
        right: -10px;
        top: -10px;
    }
}

/* Sticky header for mobile */
@media (max-width: 767px) {
    header {
        position: sticky;
        top: 0;
        background: rgba(10, 10, 26, 0.9);
        z-index: 100;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding: 10px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        margin-top: 5px;
    }
    
    .trusted-advisor-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}
