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

:root {
    --primary: #8B5CF6;
    --secondary: #EC4899;
    --accent: #F59E0B;
    --dark: #1F2937;
    --light: #F9FAFB;
    --border: #E5E7EB;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --mystical: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    background: var(--mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, white 0%, #F3E8FF 100%);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.daily-draw-cta {
    margin: 3rem 0;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.sparkle {
    display: inline-block;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.daily-note {
    margin-top: 1rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.indicator {
    text-align: center;
}

.indicator .number {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.indicator .label {
    color: #6B7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-premium {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Card Section */
.card-section {
    padding: 4rem 0;
    min-height: 600px;
}

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

.reading-setup h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.question-input {
    margin: 2rem 0;
    position: relative;
}

.question-input textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s;
}

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

.char-count {
    text-align: right;
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.5rem;
}

/* Spread Selector */
.spread-selector {
    margin: 3rem 0;
}

.spread-selector h3 {
    margin-bottom: 1.5rem;
}

.spread-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spread-option {
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.spread-option:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.spread-option.active {
    border-color: var(--primary);
    background: linear-gradient(180deg, white 0%, #F3E8FF 100%);
}

.spread-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.spread-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.spread-desc {
    font-size: 0.875rem;
    color: #6B7280;
}

.spread-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #10B981;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.spread-badge.premium {
    background: var(--gradient);
}

/* Card Display */
.card-display {
    margin: 3rem 0;
}

.card-deck {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.oracle-card {
    width: 140px;
    height: 220px;
    background: var(--gradient);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oracle-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.oracle-card.revealed {
    background: white;
    border: 3px solid var(--primary);
}

.card-back {
    color: white;
    font-size: 3rem;
}

.card-front {
    padding: 1rem;
    text-align: center;
}

.card-front .card-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-front .card-element {
    font-size: 0.875rem;
    color: #6B7280;
}

.draw-instruction {
    text-align: center;
    font-size: 1.125rem;
    color: #6B7280;
}

/* Reading Display */
.reading-display {
    max-width: 900px;
    margin: 0 auto;
}

.reading-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reading-date {
    color: #6B7280;
    font-size: 0.875rem;
}

.cards-drawn {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.drawn-card {
    text-align: center;
}

.drawn-card-img {
    width: 160px;
    height: 250px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.drawn-card-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.drawn-card-keywords {
    font-size: 0.875rem;
    color: #6B7280;
}

.reading-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.reading-section {
    margin-bottom: 2rem;
}

.reading-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.reading-section p {
    line-height: 1.8;
}

.reading-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Premium Upsell */
.premium-upsell {
    background: var(--gradient);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
}

.premium-upsell h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.upsell-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.upsell-features .feature {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Sections */
.section-light {
    padding: 4rem 0;
    background: white;
}

.section-light h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

/* Spreads Section */
.spreads-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #F3E8FF 0%, white 100%);
}

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

.spread-detail {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.spread-detail.featured {
    border: 3px solid var(--primary);
}

.spread-detail .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-top: 1rem;
}

/* Pricing */
.pricing-section {
    padding: 4rem 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #6B7280;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-card button {
    width: 100%;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }
    
    .spread-options {
        grid-template-columns: 1fr;
    }
    
    .cards-drawn {
        flex-direction: column;
        align-items: center;
    }
}
