/* ============================================
   SIRLAR DÜNYASI - Mistik Fal Platformu CSS
   ============================================ */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --purple-dark: #2d1f3d;
    --purple-main: #6b3fa0;
    --purple-light: #9b6dd0;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --text-white: #f5f5f7;
    --text-gray: #a0a0a8;
    --text-muted: #6b6b75;
    --gradient-mystical: linear-gradient(135deg, #6b3fa0, #d4af37);
    --gradient-purple: linear-gradient(135deg, #2d1f3d, #6b3fa0);
    --shadow-glow: 0 0 30px rgba(107, 63, 160, 0.3);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 63, 160, 0.2);
    padding: 1rem 2rem;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

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

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.auth-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-switcher {
    display: flex;
    gap: 0.3rem;
    margin-right: 1rem;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 0.2rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--purple-main);
    color: white;
}

.lang-btn:hover:not(.active) {
    color: white;
}

.signin-btn {
    background: transparent;
    border: 1px solid var(--purple-light);
    color: var(--purple-light);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signin-btn:hover {
    background: var(--purple-light);
    color: white;
}

.premium-btn {
    background: var(--gradient-mystical);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.premium-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 60px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(107, 63, 160, 0.2);
    border: 1px solid var(--purple-main);
    color: var(--purple-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--gradient-mystical);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crystal-ball {
    position: relative;
    width: 300px;
    height: 300px;
}

.ball-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

.ball-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, rgba(107, 63, 160, 0.3), rgba(45, 31, 61, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(107, 63, 160, 0.5), 0 0 30px rgba(107, 63, 160, 0.3);
}

.ball-icon {
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

.ball-reflection {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(5px);
}

/* Section Styles */
section {
    padding: 100px 5%;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Services Grid */
.services-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--purple-dark) 50%, var(--bg-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-mystical);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-main);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--bg-card), rgba(212, 175, 55, 0.05));
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: rgba(107, 63, 160, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--purple-light);
}

.service-btn {
    background: transparent;
    border: 1px solid var(--purple-light);
    color: var(--purple-light);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    background: var(--purple-light);
    color: white;
}

/* Characters Section */
.characters-section {
    background: var(--bg-dark);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.character-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.character-card:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.character-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-mystical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.character-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.character-title {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.character-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.character-rating {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.character-tags {
    display: flex;
    gap: 0.5rem;
}

.character-tags span {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--gold);
}

.live-readers-banner {
    background: var(--gradient-purple);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.live-indicator {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.btn-live {
    background: white;
    color: var(--purple-dark);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-live:hover {
    transform: scale(1.05);
}

/* Zodiac Section */
.zodiac-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(45, 31, 61, 0.3) 100%);
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.zodiac-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zodiac-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.zodiac-symbol {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.zodiac-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.zodiac-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Shop Section */
.shop-section {
    background: var(--bg-dark);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 0.7rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-image {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-tags span {
    background: rgba(107, 63, 160, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--purple-light);
}

.product-price {
    margin-bottom: 1rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.price-new {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
}

.product-btn {
    background: var(--gradient-mystical);
    border: none;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(107, 63, 160, 0.2);
    padding: 4rem 5% 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--purple-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-muted);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

.modal-content {
    padding: 2.5rem;
}

.modal-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gradient-mystical);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    z-index: 3000;
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Tarot Cards */
.tarot-deck {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.tarot-card {
    width: 100px;
    height: 150px;
    background: var(--gradient-purple);
    border: 2px solid var(--gold);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    transform-style: preserve-3d;
}

.tarot-card:hover {
    transform: translateY(-10px) rotateY(10deg);
    box-shadow: var(--shadow-gold);
}

.tarot-card.selected {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.tarot-card.revealed {
    animation: flipCard 0.6s ease forwards;
}

@keyframes flipCard {
    0% { transform: rotateY(0); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0); }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-light);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: var(--gradient-mystical);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

/* File Upload */
.file-upload {
    border: 2px dashed var(--purple-main);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.file-upload:hover {
    border-color: var(--gold);
    background: rgba(107, 63, 160, 0.1);
}

.file-upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.file-upload p {
    color: var(--text-gray);
}

/* Reading Result */
.reading-result {
    background: rgba(107, 63, 160, 0.1);
    border: 1px solid var(--purple-main);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.reading-result h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reading-result p {
    color: var(--text-gray);
    line-height: 1.8;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

/* Rating */
.rating-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
    text-align: center;
}

.rating-stars {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rating-stars span {
    cursor: pointer;
    transition: all 0.2s ease;
    filter: grayscale(100%);
}

.rating-stars span:hover,
.rating-stars span.active {
    filter: grayscale(0%);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .crystal-ball {
        width: 200px;
        height: 200px;
    }
    
    .ball-inner {
        width: 140px;
        height: 140px;
    }
    
    .character-card {
        flex-direction: column;
        text-align: center;
    }
    
    .character-avatar {
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .zodiac-select-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .zodiac-select-card {
        padding: 0.8rem !important;
    }
    
    .zs-symbol {
        font-size: 1.8rem !important;
    }
}

/* ============================================
   ZODIAC SELECTION OVERLAY
   ============================================ */

.zodiac-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.5s ease;
}

.zodiac-overlay.hidden {
    display: none;
}

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

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

.zodiac-popup {
    background: var(--bg-card);
    border: 1px solid var(--purple-main);
    border-radius: 25px;
    padding: 2rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.5s ease;
    position: relative;
}

.zodiac-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(107, 63, 160, 0.5);
    background: rgba(107, 63, 160, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.zodiac-close-btn:hover {
    background: var(--purple-main);
    border-color: var(--purple-main);
    transform: rotate(90deg);
}

.zodiac-skip-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.popup-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.zodiac-popup-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-mystical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zodiac-popup-header p {
    color: var(--text-gray);
}

.zodiac-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.zodiac-select-card {
    background: var(--bg-dark);
    border: 2px solid rgba(107, 63, 160, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zodiac-select-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.zs-symbol {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}

.zs-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--text-white);
}

.zs-name-en {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.zs-date {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ============================================
   PRODUCT POPUP
   ============================================ */

.product-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 8000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-popup-overlay.active {
    display: flex;
}

.product-popup {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 25px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-header span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.popup-header h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
}

.popup-products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.popup-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-dark);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-product:hover {
    border-color: var(--gold);
}

.popup-product-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
}

.popup-product-info {
    flex: 1;
}

.popup-product-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.popup-product-info p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.popup-product-price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.popup-skip {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 0.8rem;
    border-radius: 20px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-skip:hover {
    border-color: var(--text-gray);
    color: var(--text-gray);
}

/* ============================================
   ZODIAC DASHBOARD
   ============================================ */

.zodiac-dashboard {
    padding: 100px 5% 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-purple);
    border-radius: 20px;
}

.user-zodiac-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-zodiac-symbol {
    font-size: 3rem;
}

.user-zodiac-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
}

.user-zodiac-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.change-zodiac-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.change-zodiac-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Daily Reading Card */
.daily-reading-card {
    background: var(--bg-card);
    border: 1px solid var(--purple-main);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.reading-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reading-icon {
    font-size: 2rem;
}

.reading-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
}

.reading-date {
    color: var(--gold);
    font-size: 0.85rem;
}

.reading-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-gray);
}

/* Luck Section */
.luck-section {
    margin-bottom: 3rem;
}

.luck-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.luck-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.luck-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.luck-header span {
    font-size: 1.5rem;
}

.luck-header h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
}

.luck-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.luck-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.luck-label {
    font-size: 0.85rem;
    min-width: 80px;
}

.luck-bar {
    flex: 1;
    height: 8px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.luck-fill {
    height: 100%;
    background: var(--gradient-mystical);
    border-radius: 10px;
    transition: width 1s ease;
}

.luck-percent {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: bold;
    min-width: 40px;
}

.luck-details {
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
}

.luck-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.weekly-summary, .monthly-summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-gray);
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
}

/* History Section */
.history-section {
    margin-bottom: 3rem;
}

.history-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.history-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.history-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-card {
    background: var(--bg-card);
    border-left: 4px solid var(--gold);
    border-radius: 0 15px 15px 0;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.history-year {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
    min-width: 60px;
}

.history-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Experts Section */
.experts-section {
    margin-bottom: 3rem;
}

.experts-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.experts-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.expert-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expert-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
}

.expert-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.expert-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-mystical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.expert-info h4 {
    font-size: 1.1rem;
}

.expert-title {
    font-size: 0.8rem;
    color: var(--gold);
}

.expert-comment {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.expert-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   DAILY CARD SECTION
   ============================================ */

.daily-card-section {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-sm {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.daily-card-container {
    max-width: 250px;
    margin: 0 auto;
}

.daily-card-back, .daily-card-front {
    background: var(--gradient-purple);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 3rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.daily-card-back:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.daily-card-back span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.daily-card-back p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.daily-card-front {
    background: var(--bg-card);
    animation: flipIn 0.6s ease;
}

@keyframes flipIn {
    0% { transform: rotateY(90deg); opacity: 0; }
    100% { transform: rotateY(0); opacity: 1; }
}

.daily-card-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.daily-card-front h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.daily-card-front p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   ANGEL NUMBERS SECTION
   ============================================ */

.angel-numbers-section {
    margin-bottom: 3rem;
    text-align: center;
}

.angel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.angel-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 15px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.angel-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.angel-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.angel-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* ============================================
   MOON CALENDAR SECTION
   ============================================ */

.moon-section {
    margin-bottom: 3rem;
    text-align: center;
}

.moon-phase-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.moon-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(107, 63, 160, 0.2);
}

.moon-emoji {
    font-size: 4rem;
}

.moon-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.moon-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.moon-advice {
    text-align: left;
}

.moon-advice p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.moon-upcoming {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.moon-upcoming h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    color: var(--purple-light);
}

.moon-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.moon-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.moon-item span {
    font-size: 2rem;
}

.moon-item strong {
    display: block;
    font-size: 0.95rem;
}

.moon-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   REFERRAL SECTION
   ============================================ */

.referral-section {
    margin-bottom: 3rem;
}

.referral-card {
    background: var(--gradient-mystical);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
}

.referral-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.referral-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.referral-card > p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.referral-code-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.referral-code-box span {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.referral-code-box button {
    background: white;
    color: var(--purple-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.referral-code-box button:hover {
    transform: scale(1.05);
}

.referral-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.05);
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

/* ============================================
   PAST READINGS SECTION
   ============================================ */

.history-readings-section {
    margin-bottom: 3rem;
    text-align: center;
}

.readings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reading-history-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    text-align: left;
}

.rh-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.rh-info {
    flex: 1;
}

.rh-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.rh-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.2rem;
}

.rh-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rh-view {
    background: transparent;
    border: 1px solid var(--purple-light);
    color: var(--purple-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rh-view:hover {
    background: var(--purple-light);
    color: white;
}

/* ============================================
   1. AFFIRMATION SECTION
   ============================================ */

.affirmation-section {
    margin-bottom: 3rem;
}

.affirmation-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.affirmation-card:hover {
    transform: scale(1.02);
}

.affirmation-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.affirmation-card h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
}

.affirmation-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.affirmation-hint {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ============================================
   2. BIORHYTHM SECTION
   ============================================ */

.biorhythm-section {
    margin-bottom: 3rem;
    text-align: center;
}

.bio-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.bio-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.bio-header {
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.bio-wave {
    flex: 1;
    height: 8px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

.bio-wave.physical { background: linear-gradient(90deg, #ff6b6b, #ff8e8e); }
.bio-wave.emotional { background: linear-gradient(90deg, #4ecdc4, #7ee8e2); }
.bio-wave.intellectual { background: linear-gradient(90deg, #a855f7, #c084fc); }

.bio-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.bio-percent {
    min-width: 45px;
    font-weight: bold;
    font-size: 0.95rem;
}

.bio-percent.high { color: #4ade80; }
.bio-percent.medium { color: #fbbf24; }
.bio-percent.low { color: #f87171; }

.bio-summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-gray);
}

/* ============================================
   3. CHAKRA SECTION
   ============================================ */

.chakra-section {
    margin-bottom: 3rem;
    text-align: center;
}

.chakra-visual {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.chakra-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.chakra-point {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.chakra-point:hover {
    transform: scale(1.2);
}

.chakra-point span {
    font-size: 1.5rem;
    z-index: 1;
}

.chakra-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.3;
}

.chakra-glow.active {
    background: radial-gradient(circle, #4ade80 0%, transparent 70%);
    animation: chakraPulse 2s ease-in-out infinite;
}

.chakra-glow.blocked {
    background: radial-gradient(circle, #f87171 0%, transparent 70%);
}

@keyframes chakraPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

.chakra-info-panel {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    max-width: 300px;
}

.chakra-info-panel h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.chakra-status-active { color: #4ade80; }
.chakra-status-blocked { color: #f87171; }

.chakra-info-panel p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* ============================================
   4. CRYSTAL OF THE DAY
   ============================================ */

.crystal-day-section {
    margin-bottom: 3rem;
    text-align: center;
}

.crystal-day-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.crystal-visual {
    position: relative;
}

.crystal-emoji {
    font-size: 5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.crystal-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.crystal-info {
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.crystal-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.crystal-zodiac {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.crystal-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.crystal-benefits li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.crystal-buy-btn {
    background: var(--gradient-mystical);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crystal-buy-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   5. MEDITATION SECTION
   ============================================ */

.meditation-section {
    margin-bottom: 3rem;
    text-align: center;
}

.meditation-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.meditation-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-purple);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.meditation-circle.breathing {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.meditation-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

.meditation-progress {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
}

.meditation-instruction {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.meditation-btn {
    background: var(--gradient-mystical);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.meditation-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   6. ELEMENT SECTION
   ============================================ */

.element-section {
    margin-bottom: 3rem;
    text-align: center;
}

.element-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.element-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(107, 63, 160, 0.2);
}

.element-emoji {
    font-size: 3.5rem;
}

.element-main h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.element-main p {
    color: var(--text-gray);
}

.element-traits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.trait-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trait-item span {
    font-size: 1.5rem;
}

.trait-item strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--purple-light);
}

.trait-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   7. PLANETS SECTION
   ============================================ */

.planets-section {
    margin-bottom: 3rem;
    text-align: center;
}

.planets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.planet-item {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.planet-item.retro {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.planet-emoji {
    font-size: 1.8rem;
}

.planet-name {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.planet-sign {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.85rem;
}

.planets-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   8. MANTRA SECTION
   ============================================ */

.mantra-section {
    margin-bottom: 3rem;
    text-align: center;
}

.mantra-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
}

.mantra-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.mantra-meaning {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.mantra-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mantra-minus, .mantra-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mantra-minus:hover, .mantra-plus:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.mantra-count {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: white;
}

.mantra-label {
    color: var(--text-muted);
}

.mantra-tip {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   9. COSMIC WEATHER SECTION
   ============================================ */

.cosmic-section {
    margin-bottom: 3rem;
    text-align: center;
}

.cosmic-card {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    border-radius: 20px;
    padding: 2rem;
}

.cosmic-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cosmic-emoji {
    font-size: 3rem;
}

.cosmic-main h4 {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.cosmic-level {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.cosmic-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
}

.cosmic-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.cosmic-item span {
    font-size: 1.3rem;
}

.cosmic-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   10. SLEEP SECTION
   ============================================ */

.sleep-section {
    margin-bottom: 3rem;
    text-align: center;
}

.sleep-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.sleep-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sleep-item {
    text-align: center;
}

.sleep-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sleep-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--purple-light);
    margin-bottom: 0.3rem;
}

.sleep-item p {
    font-size: 1.1rem;
    color: white;
    margin: 0;
}

.sleep-tip {
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    padding: 1rem;
}

.sleep-tip p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 768px) {
    .planets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cosmic-details {
        grid-template-columns: 1fr;
    }
    
    .sleep-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .crystal-day-card {
        flex-direction: column;
        text-align: center;
    }
    
    .crystal-info {
        text-align: center;
    }
}

/* ============================================
   11. DREAM SYMBOLS DICTIONARY
   ============================================ */

.dream-symbols-section {
    margin-bottom: 3rem;
    text-align: center;
}

.dream-search {
    margin-bottom: 1.5rem;
}

.dream-search input {
    width: 100%;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(107, 63, 160, 0.3);
    border-radius: 25px;
    background: var(--bg-card);
    color: white;
    font-size: 1rem;
}

.dream-search input:focus {
    border-color: var(--gold);
    outline: none;
}

.dream-symbols-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.dream-symbol-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 15px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dream-symbol-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.ds-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.dream-symbol-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.dream-symbol-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   12. COFFEE SYMBOLS
   ============================================ */

.coffee-symbols-section {
    margin-bottom: 3rem;
    text-align: center;
}

.coffee-symbols-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coffee-symbol-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: left;
}

.cs-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.cs-info h4 {
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.cs-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ============================================
   13. CELEBRITIES SECTION
   ============================================ */

.celebrities-section {
    margin-bottom: 3rem;
    text-align: center;
}

.celebrities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.celeb-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
}

.celeb-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-mystical);
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.celeb-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.celeb-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   14. DAILY CHALLENGE
   ============================================ */

.challenge-section {
    margin-bottom: 3rem;
    text-align: center;
}

.challenge-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
}

.challenge-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.challenge-icon {
    font-size: 2.5rem;
}

.challenge-header h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
}

.challenge-xp {
    color: var(--gold);
    font-weight: bold;
}

.challenge-desc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.challenge-input textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 15px;
    background: var(--bg-card);
    color: white;
    resize: none;
    margin-bottom: 1rem;
}

.challenge-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.challenge-progress {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
}

.cp-bar {
    width: 100px;
    height: 8px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.cp-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
}

.challenge-btn {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.challenge-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   15. LUCK WHEEL
   ============================================ */

.wheel-section {
    margin-bottom: 3rem;
    text-align: center;
}

.wheel-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #6b3fa0 0deg 60deg,
        #d4af37 60deg 120deg,
        #9333ea 120deg 180deg,
        #f59e0b 180deg 240deg,
        #7c3aed 240deg 300deg,
        #eab308 300deg 360deg
    );
    position: relative;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-segment {
    position: absolute;
    font-size: 1.5rem;
}

.wheel-segment.seg1 { top: 15%; left: 50%; transform: translateX(-50%); }
.wheel-segment.seg2 { top: 25%; right: 15%; }
.wheel-segment.seg3 { top: 50%; right: 10%; transform: translateY(-50%); }
.wheel-segment.seg4 { bottom: 25%; right: 15%; }
.wheel-segment.seg5 { bottom: 15%; left: 50%; transform: translateX(-50%); }
.wheel-segment.seg6 { top: 50%; left: 10%; transform: translateY(-50%); }

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.wheel-center:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--gold);
    z-index: 5;
}

.wheel-result {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    min-height: 30px;
}

/* ============================================
   16. GLOSSARY
   ============================================ */

.glossary-section {
    margin-bottom: 3rem;
    text-align: center;
}

.glossary-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.glossary-item {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}

.gl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.gl-toggle {
    color: var(--gold);
    font-size: 1.5rem;
}

.gl-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glossary-item.open .gl-content {
    max-height: 200px;
    padding: 0 1.5rem 1rem;
}

.glossary-item.open .gl-toggle {
    transform: rotate(45deg);
}

.gl-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   17. NOTIFICATIONS
   ============================================ */

.notifications-section {
    margin-bottom: 3rem;
    text-align: center;
}

.notif-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
}

.notif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107, 63, 160, 0.1);
}

.notif-item:last-of-type {
    border-bottom: none;
}

.notif-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.notif-info span {
    font-size: 1.5rem;
}

.notif-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.notif-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 63, 160, 0.3);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gold);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.notif-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
}

.notif-time select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 10px;
    background: var(--bg-dark);
    color: white;
}

/* ============================================
   18. USER STATS / GAMIFICATION
   ============================================ */

.stats-section {
    margin-bottom: 3rem;
    text-align: center;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.user-level {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(107, 63, 160, 0.2);
}

.level-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.level-num {
    width: 50px;
    height: 50px;
    background: var(--gradient-mystical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.level-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
}

.level-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lp-bar {
    width: 150px;
    height: 10px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.lp-fill {
    height: 100%;
    background: var(--gradient-mystical);
    border-radius: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 1rem;
}

.stat-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.3rem;
}

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.achievements h4 {
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.badge-grid {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.badge {
    width: 45px;
    height: 45px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0.4;
    filter: grayscale(1);
}

.badge.earned {
    opacity: 1;
    filter: grayscale(0);
    background: var(--gradient-mystical);
}

/* ============================================
   19. COMMUNITY
   ============================================ */

.community-section {
    margin-bottom: 3rem;
    text-align: center;
}

.community-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.community-post {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: left;
}

.cp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cp-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cp-name {
    font-weight: 600;
    display: block;
}

.cp-zodiac {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cp-date {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cp-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cp-footer {
    display: flex;
    gap: 1.5rem;
}

.cp-footer button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cp-footer button:hover {
    color: var(--gold);
}

/* ============================================
   20. COMPARISON
   ============================================ */

.comparison-section {
    margin-bottom: 3rem;
    text-align: center;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.compare-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.compare-label {
    min-width: 90px;
    text-align: left;
    font-size: 0.9rem;
}

.compare-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.compare-bar {
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 0.8rem;
    font-size: 0.7rem;
    transition: width 1s ease;
}

.compare-bar.yesterday {
    background: rgba(107, 63, 160, 0.3);
}

.compare-bar.today {
    background: var(--gradient-mystical);
}

.compare-change {
    min-width: 70px;
    text-align: right;
    font-weight: bold;
    font-size: 0.85rem;
}

.compare-change.up { color: #4ade80; }
.compare-change.down { color: #f87171; }
.compare-change.same { color: var(--text-muted); }

.compare-summary {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
    font-size: 0.95rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .dream-symbols-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .celebrities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compare-row {
        flex-wrap: wrap;
    }
    
    .compare-bars {
        width: 100%;
        order: 3;
    }
}

/* ============================================
   21. VOICE READING
   ============================================ */

.voice-section {
    margin-bottom: 3rem;
    text-align: center;
}

.voice-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.voice-player {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.voice-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-mystical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.voice-info {
    text-align: left;
    flex: 1;
}

.voice-info h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.voice-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.voice-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.voice-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(107, 63, 160, 0.3);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-btn.play {
    width: 60px;
    height: 60px;
    background: var(--gradient-mystical);
    font-size: 1.5rem;
}

.voice-btn:hover {
    transform: scale(1.1);
}

.voice-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.voice-bar {
    flex: 1;
    height: 6px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.voice-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.voice-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.voice-options select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 10px;
    background: var(--bg-dark);
    color: white;
}

.voice-speed {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.voice-speed button {
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 5px;
    background: transparent;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 0.8rem;
}

.voice-speed button.active {
    background: var(--purple-main);
    color: white;
    border-color: var(--purple-main);
}

/* ============================================
   22. PALM READING
   ============================================ */

.palm-section {
    margin-bottom: 3rem;
    text-align: center;
}

.palm-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.palm-upload {
    border: 2px dashed rgba(107, 63, 160, 0.5);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.palm-upload:hover {
    border-color: var(--gold);
    background: rgba(107, 63, 160, 0.1);
}

.palm-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.palm-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
}

.palm-lines h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    text-align: left;
}

.palm-line-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(107, 63, 160, 0.1);
    text-align: left;
}

.line-color {
    width: 20px;
    height: 4px;
    border-radius: 2px;
}

.palm-line-item strong {
    display: block;
    font-size: 0.95rem;
}

.palm-line-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   23. BIRTH CHART
   ============================================ */

.birthchart-section {
    margin-bottom: 3rem;
    text-align: center;
}

.birthchart-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.birth-form {
    margin-bottom: 1.5rem;
}

.birth-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.birth-field {
    flex: 1;
    text-align: left;
}

.birth-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.birth-field input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 10px;
    background: var(--bg-dark);
    color: white;
}

.birth-btn {
    background: var(--gradient-mystical);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.birth-btn:hover {
    transform: scale(1.02);
}

.birth-result {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
}

.birth-wheel {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.wheel-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(107, 63, 160, 0.3);
}

.wheel-ring.outer {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wheel-ring.middle {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.wheel-ring.inner {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
}

.birth-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.birth-center span {
    display: block;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.birth-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.birth-detail {
    background: var(--bg-dark);
    border-radius: 10px;
    padding: 0.8rem;
}

.birth-detail span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.birth-detail strong {
    color: var(--gold);
}

/* ============================================
   24. LIVE CHAT
   ============================================ */

.livechat-section {
    margin-bottom: 3rem;
    text-align: center;
}

.chat-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--gradient-purple);
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.chat-status.online {
    background: #4ade80;
}

.chat-badge {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.chat-price {
    color: var(--gold);
    font-weight: bold;
}

.chat-messages {
    height: 250px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-msg {
    display: flex;
    gap: 0.8rem;
    max-width: 85%;
}

.chat-msg.system {
    justify-content: center;
    max-width: 100%;
}

.chat-msg.system p {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(107, 63, 160, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
}

.chat-msg.received {
    align-self: flex-start;
}

.chat-msg.sent {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-mystical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.msg-content {
    background: var(--bg-dark);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    text-align: left;
}

.chat-msg.sent .msg-content {
    background: var(--purple-main);
}

.msg-content p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.msg-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
}

.chat-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 25px;
    background: var(--bg-dark);
    color: white;
}

.chat-input button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
}

.chat-end {
    background: #ef4444;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
}

/* ============================================
   25. AMBIENT MUSIC
   ============================================ */

.music-section {
    margin-bottom: 3rem;
    text-align: center;
}

.music-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.music-visual {
    margin-bottom: 1.5rem;
}

.music-waves {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    height: 50px;
}

.music-waves span {
    width: 8px;
    background: var(--gradient-mystical);
    border-radius: 5px;
    animation: wave 1s ease-in-out infinite;
}

.music-waves span:nth-child(1) { height: 20px; animation-delay: 0s; }
.music-waves span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.music-waves span:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.music-waves span:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.music-waves span:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.music-controls {
    margin-bottom: 1.5rem;
}

.music-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-btn span {
    font-size: 2rem;
}

.music-btn p {
    font-size: 0.8rem;
    color: var(--gold);
    margin: 0;
}

.music-btn:hover {
    background: var(--gold);
}

.music-btn:hover span, .music-btn:hover p {
    color: var(--bg-dark);
}

.music-tracks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.music-track {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(107, 63, 160, 0.1);
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.music-track.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.music-track span {
    font-size: 1.5rem;
}

.music-track strong {
    display: block;
    font-size: 0.85rem;
}

.music-track p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

.music-volume {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.music-volume input {
    width: 150px;
    accent-color: var(--gold);
}

/* ============================================
   26. ASTROLOGY CALENDAR
   ============================================ */

.calendar-section {
    margin-bottom: 3rem;
    text-align: center;
}

.calendar-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav button {
    background: transparent;
    border: 1px solid rgba(107, 63, 160, 0.3);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.calendar-nav h4 {
    font-family: 'Cinzel', serif;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}

.cal-header {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.5rem;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cal-day:hover {
    background: rgba(107, 63, 160, 0.3);
}

.cal-day.other {
    color: var(--text-muted);
}

.cal-day.today {
    background: var(--purple-main);
    font-weight: bold;
}

.cal-day.event {
    position: relative;
}

.cal-day.fullmoon { background: rgba(255, 215, 0, 0.2); }
.cal-day.newmoon { background: rgba(100, 100, 100, 0.3); }
.cal-day.retro { background: rgba(239, 68, 68, 0.2); }
.cal-day.solstice { background: rgba(59, 130, 246, 0.2); }

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.3rem;
}

.legend-dot.fullmoon { background: #ffd700; }
.legend-dot.newmoon { background: #666; }
.legend-dot.retro { background: #ef4444; }
.legend-dot.solstice { background: #3b82f6; }

/* ============================================
   27. AI CHAT
   ============================================ */

.aichat-section {
    margin-bottom: 3rem;
    text-align: center;
}

.aichat-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
}

.aichat-messages {
    height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-msg {
    display: flex;
    gap: 0.8rem;
    max-width: 90%;
}

.ai-msg.bot {
    align-self: flex-start;
}

.ai-msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-mystical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ai-content {
    background: var(--bg-dark);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    text-align: left;
}

.ai-msg.user .ai-content {
    background: var(--purple-main);
}

.ai-content p {
    font-size: 0.9rem;
    margin: 0;
}

.aichat-suggestions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.aichat-suggestions button {
    background: rgba(107, 63, 160, 0.2);
    border: 1px solid rgba(107, 63, 160, 0.3);
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aichat-suggestions button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.aichat-input {
    display: flex;
    gap: 0.5rem;
}

.aichat-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 25px;
    background: var(--bg-dark);
    color: white;
}

.aichat-input button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-mystical);
    cursor: pointer;
    font-size: 1.2rem;
}

.aichat-note {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   28. PWA INSTALL
   ============================================ */

.pwa-section {
    margin-bottom: 3rem;
    text-align: center;
}

.pwa-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.phone-mockup {
    width: 120px;
    height: 240px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 3px solid #333;
    padding: 10px;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    background: #333;
    border-radius: 5px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-app {
    text-align: center;
}

.phone-app span {
    font-size: 2.5rem;
    display: block;
}

.phone-app p {
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

.pwa-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.pwa-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pwa-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pwa-info li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.pwa-install-btn {
    background: var(--gradient-mystical);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pwa-install-btn:hover {
    transform: scale(1.02);
}

.pwa-stores {
    margin-top: 1rem;
    text-align: center;
}

.pwa-stores span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.store-badges {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.store-btn {
    flex: 1;
    background: rgba(107, 63, 160, 0.2);
    border: 1px solid rgba(107, 63, 160, 0.3);
    color: white;
    padding: 0.6rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* ============================================
   29. PRICING
   ============================================ */

.payment-section {
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.pricing-price .currency {
    font-size: 1.2rem;
    color: var(--gold);
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-save {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 0.2rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.pricing-btn {
    background: var(--gradient-mystical);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: scale(1.05);
}

.payment-methods {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

/* ============================================
   30. MINI GAMES
   ============================================ */

.games-section {
    margin-bottom: 3rem;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.game-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.game-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.game-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.game-xp {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
}

.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.game-modal.active {
    display: flex;
}

.game-modal-content {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.game-header h4 {
    font-family: 'Cinzel', serif;
}

.game-header button {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.crystal-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.crystal-game-grid .crystal-cell {
    aspect-ratio: 1;
    background: var(--gradient-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crystal-cell.flipped {
    background: var(--bg-dark);
}

.crystal-cell.matched {
    background: rgba(74, 222, 128, 0.3);
    pointer-events: none;
}

.game-restart {
    background: var(--gradient-mystical);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pwa-card {
        flex-direction: column;
    }
    
    .pwa-info {
        text-align: center;
    }
    
    .music-tracks {
        grid-template-columns: 1fr;
    }
    
    .birth-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   31. COMPATIBILITY CALCULATOR
   ============================================ */

.compatibility-section {
    margin-bottom: 3rem;
    text-align: center;
}

.compat-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.compat-selectors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.compat-select {
    text-align: center;
}

.compat-select label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.compat-select select {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(107, 63, 160, 0.3);
    border-radius: 15px;
    background: var(--bg-dark);
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.compat-heart {
    font-size: 2rem;
    animation: heartbeat 1s ease-in-out infinite;
}

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

.compat-btn {
    background: var(--gradient-mystical);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.compat-btn:hover {
    transform: scale(1.05);
}

.compat-result {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 63, 160, 0.2);
}

.compat-score {
    margin-bottom: 1.5rem;
}

.compat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--gradient-mystical);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: bold;
}

.compat-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.compat-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compat-bar-item > span:first-child {
    min-width: 100px;
    text-align: left;
    font-size: 0.9rem;
}

.compat-bar {
    flex: 1;
    height: 10px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.compat-fill {
    height: 100%;
    background: linear-gradient(90deg, #ec4899, #f472b6);
    border-radius: 10px;
    transition: width 1s ease;
}

.compat-bar-item > span:last-child {
    min-width: 45px;
    font-weight: bold;
    color: var(--gold);
}

.compat-summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* ============================================
   32. TAROT SINGLE CARD
   ============================================ */

.tarot-single-section {
    margin-bottom: 3rem;
    text-align: center;
}

.tarot-single-card {
    max-width: 400px;
    margin: 0 auto;
}

.tarot-deck {
    cursor: pointer;
}

.tarot-card-back {
    background: var(--gradient-purple);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 4rem 2rem;
    transition: all 0.3s ease;
}

.tarot-card-back:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.tarot-card-back span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.tarot-drawn {
    animation: flipIn 0.6s ease;
}

.tarot-card-front {
    background: var(--bg-card);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.tarot-card-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tarot-card-front h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.tarot-card-num {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tarot-meaning {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.tarot-meaning h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
    color: var(--purple-light);
}

.tarot-meaning > p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.tarot-keywords {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tarot-keywords span {
    background: rgba(107, 63, 160, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.tarot-advice {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    padding: 1rem;
    border-radius: 0 10px 10px 0;
}

.tarot-advice strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.tarot-advice p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.tarot-again {
    background: var(--gradient-mystical);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}

/* ============================================
   33. NUMEROLOGY
   ============================================ */

.numerology-section {
    margin-bottom: 3rem;
    text-align: center;
}

.numer-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.numer-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.numer-input input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(107, 63, 160, 0.3);
    border-radius: 15px;
    background: var(--bg-dark);
    color: white;
    font-size: 1rem;
}

.numer-input button {
    background: var(--gradient-mystical);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: white;
    cursor: pointer;
}

.numer-number {
    margin-bottom: 1.5rem;
}

.numer-big {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--gold);
}

.numer-meaning {
    margin-bottom: 1.5rem;
}

.numer-meaning h4 {
    font-family: 'Cinzel', serif;
    color: var(--purple-light);
    margin-bottom: 0.5rem;
}

.numer-traits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.numer-trait {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.numer-trait span {
    font-size: 1.2rem;
}

.numer-trait strong {
    display: block;
    font-size: 0.85rem;
    color: var(--purple-light);
}

.numer-trait p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.numer-breakdown h4 {
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
}

.numer-letters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.numer-letter {
    background: var(--gradient-purple);
    width: 40px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.numer-letter span:first-child {
    font-weight: bold;
    font-size: 1.1rem;
}

.numer-letter span:last-child {
    font-size: 0.7rem;
    color: var(--gold);
}

/* ============================================
   34. FENG SHUI
   ============================================ */

.fengshui-section {
    margin-bottom: 3rem;
    text-align: center;
}

.feng-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.feng-element {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(107, 63, 160, 0.2);
}

.feng-emoji {
    font-size: 3rem;
}

.feng-element h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
}

.feng-element p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feng-tips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.feng-tip {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feng-tip > span {
    font-size: 1.5rem;
}

.feng-tip strong {
    display: block;
    color: var(--purple-light);
    margin-bottom: 0.2rem;
}

.feng-tip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ============================================
   35. LUCKY NUMBERS
   ============================================ */

.lucky-section {
    margin-bottom: 3rem;
    text-align: center;
}

.lucky-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.lucky-type {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.lucky-tab {
    background: rgba(107, 63, 160, 0.2);
    border: 1px solid transparent;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lucky-tab.active {
    background: var(--gradient-mystical);
    color: white;
}

.lucky-numbers {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.lucky-ball {
    width: 50px;
    height: 50px;
    background: var(--gradient-mystical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: bold;
    animation: pop 0.3s ease;
}

@keyframes pop {
    0% { transform: scale(0); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.lucky-generate {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.lucky-generate:hover {
    transform: scale(1.05);
}

.lucky-history {
    border-top: 1px solid rgba(107, 63, 160, 0.2);
    padding-top: 1rem;
}

.lucky-history h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.lucky-past p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.3rem 0;
}

/* ============================================
   36. DIET SECTION
   ============================================ */

.diet-section {
    margin-bottom: 3rem;
    text-align: center;
}

.diet-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.diet-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(107, 63, 160, 0.2);
}

.diet-emoji {
    font-size: 2.5rem;
}

.diet-header h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
}

.diet-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.diet-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

.diet-list h4 {
    margin-bottom: 0.8rem;
}

.diet-list ul {
    list-style: none;
    padding: 0;
}

.diet-list li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ============================================
   37. SPIRIT ANIMAL
   ============================================ */

.spirit-section {
    margin-bottom: 3rem;
    text-align: center;
}

.spirit-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.spirit-progress {
    margin-bottom: 1.5rem;
}

.spirit-bar {
    height: 8px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.spirit-fill {
    height: 100%;
    background: var(--gradient-mystical);
    transition: width 0.3s ease;
}

.spirit-question h4 {
    margin-bottom: 1rem;
}

.spirit-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.spirit-options button {
    background: rgba(107, 63, 160, 0.2);
    border: 1px solid rgba(107, 63, 160, 0.3);
    padding: 1rem;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.spirit-options button:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.spirit-animal {
    margin-bottom: 1rem;
}

.spirit-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.spirit-animal h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.spirit-title {
    color: var(--text-muted);
}

.spirit-desc {
    margin-bottom: 1rem;
}

.spirit-traits {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.spirit-traits span {
    background: rgba(107, 63, 160, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.spirit-card button:last-child {
    background: var(--gradient-mystical);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}

/* ============================================
   38. AURA COLOR
   ============================================ */

.aura-section {
    margin-bottom: 3rem;
    text-align: center;
}

.aura-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.aura-q p {
    margin-bottom: 1rem;
}

.aura-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.aura-options button {
    border: none;
    padding: 1rem;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.aura-options button:hover {
    transform: scale(1.05);
}

.aura-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.aura-glow {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    animation: auraGlow 2s ease-in-out infinite;
}

@keyframes auraGlow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.aura-person {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.aura-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.aura-card button:last-child {
    background: var(--gradient-mystical);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    margin-top: 1rem;
}

/* ============================================
   39. PAST LIFE
   ============================================ */

.pastlife-section {
    margin-bottom: 3rem;
    text-align: center;
}

.pastlife-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.pastlife-intro button {
    background: var(--gradient-mystical);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    margin-top: 1rem;
}

.pastlife-q-progress {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.pastlife-opts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.pastlife-opts button {
    background: rgba(107, 63, 160, 0.2);
    border: 1px solid rgba(107, 63, 160, 0.3);
    padding: 1rem;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pastlife-opts button:hover {
    border-color: var(--gold);
}

.pastlife-era {
    margin-bottom: 1.5rem;
}

.pastlife-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pastlife-era h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.pastlife-era p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pastlife-role {
    background: rgba(107, 63, 160, 0.1);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.pastlife-role h4 {
    font-size: 0.9rem;
    color: var(--purple-light);
    margin-bottom: 0.3rem;
}

.pastlife-card button:last-child {
    background: var(--gradient-mystical);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}

/* ============================================
   40. PERSONALITY TEST
   ============================================ */

.personality-section {
    margin-bottom: 3rem;
    text-align: center;
}

.personality-card {
    background: var(--bg-card);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.pers-q-num {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pers-test h4 {
    margin-bottom: 1rem;
}

.pers-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.pers-options button {
    background: rgba(107, 63, 160, 0.2);
    border: 1px solid rgba(107, 63, 160, 0.3);
    padding: 1rem;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.pers-options button:hover {
    border-color: var(--gold);
}

.pers-progress-bar {
    height: 8px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.pers-fill {
    height: 100%;
    background: var(--gradient-mystical);
    transition: width 0.3s ease;
}

.pers-type {
    margin-bottom: 1.5rem;
}

.pers-emoji {
    font-size: 3.5rem;
    display: block;
}

.pers-type h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.pers-breakdown {
    margin-bottom: 1.5rem;
}

.pers-element {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.pers-element > span:first-child {
    font-size: 1.3rem;
    min-width: 30px;
}

.pers-el-bar {
    flex: 1;
    height: 12px;
    background: rgba(107, 63, 160, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.pers-el-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.pers-el-fill.fire { background: linear-gradient(90deg, #ef4444, #f97316); }
.pers-el-fill.earth { background: linear-gradient(90deg, #84cc16, #22c55e); }
.pers-el-fill.air { background: linear-gradient(90deg, #06b6d4, #3b82f6); }
.pers-el-fill.water { background: linear-gradient(90deg, #8b5cf6, #6366f1); }

.pers-element > span:last-child {
    min-width: 40px;
    font-weight: bold;
}

.pers-desc {
    margin-bottom: 1rem;
}

.personality-card button:last-child {
    background: var(--gradient-mystical);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .aura-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pers-options {
        grid-template-columns: 1fr;
    }
    
    .diet-lists {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HİSSİYATLAR SECTION & MODAL
   ============================================ */

/* ============================================
   TEST YAP SECTION
   ============================================ */

.test-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.test-card {
    background: var(--bg-card);
    border: 2px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-mystical);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.test-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.test-card:hover::before {
    opacity: 1;
}

.test-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.test-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.test-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.test-badge {
    display: inline-block;
    background: rgba(107, 63, 160, 0.3);
    color: var(--purple-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .test-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .test-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .test-card {
        padding: 1.5rem 1rem;
    }
    
    .test-icon {
        font-size: 2.5rem;
    }
    
    .test-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
}

.hissiyat-section {
    margin-bottom: 3rem;
    text-align: center;
}

.hissiyat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.hissiyat-card {
    background: var(--bg-card);
    border: 2px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.hissiyat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.hissiyat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.hissiyat-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--gold);
}

.hissiyat-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Hissiyat Modal */
.hissiyat-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.hissiyat-modal.active {
    display: flex;
}

.hissiyat-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--purple-main);
    border-radius: 25px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.hissiyat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(107, 63, 160, 0.5);
    background: rgba(107, 63, 160, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hissiyat-close:hover {
    background: var(--purple-main);
    transform: rotate(90deg);
}

.hissiyat-test {
    text-align: center;
}

.hissiyat-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(107, 63, 160, 0.2);
}

.hissiyat-header span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hissiyat-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.hissiyat-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal içindeki kartlar için düzenleme */
.hissiyat-modal .spirit-card,
.hissiyat-modal .aura-card,
.hissiyat-modal .pastlife-card,
.hissiyat-modal .personality-card {
    background: transparent;
    border: none;
    padding: 0;
}

@media (max-width: 992px) {
    .hissiyat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hissiyat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hissiyat-modal-content {
        padding: 1.5rem;
        max-height: 90vh;
    }
    
    .rect-choice-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   REKTİFİKASYON HESAPLAYICI
   ============================================ */

.rectification-card {
    text-align: left;
}

.rect-step h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.rect-input-group {
    margin-bottom: 1rem;
}

.rect-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.rect-input-group input,
.rect-input-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(107, 63, 160, 0.3);
    border-radius: 10px;
    background: var(--bg-dark);
    color: white;
    font-size: 1rem;
}

.rect-input-group select option {
    background: var(--bg-dark);
}

.rect-next,
.rect-calculate {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.rect-next {
    background: var(--gradient-purple);
    color: white;
}

.rect-calculate {
    background: var(--gradient-mystical);
    color: white;
    font-size: 1.1rem;
}

.rect-next:hover,
.rect-calculate:hover {
    transform: scale(1.02);
}

.rect-options {
    margin-bottom: 1.5rem;
}

.rect-options > p {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.rect-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.rect-choice {
    padding: 0.8rem;
    border: 2px solid rgba(107, 63, 160, 0.3);
    border-radius: 10px;
    background: rgba(107, 63, 160, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.rect-choice:hover {
    border-color: var(--purple-light);
}

.rect-choice.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
}

.rect-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

.rect-event {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(107, 63, 160, 0.1);
    border-radius: 10px;
}

.rect-event label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.rect-event input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.rect-event input[type="number"] {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 8px;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

/* Rektifikasyon Sonuç */
.rect-result {
    text-align: center;
}

.rect-result-header {
    margin-bottom: 1.5rem;
}

.rect-result-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rect-result-header h4 {
    font-family: 'Cinzel', serif;
    color: var(--purple-light);
}

.rect-time-box {
    background: var(--gradient-mystical);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.rect-time {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.rect-time-box p {
    margin: 0;
    opacity: 0.8;
}

.rect-ascendant {
    margin-bottom: 1.5rem;
}

.rect-ascendant h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.rect-asc-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.rect-asc-symbol {
    font-size: 3rem;
}

.rect-asc-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
}

.rect-explanation {
    background: rgba(107, 63, 160, 0.1);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.rect-explanation h4 {
    font-size: 0.9rem;
    color: var(--purple-light);
    margin-bottom: 0.5rem;
}

.rect-explanation p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.rect-traits {
    text-align: left;
    margin-bottom: 1.5rem;
}

.rect-traits h4 {
    font-size: 0.9rem;
    color: var(--purple-light);
    margin-bottom: 0.5rem;
}

.rect-traits ul {
    list-style: none;
    padding: 0;
}

.rect-traits li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.rect-traits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.rect-result button {
    background: var(--gradient-purple);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}
