/* Eastern Wisdom Landing Page - Mystical Theme */
:root {
    --gold: #D4AF37;
    --gold-light: #F0D78C;
    --crimson: #8B0000;
    --bg-dark: #0a0a0f;
    --bg-surface: #1a1a2e;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --jade: #00A86B;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Mystical Background */
.mystical-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, #1a0a0a 0%, #0a0a0f 50%, #000 100%);
    z-index: -1;
}

.stars {
    position: absolute;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--gold), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--gold-light), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 230px 80px, var(--gold), transparent);
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.particles {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}


/* Home Button */
.home-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s;
}

.home-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

/* Language Selector */
.lang-selector {
    position: fixed;
    top: 20px; right: 20px;
    display: flex; gap: 8px;
    z-index: 1000;
}

.lang-btn {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--gold);
    color: var(--bg-dark);
}

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

.hero-content { max-width: 800px; }
.logo-container { margin-bottom: 30px; }

img.oracle-symbol {
    width: 150px;
    height: 150px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(212,175,55,0.5));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212,175,55,0.3);
    margin-bottom: 20px;
}

.tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 20px;
}

.claim-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin: 0 auto 40px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 30px;
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(212,175,55,0.2); }
    100% { box-shadow: 0 0 25px rgba(212,175,55,0.4); }
}

/* Buttons */
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.4);
}

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

.btn-secondary:hover { background: rgba(212,175,55,0.1); }
.btn-large { padding: 20px 50px; font-size: 1.2rem; }

.scroll-hint { color: var(--text-secondary); animation: bounce 2s infinite; }
.scroll-arrow { font-size: 24px; margin-top: 10px; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}


/* Section Styles */
section { padding: 100px 20px; }

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212,175,55,0.1);
}

.feature-icon { font-size: 50px; margin-bottom: 20px; }

.feature-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Zodiac Section */
.zodiac-section {
    background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.05) 50%, transparent 100%);
}

.zodiac-wheel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.zodiac-animal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 100px;
}

.zodiac-animal img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.zodiac-animal span {
    font-size: 12px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.zodiac-animal:hover {
    transform: scale(1.1);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

/* Oracle Section */
.oracle-section { background: var(--bg-surface); }

.oracle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.oracle-visual { flex-shrink: 0; }

.fortune-stick {
    width: 60px;
    height: 350px;
    background: linear-gradient(90deg, #DEB887 0%, #F5DEB3 50%, #DEB887 100%);
    border-radius: 5px 5px 10px 10px;
    position: relative;
    box-shadow: 5px 10px 30px rgba(0,0,0,0.3);
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.stick-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: var(--crimson);
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.stick-body {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stick-body span { font-size: 36px; color: #333; font-weight: 900; }

.oracle-content { max-width: 500px; }

.oracle-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.oracle-content p { color: var(--text-secondary); margin-bottom: 25px; }
.oracle-features { list-style: none; }

.oracle-features li {
    color: var(--text-primary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}


/* Pricing Section */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    min-width: 280px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212,175,55,0.2);
}

.pricing-card.master { border-color: #9B59B6; }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    color: var(--bg-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-card.master h3 { color: #9B59B6; }

.price { font-size: 2.5rem; font-weight: 700; margin-bottom: 25px; }
.price span { font-size: 1rem; color: var(--text-secondary); }

.pricing-card ul { list-style: none; text-align: left; }

.pricing-card li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Final CTA */
.final-cta {
    text-align: center;
    position: relative;
    padding: 120px 20px;
}

.final-cta h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-symbols span {
    position: absolute;
    font-size: 30px;
    opacity: 0.2;
    animation: floatSymbol 10s infinite;
}

.floating-symbols span:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-symbols span:nth-child(2) { left: 25%; animation-delay: 2s; }
.floating-symbols span:nth-child(3) { left: 50%; animation-delay: 4s; }
.floating-symbols span:nth-child(4) { left: 75%; animation-delay: 6s; }
.floating-symbols span:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes floatSymbol {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }
.copyright { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
.blessing { color: var(--gold); font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .oracle-container { flex-direction: column; text-align: center; }
    .pricing-card.featured { transform: scale(1); }
    .lang-selector { top: 10px; right: 10px; }
    .lang-btn { padding: 6px 10px; font-size: 11px; }
}