:root {
    --primary-color: #6a0dad;
    --secondary-color: #9d4edd;
    --accent-color: #ffd700;
    --dark-bg: #0a0118;
    --card-bg: #1a0f2e;
    --text-light: #e0d4f7;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

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

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(106, 13, 173, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.3) 0%, transparent 50%);
}

/* Header */
.navbar {
    background: rgba(26, 15, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.premium-btn {
    background: var(--gradient-2);
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.animated-text {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: rgba(224, 212, 247, 0.8);
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cormorant Garamond', serif;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
}

.glow {
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.btn-primary:hover, .btn-secondary:hover, .btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.6);
}

.stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.9s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(224, 212, 247, 0.7);
}

/* Sections */
.tarot-section, .natal-section, .services-section, .testimonials {
    padding: 100px 20px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: rgba(224, 212, 247, 0.7);
    margin-bottom: 60px;
}

/* Spread Selector */
.spread-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.spread-card {
    background: var(--card-bg);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.spread-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.2), transparent);
    transition: left 0.5s;
}

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

.spread-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.4);
}

.spread-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.spread-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.spread-card p {
    font-size: 16px;
    color: rgba(224, 212, 247, 0.7);
    margin-bottom: 20px;
}

.spread-price {
    display: inline-block;
    background: var(--gradient-2);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 18px;
}

.premium-card {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(26, 15, 46, 1) 100%);
}

/* Tarot Reading */
.tarot-reading {
    margin-top: 60px;
    animation: fadeIn 0.5s ease-out;
}

.hidden {
    display: none;
}

.question-block {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.question-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.question-block textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: var(--text-light);
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    resize: vertical;
    margin-bottom: 20px;
}

.question-block textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.card-deck {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 60px 0;
    perspective: 1000px;
}

.tarot-card {
    width: 180px;
    height: 300px;
    background: var(--card-bg);
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tarot-card:hover {
    transform: translateY(-20px) rotateY(10deg);
}

.card-back {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: var(--gradient-1);
    border-radius: 12px;
}

.card-front {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.card-front .card-number {
    font-size: 48px;
    margin-bottom: 20px;
}

.card-front .card-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

/* Interpretation */
.interpretation {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    animation: fadeIn 0.5s ease-out;
}

.interpretation h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

#interpretationContent {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.card-meaning {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-color);
}

.card-meaning h4 {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Natal Chart Section */
.natal-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.natal-form {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.option-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 15px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: var(--accent-color);
}

.option-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.option-content {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 10px;
    transition: border-color 0.3s;
}

.option-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.option-content p {
    font-size: 16px;
    color: rgba(224, 212, 247, 0.7);
    margin-bottom: 15px;
}

.option-price {
    display: inline-block;
    background: var(--gradient-1);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.premium-option {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.btn-primary.large {
    width: 100%;
    padding: 20px;
    font-size: 22px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(157, 78, 221, 0.4);
}

.service-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.service-card p {
    font-size: 18px;
    color: rgba(224, 212, 247, 0.7);
    margin-bottom: 20px;
}

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

/* Testimonials */
.testimonials {
    background: rgba(26, 15, 46, 0.5);
}

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

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    padding: 35px;
}

.stars {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(224, 212, 247, 0.8);
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author strong {
    color: var(--accent-color);
    font-size: 20px;
}

.author span {
    color: rgba(224, 212, 247, 0.6);
}

/* Newsletter */
.newsletter {
    background: var(--gradient-2);
    padding: 80px 20px;
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

#newsletterForm {
    display: flex;
    max-width: 600px;
    margin: 0 auto 20px;
    gap: 15px;
}

#newsletterForm input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
}

#newsletterForm button {
    white-space: nowrap;
}

.newsletter-bonus {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(224, 212, 247, 0.7);
    margin: 10px 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section a {
    color: rgba(224, 212, 247, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.footer-bottom p {
    color: rgba(224, 212, 247, 0.6);
    margin: 10px 0;
}

.disclaimer {
    font-size: 14px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .animated-text {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    #newsletterForm {
        flex-direction: column;
    }
}
/* Additional styles for new features */
.reading-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.reading-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reading-header h4 {
    font-size: 22px;
    color: var(--accent-color);
}

.reading-date {
    font-size: 14px;
    color: rgba(224, 212, 247, 0.6);
}

.reading-question {
    margin: 15px 0;
    font-size: 16px;
    color: rgba(224, 212, 247, 0.8);
}

.reading-cards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.card-tag {
    padding: 6px 15px;
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    font-size: 14px;
}

.reading-detail {
    padding: 20px 0;
}

.reading-date-large {
    font-size: 18px;
    color: rgba(224, 212, 247, 0.7);
    text-align: center;
    margin-bottom: 25px;
}

.question-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.cards-detail {
    margin: 30px 0;
}

.card-detail-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid var(--accent-color);
}

.video-actions-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-enter {
    animation: slideInUp 0.4s ease-out;
}
