/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #1F2937;
    background-color: #FEF3C7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

input, textarea, select, button {
    max-width: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* Предотвращение горизонтальной прокрутки */
html, body {
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
    
    table, thead, tbody, tfoot, tr, th, td {
        display: block;
        width: 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   COLOR PALETTE
   ============================================ */

:root {
    --primary: #6B46C1;
    --accent: #F59E0B;
    --secondary: #1E3A8A;
    --background: #FEF3C7;
    --light: #FED7AA;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #6B46C1 0%, #1E3A8A 50%, #F59E0B 100%);
    --gradient-btn: linear-gradient(135deg, #6B46C1 0%, #F59E0B 100%);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(107, 70, 193, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-btn);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: none;
    }
    
    .menu-toggle:checked ~ .main-nav {
        max-height: 500px;
        display: flex;
    }
    
    .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 SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8) 0%, rgba(30, 58, 138, 0.8) 50%, rgba(245, 158, 11, 0.8) 100%),
                url('./img/ul4sx3.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.7;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-btn);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.6);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 50px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '✦';
    display: block;
    font-size: 24px;
    color: var(--accent);
    margin-top: 10px;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us .section-title {
    color: var(--secondary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--secondary);
    background-clip: unset;
}

.why-us .section-title::after {
    color: var(--accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent);
}

/* ============================================
   HOROSCOPES SECTION
   ============================================ */

.horoscopes {
    background: var(--background);
}

.horoscopes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.horoscope-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.horoscope-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-btn);
}

.horoscope-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4);
}

.horoscope-image {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.horoscope-content {
    padding: 30px;
}

.horoscope-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
}

.horoscope-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.horoscope-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 20px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    background: var(--white);
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-btn);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background: linear-gradient(135deg, var(--light) 0%, var(--background) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--accent);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
}

.testimonial-rating {
    color: var(--accent);
    font-size: 20px;
    margin-top: 10px;
}

/* ============================================
   FORM SECTION
   ============================================ */

.form-section {
    background: var(--white);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 3px;
    background: var(--gradient-btn);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: var(--background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.1);
}

.faq-item summary {
    padding: 25px;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 28px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(107, 70, 193, 0.05);
}

.faq-item p {
    padding: 0 25px 25px;
    color: var(--text-medium);
    line-height: 1.8;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--white);
    background-clip: unset;
}

.contact .section-title::after {
    color: var(--accent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--accent);
    text-align: center;
}

.contact-info-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent);
}

.contact-info-item p,
.contact-info-item a {
    color: var(--white);
    text-decoration: none;
    line-height: 1.8;
}

.contact-info-item a:hover {
    color: var(--accent);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    max-width: 100%;
    box-sizing: border-box;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p,
.footer-section a {
    color: var(--white);
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--gradient);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: var(--white);
    text-decoration: underline;
}

.cookie-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-page {
    padding: 80px 20px;
    min-height: 80vh;
    background: var(--background);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.policy-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.policy-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.policy-container p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-medium);
}

.policy-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.policy-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light);
}

.policy-contact h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

.policy-contact p {
    margin-bottom: 10px;
}

/* ============================================
   EXTRA PAGES (About, Blog, Tips)
   ============================================ */

.content-page {
    padding: 80px 20px;
    min-height: 70vh;
    background: var(--background);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    border: 2px solid var(--primary);
}

.content-block h1 {
    font-size: 36px;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: var(--gradient);
    color: var(--white);
}

.thank-you-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.thank-you-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        min-height: 70vh;
        padding: 60px 15px;
        width: 100%;
        max-width: 100vw;
    }
    
    .features-grid,
    .horoscopes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .steps {
        flex-direction: column;
        width: 100%;
    }
    
    .form-container {
        padding: 30px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .policy-container,
    .content-block {
        padding: 30px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .contact-map {
        min-height: 300px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-map iframe {
        min-height: 300px;
        width: 100%;
        max-width: 100%;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
        padding-left: 0;
        padding-right: 0;
    }
    
    .main-header {
        width: 100%;
        max-width: 100vw;
    }
    
    .main-footer {
        width: 100%;
        max-width: 100vw;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes starPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.star {
    display: inline-block;
    animation: starPulse 2s ease infinite;
}

/* CSS-only animations for elements */
.feature-card,
.horoscope-card,
.step,
.testimonial-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.horoscope-card:nth-child(1) { animation-delay: 0.1s; }
.horoscope-card:nth-child(2) { animation-delay: 0.2s; }
.horoscope-card:nth-child(3) { animation-delay: 0.3s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

