/* Combined Frontend Styles for Akasha Analysis Plugin */

/* --- From akasha-couple-premium.css --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset und Base Styles */
.akasha-couple-analysis * {
    box-sizing: border-box;
}

.akasha-couple-analysis {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
}

/* Container */
.akasha-couple-analysis .akasha-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Goldene Akzente */
.akasha-couple-analysis .gold-accent {
    background: linear-gradient(135deg, #D4AF37, #F4E27C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Section */
.akasha-couple-analysis .akasha-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.akasha-couple-analysis .akasha-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #D4AF37, #F4E27C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.akasha-couple-analysis .akasha-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.akasha-couple-analysis .akasha-subtitle {
    font-size: 1.1rem;
    color: #B8B8B8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Notice Styles */
.akasha-couple-analysis .akasha-notice {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 226, 124, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.akasha-couple-analysis .akasha-notice.akasha-success {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 226, 124, 0.08));
}

.akasha-couple-analysis .akasha-notice.akasha-error {
    border-color: rgba(255, 99, 99, 0.5);
    background: linear-gradient(135deg, rgba(255, 99, 99, 0.15), rgba(255, 132, 132, 0.08));
}

/* Form Styles */
.akasha-couple-analysis .akasha-form {
    background: rgba(15, 15, 15, 0.95);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin-bottom: 40px;
}

.akasha-couple-analysis .akasha-partner-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.akasha-couple-analysis .akasha-partner-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4AF37;
    display: flex;
    align-items: center;
    gap: 10px;
}

.akasha-couple-analysis .akasha-partner-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #D4AF37, #F4E27C);
    border-radius: 2px;
}

.akasha-couple-analysis .akasha-form input,
.akasha-couple-analysis .akasha-form select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.akasha-couple-analysis .akasha-form input:focus,
.akasha-couple-analysis .akasha-form select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.akasha-couple-analysis .akasha-form input::placeholder {
    color: #B8B8B8;
}

.akasha-couple-analysis .akasha-email-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 226, 124, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
}

.akasha-couple-analysis .akasha-form button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #D4AF37, #F4E27C);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.akasha-couple-analysis .akasha-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.akasha-couple-analysis .akasha-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading Animation */
.akasha-couple-analysis .akasha-loading {
    background: rgba(15, 15, 15, 0.95);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin-bottom: 40px;
}

.akasha-couple-analysis .akasha-loading-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #D4AF37;
}

.akasha-couple-analysis .akasha-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid #D4AF37;
    border-radius: 50%;
    animation: akasha-spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes akasha-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.akasha-couple-analysis .akasha-loading-progress {
    margin: 30px 0;
}

.akasha-couple-analysis .akasha-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.akasha-couple-analysis .akasha-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #F4E27C);
    border-radius: 3px;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.akasha-couple-analysis .akasha-progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D4AF37;
}

.akasha-couple-analysis .akasha-loading-steps {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    gap: 20px;
    margin: 40px 0;
}

.akasha-couple-analysis .akasha-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.akasha-couple-analysis .akasha-step.active {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.akasha-couple-analysis .akasha-step.completed {
    border-color: rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.1);
}

.akasha-couple-analysis .akasha-step-icon {
    font-size: 24px;
    margin-bottom: 15px;
    color: #D4AF37;
}

.akasha-couple-analysis .akasha-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.akasha-couple-analysis .akasha-step p {
    font-size: 0.9rem;
    color: #B8B8B8;
    line-height: 1.6;
}

.akasha-couple-analysis .akasha-loading-info {
    margin-top: 30px;
    color: #B8B8B8;
}

.akasha-couple-analysis .akasha-loading-info p {
    margin: 8px 0;
    font-size: 0.95rem;
}

/* Results Section */
.akasha-couple-analysis .akasha-results {
    background: rgba(15, 15, 15, 0.95);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.akasha-couple-analysis .akasha-partners-overview {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    text-align: center;
}

.akasha-couple-analysis .akasha-partner-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.akasha-couple-analysis .akasha-partner-summary:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.akasha-couple-analysis .akasha-partner-summary h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #D4AF37;
}

.akasha-couple-analysis .akasha-partner-summary p {
    color: #B8B8B8;
    margin: 8px 0;
    font-size: 0.95rem;
}

.akasha-couple-analysis .akasha-heart-divider {
    font-size: 3rem;
    color: #D4AF37;
    animation: akasha-pulse 2s infinite;
}

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

/* Harmony Score */
.akasha-couple-analysis .akasha-harmony-score-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 226, 124, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.akasha-couple-analysis .akasha-harmony-score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.akasha-couple-analysis .akasha-harmony-heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #F4E27C);
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    position: relative;
}

.akasha-couple-analysis .akasha-harmony-heart::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #F4E27C);
    opacity: 0.3;
    z-index: -1;
    animation: akasha-pulse 3s infinite;
}

.akasha-couple-analysis .akasha-harmony-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.akasha-couple-analysis .akasha-harmony-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #D4AF37;
}

.akasha-couple-analysis .akasha-harmony-level {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.akasha-couple-analysis .akasha-harmony-info p {
    font-size: 1.1rem;
    color: #B8B8B8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Match Score */
.akasha-couple-analysis .akasha-match-score-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.akasha-couple-analysis .akasha-match-score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.akasha-couple-analysis .akasha-match-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
}

.akasha-couple-analysis .akasha-match-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.akasha-couple-analysis .akasha-match-level {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.akasha-couple-analysis .akasha-match-info p {
    color: #B8B8B8;
    font-size: 0.95rem;
}

/* Analysis Content */
.akasha-couple-analysis .akasha-analysis-section {
    margin: 50px 0;
}

.akasha-couple-analysis .akasha-analysis-section h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #D4AF37;
}

.akasha-couple-analysis .akasha-analysis-section h4::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #D4AF37, #F4E27C);
    border-radius: 2px;
}

.akasha-couple-analysis .akasha-analysis-section > div {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.8;
    font-size: 1.05rem;
}

.akasha-couple-analysis .akasha-analysis-section h3 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-analysis-section h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-analysis-section ul {
    list-style: none;
    padding-left: 0;
}

.akasha-couple-analysis .akasha-analysis-section li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
}

.akasha-couple-analysis .akasha-analysis-section li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Info Box */
.akasha-couple-analysis .akasha-info-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 226, 124, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.akasha-couple-analysis .akasha-info-box h4 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-info-box ul {
    list-style: none;
    padding: 0;
}

.akasha-couple-analysis .akasha-info-box li {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 1rem;
}

.akasha-couple-analysis .akasha-info-box .dashicons {
    color: #D4AF37;
    margin-right: 12px;
    font-size: 18px;
}

.akasha-couple-analysis .akasha-notice-text {
    color: #B8B8B8;
    font-size: 0.95rem;
    margin-top: 20px;
    font-style: italic;
}

/* Error and Success Messages */
.akasha-couple-analysis .akasha-error,
.akasha-couple-analysis .akasha-success {
    padding: 15px 20px;
    border-radius: 12px;
    margin: 15px 0;
    font-weight: 500;
}

.akasha-couple-analysis .akasha-error {
    background: rgba(255, 99, 99, 0.1);
    border: 1px solid rgba(255, 99, 99, 0.3);
    color: #ff9999;
}

.akasha-couple-analysis .akasha-success {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .akasha-couple-analysis {
        padding: 20px 15px;
        margin: 0; /* Remove margins for mobile view */
    }
    
    .akasha-couple-analysis .akasha-title {
        font-size: 2rem;
    }
    
    .akasha-couple-analysis .akasha-partners-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .akasha-couple-analysis .akasha-heart-divider {
        order: -1;
        font-size: 2rem;
    }
    
    .akasha-couple-analysis .akasha-loading-steps {
        grid-template-columns: 1fr;
    }
    
    .akasha-couple-analysis .akasha-loading,
    .akasha-couple-analysis .akasha-results,
    .akasha-couple-analysis .akasha-form {
        padding: 30px 25px;
    }
    
    .akasha-couple-analysis .akasha-harmony-heart {
        width: 100px;
        height: 100px;
        font-size: 1.8rem;
    }
    
    .akasha-couple-analysis .akasha-harmony-number {
        font-size: 2rem;
    }
}

/* Smooth Entrance Animation */
.akasha-couple-analysis .akasha-fade-in {
    animation: akasha-fadeInUp 0.8s ease-out;
}

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

/* Side fade effects */
.akasha-couple-analysis .akasha-side-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 1;
}

.akasha-couple-analysis .akasha-side-fade.left {
    left: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8), transparent);
}

.akasha-couple-analysis .akasha-side-fade.right {
    right: 0;
    background: linear-gradient(270deg, rgba(0,0,0,0.8), transparent);
}
/* Match Score Section (replacing Harmony Score) */
.akasha-couple-analysis .akasha-match-score-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 20px;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.akasha-couple-analysis .akasha-match-score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.akasha-couple-analysis .akasha-match-heart,
.akasha-couple-analysis .akasha-harmony-heart {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 3px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    animation: akasha-pulse 3s ease-in-out infinite;
}

.akasha-couple-analysis .akasha-match-number,
.akasha-couple-analysis .akasha-harmony-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: inherit;
}

.akasha-couple-analysis .akasha-match-info h4,
.akasha-couple-analysis .akasha-harmony-info h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #D4AF37;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-match-level,
.akasha-couple-analysis .akasha-harmony-level {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.akasha-couple-analysis .akasha-match-info p,
.akasha-couple-analysis .akasha-harmony-info p {
    color: #B8B8B8;
    font-size: 1rem;
    line-height: 1.6;
}

/* Teasers Section */
.akasha-couple-analysis .akasha-teasers-section {
    margin: 60px 0;
    padding: 40px 20px;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.akasha-couple-analysis .akasha-teasers-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #D4AF37;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-teaser-intro {
    text-align: center;
    color: #B8B8B8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.akasha-couple-analysis .akasha-teaser-card {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.akasha-couple-analysis .akasha-teaser-card h4 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-kernzahlen h5,
.akasha-couple-analysis .akasha-eigenschaften h5 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.akasha-couple-analysis .akasha-kernzahlen ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.akasha-couple-analysis .akasha-kernzahlen li {
    color: #B8B8B8;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.akasha-couple-analysis .akasha-eigenschaften-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.akasha-couple-analysis .akasha-eigenschaft-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 226, 124, 0.1));
    color: #D4AF37;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.akasha-couple-analysis .akasha-teaser-preview {
    color: #B8B8B8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.akasha-couple-analysis .akasha-teaser-blur {
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(25, 25, 25, 0.9));
    padding: 20px 0 10px;
    text-align: center;
}

.akasha-couple-analysis .akasha-blur-text {
    color: #D4AF37;
    font-style: italic;
    font-size: 0.9rem;
}

/* Premium Preview Section */
.akasha-couple-analysis .akasha-premium-preview-section {
    margin: 60px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(15, 15, 15, 0.8));
    border-radius: 24px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.akasha-couple-analysis .akasha-premium-preview-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #D4AF37;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.akasha-couple-analysis .akasha-premium-feature {
    background: rgba(25, 25, 25, 0.6);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.akasha-couple-analysis .akasha-feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.akasha-couple-analysis .akasha-premium-feature h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-premium-feature p {
    color: #B8B8B8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Call to Action Section */
.akasha-couple-analysis .akasha-cta-section {
    margin: 60px 0;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 226, 124, 0.08));
    border-radius: 24px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.akasha-couple-analysis .akasha-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: akasha-rotate 20s linear infinite;
}

.akasha-couple-analysis .akasha-cta-container {
    position: relative;
    z-index: 2;
}

.akasha-couple-analysis .akasha-cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #D4AF37;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-cta-section > p {
    font-size: 1.1rem;
    color: #B8B8B8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.akasha-couple-analysis .akasha-cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
    text-align: left;
}

.akasha-couple-analysis .akasha-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.akasha-couple-analysis .akasha-check {
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.1rem;
}

.akasha-couple-analysis .akasha-cta-pricing {
    margin: 40px 0 30px;
}

.akasha-couple-analysis .akasha-price {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 226, 124, 0.1));
    padding: 20px 30px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.akasha-couple-analysis .akasha-price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-right: 10px;
}

.akasha-couple-analysis .akasha-price-note {
    color: #B8B8B8;
    font-size: 1rem;
}

.akasha-couple-analysis .akasha-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #F4E27C);
    color: #000000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.akasha-couple-analysis .akasha-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #F4E27C, #D4AF37);
    color: #000000;
    text-decoration: none;
}

.akasha-couple-analysis .akasha-cta-guarantee {
    color: #B8B8B8;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

@keyframes akasha-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .akasha-couple-analysis .akasha-match-score-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .akasha-couple-analysis .akasha-teasers-grid {
        grid-template-columns: 1fr;
    }
    
    .akasha-couple-analysis .akasha-premium-features {
        grid-template-columns: 1fr;
    }
    
    .akasha-couple-analysis .akasha-cta-benefits {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .akasha-couple-analysis .akasha-cta-section h3 {
        font-size: 1.8rem;
    }
    
    .akasha-couple-analysis .akasha-price-main {
        font-size: 2rem;
    }
}

/* Interpretations Preview Styles */
.akasha-couple-analysis .akasha-interpretations-preview {
    margin: 20px 0;
    padding: 15px;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.akasha-couple-analysis .akasha-interpretations-preview h5 {
    color: #D4AF37;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.akasha-couple-analysis .akasha-interpretation-item {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(25, 25, 25, 0.4);
    border-radius: 8px;
    border-left: 3px solid rgba(212, 175, 55, 0.3);
}

.akasha-couple-analysis .akasha-interpretation-item:last-child {
    margin-bottom: 0;
}

.akasha-couple-analysis .akasha-interpretation-item h6 {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.akasha-couple-analysis .akasha-interpretation-item p {
    color: #B8B8B8;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Teaser Cards */
.akasha-couple-analysis .akasha-teaser-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.8));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.akasha-couple-analysis .akasha-teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.akasha-couple-analysis .akasha-teaser-card h4 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Enhanced blur effect */
.akasha-couple-analysis .akasha-teaser-blur {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(25, 25, 25, 0.7) 30%, rgba(25, 25, 25, 0.9) 70%, rgba(25, 25, 25, 1) 100%);
    padding: 30px 0 15px;
    text-align: center;
    margin-top: 20px;
}

.akasha-couple-analysis .akasha-teaser-blur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(25, 25, 25, 0.3));
    filter: blur(3px);
}

.akasha-couple-analysis .akasha-blur-text {
    color: #D4AF37;
    font-style: italic;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .akasha-couple-analysis .akasha-interpretation-item {
        padding: 10px;
    }
    
    .akasha-couple-analysis .akasha-interpretation-item h6 {
        font-size: 0.85rem;
    }
    
    .akasha-couple-analysis .akasha-interpretation-item p {
        font-size: 0.8rem;
    }
    
    .akasha-couple-analysis .akasha-teaser-card {
        padding: 20px;
    }
    
    .akasha-couple-analysis .akasha-teaser-card h4 {
        font-size: 1.1rem;
    }
}

/* --- From background-overlay.css --- */
/* Gold-themed spiritual background effects */

.spiritual-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.spiritual-particle {
  position: absolute;
  background-color: rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
  box-shadow: 0 0 10px 2px rgba(242, 214, 117, 0.3);
}

.spiritual-particle:nth-child(1) {
  width: 20px;
  height: 20px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  opacity: 0.7;
}

.spiritual-particle:nth-child(2) {
  width: 15px;
  height: 15px;
  top: 20%;
  left: 80%;
  animation-delay: 2s;
  opacity: 0.6;
}

.spiritual-particle:nth-child(3) {
  width: 25px;
  height: 25px;
  top: 80%;
  left: 40%;
  animation-delay: 4s;
  opacity: 0.5;
}

.spiritual-particle:nth-child(4) {
  width: 12px;
  height: 12px;
  top: 40%;
  left: 30%;
  animation-delay: 6s;
  opacity: 0.8;
}

.spiritual-particle:nth-child(5) {
  width: 18px;
  height: 18px;
  top: 70%;
  left: 70%;
  animation-delay: 8s;
  opacity: 0.7;
}

.spiritual-particle:nth-child(6) {
  width: 10px;
  height: 10px;
  top: 30%;
  left: 60%;
  animation-delay: 10s;
  opacity: 0.6;
}

.spiritual-particle:nth-child(7) {
  width: 22px;
  height: 22px;
  top: 60%;
  left: 20%;
  animation-delay: 12s;
  opacity: 0.5;
}

.spiritual-particle:nth-child(8) {
  width: 14px;
  height: 14px;
  top: 50%;
  left: 90%;
  animation-delay: 14s;
  opacity: 0.4;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(0) translateX(20px);
  }
  75% {
    transform: translateY(20px) translateX(10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.cosmic-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(242, 214, 117, 0.2) 0%, rgba(212, 175, 55, 0.0) 70%);
  animation: pulse 10s infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

/* Golden burst of light */
.golden-burst {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 214, 117, 0.4) 0%, rgba(212, 175, 55, 0.1) 40%, transparent 70%);
  animation: burst 15s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 0;
}

.golden-burst:nth-child(1) {
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.golden-burst:nth-child(2) {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  animation-delay: 5s;
}

@keyframes burst {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
}

/* --- From akasha-character-analysis.css --- */
.akasha-character-analysis {
    position: relative; /* For positioning fade elements */
    margin: 2rem auto;
    font-family: "Montserrat", Arial, sans-serif;
}
.akasha-character-analysis.light {
    background-color: #ffffff;
    color: #000000;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.akasha-character-analysis.dark {
    background-color: #000000;
    color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Adjusted shadow for dark */
}
.akasha-character-analysis h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
    color: #D4AF37; /* Gold for both themes */
}
.akasha-character-analysis h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}
.akasha-character-analysis.light h3 {
    color: #000000;
}
.akasha-character-analysis.dark h3 {
    color: #ffffff;
}
.akasha-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.akasha-form input {
    padding: 12px 15px;
    border: 1px solid #D4AF37; /* Gold for both themes */
    border-radius: 5px;
    font-size: 1rem;
    background-color: #ffffff; /* White for both themes */
    color: #000000; /* Black for both themes */
}
.akasha-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #D4AF37; /* Gold for both themes */
    color: #000000; /* Black text for both themes */
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    margin-top: 1rem;
}
.akasha-form button:hover {
    background-color: #000000; /* Black for both themes */
    color: #D4AF37; /* Gold text for both themes */
    border: 1px solid #D4AF37; /* Gold border for both themes */
}
.akasha-results {
    display: block;
    margin-top: 2rem;
}
.akasha-results.hidden {
    display: none;
}
.akasha-results.active {
    animation: fadeIn 0.5s ease-in;
}
.akasha-result-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #D4AF37; /* Gold for both themes */
}
.akasha-result-section:last-child {
    border-bottom: none;
}
.akasha-result-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #D4AF37; /* Gold for both themes */
    display: flex;
    align-items: center;
    gap: 10px;
}
.akasha-result-title i {
    font-size: 1.2rem;
}
.akasha-result-content {
    font-size: 1rem;
    line-height: 1.6;
}
.akasha-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 8px;
}
.akasha-character-analysis.light .akasha-cta {
    background-color: #ffffff;
}
.akasha-character-analysis.dark .akasha-cta {
    background-color: #000000;
}
.akasha-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.akasha-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #D4AF37; /* Gold for both themes */
    color: #000000 !important; /* Black text for both themes */
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.akasha-cta-button:hover {
    background-color: #000000; /* Black for both themes */
    color: #D4AF37 !important; /* Gold text for both themes */
    border: 1px solid #D4AF37; /* Gold border for both themes */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}
.akasha-error {
    color: #D4AF37; /* Gold for errors */
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.akasha-loading {
    display: none;
    text-align: center;
    margin: 2rem 0;
}
.akasha-loading.active {
    display: block;
}
.akasha-spinner {
    border-top: 5px solid #D4AF37; /* Gold spinner color */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
.akasha-character-analysis.light .akasha-spinner {
    border: 5px solid #ffffff; /* White base for light theme */
    border-top-color: #D4AF37; /* Ensure spinner part is gold */
}
.akasha-character-analysis.dark .akasha-spinner {
    border: 5px solid #000000; /* Black base for dark theme */
    border-top-color: #D4AF37; /* Ensure spinner part is gold */
}
.akasha-traits-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.akasha-trait {
    border: 1px solid #D4AF37; /* Gold border */
    padding: 12px 34px;
    border-radius: 40px;
    font-size: 0.9rem;
    display: inline-block; 
    margin: 15px 5px; 
}
.akasha-character-analysis.light .akasha-trait {
    background-color: #ffffff;
    color: #000000;
}
.akasha-character-analysis.dark .akasha-trait {
    background-color: #000000;
    color: #ffffff;
}
.akasha-trait-list h5 {
    width:100%;
    text-align: left;
}
.akasha-trait-block { 
    width: 100%;
    margin-bottom: 1rem; 
    padding: 20px 30px;
    border-radius: 5px;
    border: 1px solid #D4AF37; /* Gold border */
}
.akasha-character-analysis.light .akasha-trait-block {
    background-color: #ffffff;
}
.akasha-character-analysis.dark .akasha-trait-block {
    background-color: #000000;
}
.akasha-trait-block.suggestions { 
    margin-top: 1.5rem;
}
.akasha-star-rating {
    color: #D4AF37; /* Gold for stars */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.akasha-numerology-chart {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: center;
}
.akasha-numerology-number {
    border-radius: 50%;
    width: 60px;
    min-height: 60px; 
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: flex-start; 
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4AF37; /* Gold for numbers */
    border: 2px solid #D4AF37; /* Gold border */
    position: relative; 
    padding: 10px 5px 5px 5px; 
    box-sizing: border-box; 
}
.akasha-character-analysis.light .akasha-numerology-number {
    background: #ffffff;
}
.akasha-character-analysis.dark .akasha-numerology-number {
    background: #000000;
}
.akasha-numerology-label {
    font-size: 0.8rem;
    white-space: normal; 
    text-align: center; 
    margin-top: 5px; 
    line-height: 1.2; 
    width: 100%; 
}
.akasha-character-analysis.light .akasha-numerology-label {
    color: #000000;
}
.akasha-character-analysis.dark .akasha-numerology-label {
    color: #ffffff;
}
.akasha-disclaimer {
    font-size: 0.8rem;
    margin-top: 2rem;
    text-align: center;
}
.akasha-character-analysis.light .akasha-disclaimer {
    color: #000000; 
}
.akasha-character-analysis.dark .akasha-disclaimer {
    color: #D4AF37; 
}
#akasha-analysis-sticky-header.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999; 
    background-color: #000; /* Inherits from .akasha-character-analysis parent */
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.akasha-side-fade { /* These styles might be for elements no longer used by the JS for fading */
    position: fixed;
    top: 0;
    bottom: 0;
    width: 15%; 
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
    z-index: 998; 
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; 
}
.akasha-side-fade.left {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.akasha-side-fade.right {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.akasha-analysis-sticky-header.is-sticky .akasha-result-title,
.akasha-analysis-sticky-header.is-sticky .akasha-result-content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem; 
    padding-right: 2rem;
}

/* Accordion Styles */
.akasha-accordion-item {
    border: 1px solid #D4AF37; /* Gold border */
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden; /* Ensures border-radius is respected by children */
}

.akasha-accordion-header {
    background-color: #000000; /* Black background for header */
    color: #D4AF37; /* Gold text */
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}
.akasha-character-analysis.light .akasha-accordion-header {
    background-color: #f8f8f8; /* Light grey for light theme header */
    color: #333333; /* Darker text for light theme */
    border-bottom: 1px solid #D4AF37; /* Gold bottom border for light theme header */
}


.akasha-accordion-header:hover {
    background-color: #D4AF37; /* Gold background on hover */
    color: #000000; /* Black text on hover */
}
.akasha-character-analysis.light .akasha-accordion-header:hover {
    background-color: #e0e0e0;
}


.akasha-accordion-header .dashicons {
    font-size: 1rem;
    transition: transform 0.3s ease-in-out;
}

.akasha-accordion-header.active .dashicons-arrow-down {
    transform: rotate(180deg);
}
.akasha-accordion-header.active .dashicons-arrow-right {
    transform: rotate(90deg);
}


.akasha-accordion-content {
    padding: 0 20px; /* Initially no padding, will be set when open */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    background-color: #ffffff; /* White background for content */
    color: #000000; /* Black text for content */
}

.akasha-character-analysis.dark .akasha-accordion-content {
    background-color: #1c1c1c; /* Darker grey for content in dark theme */
    color: #ffffff; /* White text for content in dark theme */
}

.akasha-accordion-content.active {
    padding: 15px 20px; /* Padding when open */
    max-height: 1000px; /* Adjust as needed, should be larger than any content */
}

.akasha-accordion-title-text {
    margin-left: 10px;
}

.akasha-accordion-header .dashicons-before::before {
    font-size: 1.2rem; /* Ensure icon is visible */
    margin-right: 8px;
}
