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

body {
    font-family: 'Playfair Display', serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

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

.energy-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4B0082, #8A2BE2, #6A0DAD);
    background-size: 400% 400%;
    animation: energyFlow 15s ease infinite;
    opacity: 0.7;
}

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

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #8A2BE2, transparent),
        radial-gradient(2px 2px at 40px 70px, #4B0082, transparent),
        radial-gradient(1px 1px at 90px 40px, #8A2BE2, transparent),
        radial-gradient(1px 1px at 130px 80px, #4B0082, transparent),
        radial-gradient(2px 2px at 160px 30px, #8A2BE2, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 60s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('assets/background/metatrons_cube.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    animation: geometryRotate 120s linear infinite;
}

@keyframes geometryRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* Header Styles */
header {
    text-align: center;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.main-headline {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #E6E6FA;
    text-shadow: 0 0 20px #8A2BE2, 0 0 40px #4B0082;
    margin-bottom: 30px;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from { text-shadow: 0 0 20px #8A2BE2, 0 0 40px #4B0082; }
    to { text-shadow: 0 0 30px #8A2BE2, 0 0 60px #4B0082, 0 0 80px #6A0DAD; }
}

.sub-headline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #E6E6FA;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #E6E6FA;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 10px #8A2BE2;
}

/* Testimonials Section */
#testimonials-section {
    background: rgba(75, 0, 130, 0.1);
    backdrop-filter: blur(5px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #8A2BE2;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #8A2BE2;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #E6E6FA;
}

.testimonial-card cite {
    color: #E6E6FA;
    font-weight: 600;
    font-size: 1rem;
}

/* Hyper Promise Section */
#hyper-promise-section {
    background: rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(5px);
}

.promise-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promise-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #E6E6FA;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #8A2BE2;
}

.promise-subtitle {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #FF6347;
    margin-bottom: 30px;
    font-weight: 600;
}

.promise-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 25px;
    color: #E6E6FA;
}

.highlight {
    background: linear-gradient(45deg, #8A2BE2, #6A0DAD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem) !important;
}

/* Benefits Section */
#what-you-get-section {
    background: rgba(0, 0, 0, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: rgba(75, 0, 130, 0.2);
    border: 1px solid #8A2BE2;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #8A2BE2;
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
}

.benefit-item h4 {
    color: #E6E6FA;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Spiritual Promises Section */
#spiritual-promises-section {
    background: rgba(138, 43, 226, 0.1);
}

.spiritual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spiritual-item {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #8A2BE2;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.spiritual-item:hover {
    transform: translateY(-5px);
    border-color: #8A2BE2;
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.spiritual-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #8A2BE2;
}

.spiritual-item h4 {
    color: #E6E6FA;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Offer Section */
#offer-cta-section {
    background: rgba(0, 0, 0, 0.9);
    padding: 80px 0;
}

.offer-box {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.3), rgba(138, 43, 226, 0.3));
    border: 3px solid #8A2BE2;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #8A2BE2, transparent);
    animation: borderRotate 4s linear infinite;
    z-index: -1;
}

@keyframes borderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #E6E6FA;
    margin-bottom: 40px;
    text-shadow: 0 0 20px #8A2BE2;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #8A2BE2;
}

.feature-icon {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.feature-item span {
    color: #E6E6FA;
    font-weight: 600;
}

.price-section {
    margin-top: 40px;
}

.limited-time {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #FF6347;
    font-weight: 700;
    margin-bottom: 30px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #8A2BE2, #6A0DAD);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 15px;
    border: 3px solid #8A2BE2;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 20px #8A2BE2; }
    50% { box-shadow: 0 0 40px #8A2BE2, 0 0 60px #6A0DAD; }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.5);
}

.cta-subtitle {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 600;
}

.security-text {
    margin-top: 20px;
    color: #90EE90;
    font-size: 1rem;
    font-weight: 600;
}

/* Micro Copy Section */
#micro-copy-section {
    background: rgba(75, 0, 130, 0.2);
    padding: 40px 0;
}

.micro-copy {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.micro-copy p {
    font-size: 1.1rem;
    color: #E6E6FA;
    font-style: italic;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #8A2BE2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-nav a:hover {
    color: #6A0DAD;
    text-shadow: 0 0 10px #8A2BE2;
}

.copyright {
    color: #8A2BE2;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d1b69);
    margin: auto;
    padding: 40px;
    border: 2px solid #8A2BE2;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    position: relative;
    border-radius: 15px;
    color: #fff;
}

.close-button {
    color: #8A2BE2;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover {
    color: #6A0DAD;
    text-shadow: 0 0 10px #8A2BE2;
}

#modal-title {
    color: #8A2BE2;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

#modal-body {
    line-height: 1.6;
    color: #E6E6FA;
}

#modal-body h4 {
    color: #8A2BE2;
    margin-top: 20px;
    margin-bottom: 10px;
}

#modal-body p {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .spiritual-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    header {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .modal-content {
        padding: 20px;
        width: 95%;
    }
}

