/* Akasha Couple Only Analysis Styles - Exakt wie im Screenshot */

.akasha-couple-analysis {
    margin: 2rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

.akasha-couple-analysis.light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #333333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Header Styling - wie im Screenshot */
.akasha-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.akasha-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #DAA520, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    line-height: 1.2;
}

.akasha-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Form Container */
#akasha-couple-form-wrapper {
    position: relative;
    z-index: 2;
}

/* Form Styling - kompakte Version wie im Screenshot mit korrekten Abständen */
.akasha-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.akasha-form input,
.akasha-form select {
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    color: #333333;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 0.75rem;
}

.akasha-form input::placeholder {
    color: rgba(0,0,0,0.5);
    font-weight: normal;
}

.akasha-form input:focus,
.akasha-form select:focus {
    outline: none;
    background: rgba(255,255,255,1);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
    transform: translateY(-2px);
}

/* Partner Sections - mit korrekten Abständen zwischen den Feldern */
.akasha-partner-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.1);
}

.akasha-partner-section h4 {
    margin-bottom: 1.5rem;
    color: #DAA520;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.akasha-email-section {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: rgba(218, 165, 32, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

/* Button Styling - exakt wie im Screenshot */
#akasha-submit-couple-form {
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #DAA520, #FFD700);
    color: #000000;
    margin-top: 1.5rem;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
}

#akasha-submit-couple-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

#akasha-submit-couple-form:active {
    transform: translateY(-1px);
}

.akasha-btn-secondary {
    background: transparent;
    color: #DAA520;
    border: 2px solid #DAA520;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.akasha-btn-secondary:hover {
    background: rgba(218, 165, 32, 0.1);
    transform: translateY(-2px);
}

/* Info Box - minimal und elegant */
.akasha-info-box {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    position: relative;
    z-index: 2;
}

.akasha-info-box h4 {
    color: #DAA520;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

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

.akasha-info-box li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.akasha-info-box .dashicons {
    color: #DAA520;
    font-size: 1.2rem;
}

.akasha-notice-text {
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: center;
    font-style: italic;
    color: rgba(255,255,255,0.7);
}

/* Loading Animation - Erweitert mit Schritten */
/* Loading Styles - KRITISCHER FIX: Gleiche Breite und Positionierung wie Haupt-Container */
.akasha-loading {
    max-width: 100%; /* Gleiche max-width wie .akasha-couple-analysis */
    margin: 1rem auto; /* Zentriert wie der Haupt-Container */
    padding: 3rem; /* Gleiche Padding wie der Haupt-Container */
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.95);
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
    display: none; /* Default versteckt */
    min-height: 500px; /* Mindesthöhe für bessere Platznutzung */
}

.akasha-loading.show {
    display: block; /* Sichtbar machen */
}

.akasha-loading-container {
    max-width: 100%;
    margin: 0;
    text-align: center;
    height: 100%; /* Volle Höhe nutzen */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Verteilung über die gesamte Höhe */
}

.akasha-loading h3 {
    color: #DAA520;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.akasha-loading p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

.akasha-spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(218, 165, 32, 0.3);
    border-top: 6px solid #DAA520;
    border-radius: 50%;
    animation: akashaSpinner 1.5s linear infinite;
    margin: 0 auto 2rem;
}

/* Loading Steps - verbesserte Farben und Platznutzung */
.akasha-loading-steps {
    margin: 2rem 0; /* Kompakter für bessere Platznutzung */
    text-align: left;
    flex-grow: 1; /* Nutzt verfügbaren Platz optimal */
}

.akasha-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem; /* Kompakter */
    padding: 1.2rem; /* Leicht reduziert */
    background: rgba(218, 165, 32, 0.15); /* Sichtbarer Hintergrund */
    border-radius: 15px;
    border-left: 4px solid rgba(218, 165, 32, 0.3); /* Sichtbarere Standard-Border */
    transition: all 0.8s ease;
    border: 1px solid rgba(218, 165, 32, 0.2); /* Zusätzlicher Rahmen für bessere Sichtbarkeit */
}

.akasha-step.active {
    border-left-color: #FFD700; /* Helleres Gold für bessere Sichtbarkeit */
    background: rgba(255, 215, 0, 0.25); /* Hellerer, sichtbarerer Hintergrund */
    transform: scale(1.02);
    border-color: #FFD700; /* Vollständiger goldener Rahmen */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); /* Leuchteffekt */
}

.akasha-step.completed {
    border-left-color: #00D084; /* Helleres Grün */
    background: rgba(0, 208, 132, 0.15); /* Sichtbarerer grüner Hintergrund */
    border-color: #00D084;
}

.akasha-step-icon {
    flex-shrink: 0;
    width: 55px; /* Etwas größer für bessere Sichtbarkeit */
    height: 55px;
    background: rgba(218, 165, 32, 0.3); /* Sichtbarerer Hintergrund */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(218, 165, 32, 0.5); /* Deutlicherer Rahmen */
}

.akasha-step.active .akasha-step-icon {
    background: linear-gradient(135deg, #FFD700, #DAA520); /* Gradient für mehr visuellen Impact */
    animation: pulse 2s infinite;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.akasha-step.completed .akasha-step-icon {
    background: linear-gradient(135deg, #00D084, #00A86B); /* Grüner Gradient */
    border-color: #00D084;
}

.akasha-step-icon .dashicons {
    color: #ffffff;
    font-size: 1.6rem; /* Größere Icons */
    font-weight: bold;
}

.akasha-step-content {
    flex-grow: 1;
}

.akasha-step-content h4 {
    color: #FFD700; /* Helleres Gold für bessere Lesbarkeit */
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem; /* Etwas größer */
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Leichter Schatten für bessere Lesbarkeit */
}

.akasha-step.completed .akasha-step-content h4 {
    color: #00D084; /* Helleres Grün */
}

.akasha-step-content p {
    margin: 0;
    color: rgba(255,255,255,0.9); /* Hellerer Text für bessere Lesbarkeit */
    font-size: 1rem;
    line-height: 1.4;
}

.akasha-step-status {
    flex-shrink: 0;
}

.akasha-loading-dot {
    width: 15px; /* Größer für bessere Sichtbarkeit */
    height: 15px;
    background: rgba(255, 215, 0, 0.4); /* Sichtbarerer Hintergrund */
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.6); /* Rahmen für bessere Sichtbarkeit */
}

.akasha-step.active .akasha-loading-dot {
    background: #FFD700; /* Helleres Gold */
    animation: pulse 1.5s infinite;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.akasha-step.completed .akasha-loading-dot {
    background: #00D084; /* Helleres Grün */
    animation: none;
    border-color: #00D084;
}

/* Progress Bar - optimiert für bessere Sichtbarkeit */
.akasha-loading-progress {
    margin: 2rem 0 1.5rem 0; /* Kompakter für bessere Platznutzung */
    background: rgba(255,255,255,0.05); /* Subtiler Hintergrund */
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.akasha-progress-bar {
    width: 100%;
    height: 12px; /* Dickerer Balken für bessere Sichtbarkeit */
    background: rgba(0,0,0,0.3); /* Dunklerer Kontrast */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.akasha-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #DAA520, #FFD700); /* Lebendigerer Gradient */
    background-size: 200% 100%; /* Für Shimmer-Effekt */
    border-radius: 6px;
    width: 0%;
    transition: width 0.8s ease;
    animation: shimmer 2s infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); /* Leuchteffekt */
}

.akasha-progress-text {
    color: #FFD700; /* Hellere Farbe für bessere Sichtbarkeit */
    font-size: 1.1rem; /* Etwas größer */
    font-weight: bold;
    text-align: center;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Loading Info - kompakter und besser sichtbar */
.akasha-loading-info {
    margin-top: 1.5rem; /* Kompakter */
    padding: 1.2rem;
    background: rgba(255, 215, 0, 0.08); /* Sichtbarerer Hintergrund */
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3); /* Sichtbarerer Rahmen */
}

.akasha-loading-info p {
    color: rgba(255,255,255,0.9); /* Hellerer Text */
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Animationen - verbessert für bessere Sichtbarkeit */
@keyframes akashaSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { 
        background-position: -200% 0; 
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    100% { 
        background-position: 200% 0; 
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.05);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.akasha-progress-fill {
    background: linear-gradient(90deg, 
        #DAA520 0%, 
        #FFD700 25%, 
        #DAA520 50%, 
        #FFD700 75%, 
        #DAA520 100%);
    background-size: 200% 100%;
}

/* Test buttons for debugging */
.akasha-test-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.akasha-test-btn:hover {
    background: #ff5252;
}

/* Error and Success Messages */
.akasha-error {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ff8c00;
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 1rem;
}

.akasha-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 1rem;
}

.akasha-notice {
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 1rem;
}

.akasha-notice.akasha-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

/* Results Section */
.akasha-results {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Enhanced couple analysis results styling */
.akasha-couple-analysis-results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 40px 0;
}
.akasha-couple-analysis-results h3 {
    text-align: center;
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Score sections styling */
.akasha-harmony-score-section,
.akasha-match-score-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.akasha-harmony-score-container,
.akasha-match-score-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.akasha-harmony-heart,
.akasha-match-heart {
    font-size: 4em;
    text-align: center;
    min-width: 120px;
    position: relative;
}

.akasha-harmony-number,
.akasha-match-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6em;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.akasha-harmony-info h4,
.akasha-match-info h4 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
}

.akasha-harmony-level,
.akasha-match-level {
    font-size: 1.2em;
    font-weight: bold;
    margin: 5px 0;
}

/* Match Score Circle Display */
.akasha-match-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    position: relative;
    margin: 0 auto 20px auto;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.akasha-match-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.akasha-match-number {
    font-size: 42px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.akasha-match-score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.akasha-match-info {
    text-align: center;
    margin-top: 15px;
}

.akasha-match-info h4 {
    font-size: 1.4em;
    margin-bottom: 5px;
    color: #ffffff;
}

.akasha-match-level {
    font-size: 1.2em;
    font-weight: bold;
    margin: 5px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Media Queries for Responsive Design */
@media (max-width: 767px) {
    .akasha-couple-analysis {
        margin: 0;
        padding: 1.5rem 0!important;
    }
    
    .akasha-match-circle {
        width: 80px;
        height: 80px;
    }
    
    .akasha-match-number {
        font-size: 26px;
    }
    
    .akasha-match-info h4 {
        font-size: 1.5em;
    }
    
    .akasha-match-level {
        font-size: 1.2em;
    }

    .akasha-couple-analysis .akasha-form button {
        font-size: 0.82rem;
    }
}

/* Media Queries for Responsive Layout */
@media (max-width: 767px) {
    .akasha-couple-analysis {
        margin: 0;
        padding: 1.5rem;
    }
    
    .akasha-match-score-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .akasha-match-circle {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Partners overview */
.akasha-partners-overview {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
}

.akasha-partner-summary {
    flex: 1;
    text-align: center;
    padding: 15px;
}

.akasha-partner-summary h4 {
    font-size: 1.3em;
    color: #DAA520;
    margin-bottom: 8px;
    font-weight: 600;
}

.akasha-partner-summary p {
    margin: 5px 0;
    color: #E0E0E0;
    font-size: 0.95em;
}

.akasha-heart-divider {
    font-size: 2.5em;
    color: #DAA520;
    margin: 0 20px;
    animation: heartbeat 2s ease-in-out infinite;
}

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

/* Harmony Score Section - Dark Theme */
.akasha-harmony-score-section {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.akasha-harmony-score-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.akasha-harmony-heart {
    position: relative;
    font-size: 5em;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.akasha-harmony-number {
    position: absolute;
    font-size: 0.4em;
    font-weight: bold;
    color: #fff;
    bottom: 0px;
    right: 12px;
    background: transparent;
    padding: 3px 8px;
    border-radius: 10px;
}

.akasha-harmony-info h4 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #DAA520;
    font-weight: 700;
}

.akasha-harmony-level {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.akasha-harmony-info p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

/* Match Score Section - Dark Theme */
.akasha-match-score-section {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.akasha-match-score-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.akasha-match-heart {
    position: relative;
    font-size: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.akasha-match-number {
    position: absolute;
    font-size: 0.35em;
    font-weight: bold;
    color: #333;
    bottom: 8px;
    right: 12px;
    background: white;
    padding: 2px 6px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.akasha-match-info h4 {
    font-size: 1.5em;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.akasha-match-level {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.akasha-match-info p {
    font-size: 1em;
    line-height: 1.5;
    color: #E0E0E0;
}

/* Analysis Section - Dark Theme */
.akasha-analysis-section {
    background: rgba(25, 25, 25, 0.8);
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #DAA520;
    color: #ffffff;
}

.akasha-analysis-section h4 {
    font-size: 1.6em;
    color: #DAA520;
    margin-bottom: 20px;
    font-weight: 600;
}

.akasha-analysis-section h3,
.akasha-analysis-section h4,
.akasha-analysis-section h5 {
    color: #DAA520;
    margin-top: 25px;
    margin-bottom: 15px;
}

.akasha-analysis-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.akasha-analysis-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.akasha-analysis-section li {
    margin: 8px 0;
    line-height: 1.6;
    color: #E0E0E0;
}

/* Partner Detailed Analysis - Dark Theme */
.akasha-partner-detailed-analysis {
    background: rgba(15, 15, 15, 0.6);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
}

.akasha-partner-detailed-analysis h4 {
    font-size: 1.4em;
    color: #DAA520;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DAA520;
}

/* Numbers Section */
.akasha-numbers-section {
    margin: 20px 0;
}

.akasha-numbers-section h5 {
    font-size: 1.2em;
    color: #DAA520;
    margin-bottom: 15px;
    font-weight: 600;
}

.akasha-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.akasha-number-item {
    background: rgba(25, 25, 25, 0.6);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.akasha-number-label {
    display: block;
    font-weight: 600;
    color: #B8B8B8;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.akasha-number-value {
    display: block;
    font-size: 1.1em;
    color: #DAA520;
    font-weight: 500;
}

/* Interpretations Section */
.akasha-interpretations-section {
    margin: 20px 0;
}

.akasha-interpretations-section h5 {
    font-size: 1.2em;
    color: #DAA520;
    margin-bottom: 15px;
    font-weight: 600;
}

.akasha-interpretation-item {
    background: rgba(25, 25, 25, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #DAA520;
}

.akasha-interpretation-item h6 {
    font-size: 1.1em;
    color: #DAA520;
    margin-bottom: 10px;
    font-weight: 600;
}

.akasha-interpretation-item p {
    line-height: 1.6;
    color: #E0E0E0;
    margin: 0;
}

/* Premium Upgrade Section */
.akasha-premium-upgrade {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    border: 3px solid #fdcb6e;
    box-shadow: 0 10px 30px rgba(253, 203, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.akasha-premium-upgrade::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.akasha-premium-upgrade h4 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.akasha-price {
    font-size: 3em;
    color: #DAA520;
    font-weight: 900;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.akasha-premium-upgrade p {
    font-size: 1.1em;
    color: #555;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.akasha-premium-benefits {
    text-align: left;
    max-width: 600px;
    margin: 25px auto;
    position: relative;
    z-index: 1;
}

.akasha-premium-benefits li {
    padding: 8px 0;
    color: #444;
    font-size: 1.05em;
    position: relative;
    padding-left: 25px;
}

.akasha-premium-benefits li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 1.2em;
}

.akasha-buy-button {
    display: inline-block;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #000000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.akasha-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #000000;
    text-decoration: none;
}

.akasha-buy-button:active {
    transform: translateY(-1px);
}

/* Analysis Teaser */
.akasha-analysis-teaser {
    position: relative;
    overflow: hidden;
}

.akasha-analysis-teaser::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
}

#privacy_consent {
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .akasha-partners-overview {
        flex-direction: column;
        gap: 20px;
    }
    
    .akasha-heart-divider {
        transform: rotate(90deg);
        margin: 15px 0;
    }
    
    .akasha-harmony-score-container,
    .akasha-match-score-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .akasha-harmony-heart,
    .akasha-match-heart {
        margin: 0 auto;
    }
    
    .akasha-numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .akasha-premium-upgrade {
        padding: 25px 20px;
    }
    
    .akasha-price {
        font-size: 2.2em;
    }
    
    .akasha-buy-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

/* Loading Animation Improvements */
.akasha-loading-container {
    background: transparent;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Enhanced Results Container - Dark Theme */
.akasha-couple-analysis-results {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
}

.akasha-couple-analysis-results h3 {
    text-align: center;
    font-size: 2.2em;
    color: #DAA520;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Admin Recalculate Button Styles */
#recalculate-analysis-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    border: 2px solid #ff6b35 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#recalculate-analysis-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%) !important;
    border-color: #f7931e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

#recalculate-analysis-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

#recalculate-analysis-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

#recalculate-analysis-btn .dashicons {
    margin-right: 8px;
    vertical-align: middle;
}

/* Highlight effect for admin buttons */
.akasha-test-btn {
    margin: 0 5px;
    animation: none;
}

#recalculate-analysis-btn {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Spin animation for loading states */
.spin {
    animation: spin 1s linear infinite;
}

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

/* Public recalculate button styles */
.akasha-recalculate-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

#public-recalculate-analysis-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#public-recalculate-analysis-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

#public-recalculate-analysis-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
