/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #0F172A;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.95) 0%, rgba(236, 72, 153, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(107, 70, 193, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    text-decoration: none;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.5));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.8));
    }
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F59E0B;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #F59E0B;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('./img/qVt3Yv.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8) 0%, rgba(236, 72, 153, 0.8) 50%, rgba(245, 158, 11, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: #F3F4F6;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, #EC4899 0%, #6B46C1 100%);
}

/* Stars Decoration */
.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F59E0B;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out;
}

/* Why Us Section */
.why-us {
    background-color: #1E3A8A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeInUp 1s ease-out;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #F59E0B;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

/* Horoscopes Section */
.horoscopes-section {
    background: #0F172A;
}

.horoscopes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.horoscope-card {
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeInUp 1s ease-out;
}

.horoscope-card:hover {
    transform: translateY(-10px);
    border-color: #F59E0B;
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.4);
}

.horoscope-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.horoscope-content {
    padding: 2rem;
}

.horoscope-card h3 {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.horoscope-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #EC4899;
    margin: 1rem 0;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

/* Testimonials Section */
.testimonials {
    background-color: #1E3A8A;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    padding: 2rem;
    border-radius: 20px;
    animation: fadeInUp 1s ease-out;
}

.stars {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background: #0F172A;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #F59E0B;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '+';
    float: right;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::before {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(107, 70, 193, 0.2);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: #F3F4F6;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #6B46C1, #EC4899, #F59E0B) 1;
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.4);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #F59E0B;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(107, 70, 193, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #F3F4F6;
}

.checkbox-group a {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background-color: #1E3A8A;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #6B46C1, #EC4899, #F59E0B) 1;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #FFFFFF;
}

.contact-info a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Footer */
.main-footer {
    background-color: #0F172A;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(107, 70, 193, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

.footer-section p a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section p a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 70, 193, 0.3);
    color: #F3F4F6;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.95) 0%, rgba(236, 72, 153, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(107, 70, 193, 0.3);
    z-index: 10000;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #FFFFFF;
}

.cookie-content a {
    color: #FFFFFF;
    text-decoration: underline;
}

.btn-accept {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

/* Policy Pages */
.policy-page {
    min-height: 100vh;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #6B46C1, #EC4899, #F59E0B) 1;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.policy-container h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.policy-container h2 {
    color: #F59E0B;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-container p,
.policy-container ul,
.policy-container ol {
    color: #F3F4F6;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-container ul,
.policy-container ol {
    margin-left: 2rem;
}

.policy-container li {
    margin-bottom: 0.5rem;
}

.policy-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(107, 70, 193, 0.3);
}

.policy-contact h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
}

.thank-you-content {
    max-width: 600px;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #6B46C1, #EC4899, #F59E0B) 1;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.thank-you-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.thank-you-content p a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thank-you-content p a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.policy-contact a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-contact a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Simple Pages (About, Blog, Tips) */
.simple-page {
    min-height: 100vh;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.simple-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #6B46C1, #EC4899, #F59E0B) 1;
    box-shadow: 0 10px 40px rgba(107, 70, 193, 0.3);
}

.simple-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.simple-content p {
    color: #F3F4F6;
    line-height: 1.8;
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(107, 70, 193, 0.98) 0%, rgba(236, 72, 153, 0.98) 100%);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:checked ~ .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .features-grid,
    .horoscopes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-image {
        height: 300px;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .policy-container,
    .simple-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

