/* Astrology Premium Pro - Frontend CSS */

:root {
    --astro-primary: #667eea;
    --astro-secondary: #764ba2;
    --astro-dark: #1a1a2e;
    --astro-light: #f7fafc;
    --astro-border: #e2e8f0;
    --astro-text: #2d3748;
}

/* Hero Marketing Section */
.astro-hero-section {
    background: linear-gradient(135deg, var(--astro-dark), #16213e);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 24px;
    color: #fff;
}

.astro-hero-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffd700;
}

.astro-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.astro-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.astro-benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    transition: transform 0.2s, background 0.2s;
}

.astro-benefit-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .astro-hero-section {
        padding: 30px 20px;
    }
    .astro-hero-title {
        font-size: 22px;
    }
    .astro-hero-subtitle {
        font-size: 16px;
    }
    .astro-benefit-item {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.astro-app { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--astro-text); line-height: 1.6; }
.astro-card { background: #fff; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); padding: 24px; margin-bottom: 24px; }
.astro-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: var(--astro-primary); }
.astro-form { display: flex; flex-direction: column; gap: 16px; }
.astro-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.astro-field { display: flex; flex-direction: column; gap: 6px; }
.astro-field label { font-weight: 500; font-size: 14px; color: #718096; }
.astro-field input, .astro-field select, .astro-field textarea { padding: 12px 16px; border: 2px solid var(--astro-border); border-radius: 8px; font-size: 16px; }
.astro-field input:focus, .astro-field select:focus { outline: none; border-color: var(--astro-primary); }
.astro-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; background: linear-gradient(135deg, var(--astro-primary), var(--astro-secondary)); color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none; }
.astro-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); color: #fff; }
.astro-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.astro-btn-secondary { background: transparent; color: var(--astro-primary); border: 2px solid var(--astro-primary); }
.astro-btn-small { padding: 8px 16px; font-size: 14px; }
.astro-btn-large { padding: 16px 32px; font-size: 18px; }
.astro-actions { display: flex; gap: 12px; margin-top: 16px; }
.astro-results { margin-top: 24px; }
.astro-results-card { background: linear-gradient(135deg, var(--astro-dark), #16213e); color: #fff; border-radius: 12px; padding: 24px; margin-bottom: 24px; }
.astro-big-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.big-three-item { text-align: center; padding: 16px; background: rgba(255,255,255,0.1); border-radius: 8px; }
.big-three-item .icon { font-size: 32px; display: block; margin-bottom: 8px; }
.big-three-item .label { font-size: 12px; opacity: 0.7; display: block; }
.big-three-item .value { font-size: 18px; font-weight: 600; color: #ffd700; }
.astro-planets-table { width: 100%; border-collapse: collapse; }
.astro-planets-table th, .astro-planets-table td { padding: 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.astro-planets-table th { opacity: 0.7; font-size: 12px; text-transform: uppercase; }
.astro-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.astro-price-card { background: #fff; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); padding: 32px 24px; text-align: center; position: relative; transition: transform 0.3s; }
.astro-price-card:hover { transform: translateY(-4px); }
.astro-price-card.featured { background: linear-gradient(135deg, var(--astro-dark), #16213e); color: #fff; transform: scale(1.05); }
.astro-price-card .plan-icon { font-size: 48px; margin-bottom: 16px; }
.astro-price-card h3 { font-size: 20px; margin-bottom: 16px; }
.astro-price { margin-bottom: 24px; }
.astro-price .current { font-size: 32px; font-weight: 700; color: var(--astro-primary); }
.astro-price-card.featured .current { color: #ffd700; }
.astro-dashboard { max-width: 1200px; margin: 0 auto; }
.astro-dashboard-header { margin-bottom: 24px; }
.astro-dashboard-nav { display: flex; gap: 4px; margin-bottom: 24px; background: var(--astro-light); padding: 4px; border-radius: 8px; flex-wrap: wrap; }
.astro-dashboard-nav a { padding: 12px 20px; text-decoration: none; color: var(--astro-text); border-radius: 6px; }
.astro-dashboard-nav a:hover { background: #fff; }
.astro-dashboard-nav a.active { background: #fff; color: var(--astro-primary); font-weight: 600; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.astro-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.astro-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.astro-table th, .astro-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--astro-border); }
.astro-table th { background: var(--astro-light); font-weight: 600; font-size: 13px; text-transform: uppercase; color: #718096; }
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-pending, .status-pending_verification { background: #fef3c7; color: #92400e; }
.status-paid, .status-approved, .status-completed { background: #d1fae5; color: #065f46; }
.status-cancelled, .status-rejected { background: #fee2e2; color: #991b1b; }
.astro-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.astro-modal-content { background: #fff; border-radius: 12px; padding: 32px; max-width: 600px; width: 100%; max-height: 80vh; overflow-y: auto; position: relative; }
.astro-modal-large { max-width: 900px; }
.astro-modal-close { position: absolute; top: 16px; right: 16px; font-size: 28px; cursor: pointer; color: #718096; line-height: 1; }
.astro-modal-close:hover { color: var(--astro-text); }
.astro-checkout { max-width: 800px; margin: 0 auto; }
.astro-plan-options { display: grid; gap: 12px; }
.astro-plan-option { display: flex; align-items: center; gap: 16px; padding: 16px; border: 2px solid var(--astro-border); border-radius: 8px; cursor: pointer; }
.astro-plan-option:hover { border-color: var(--astro-primary); }
.astro-plan-option.selected { border-color: var(--astro-primary); background: rgba(102, 126, 234, 0.05); }
.astro-plan-option input { display: none; }
.astro-plan-option .plan-name { flex: 1; font-weight: 600; }
.astro-plan-option .plan-price { font-weight: 700; color: var(--astro-primary); }
.bank-accounts { display: grid; gap: 12px; margin: 16px 0; }
.bank-account { background: var(--astro-light); padding: 16px; border-radius: 8px; }
.astro-login-required, .astro-empty, .astro-notice { text-align: center; padding: 48px 24px; background: var(--astro-light); border-radius: 12px; }
.astro-notice-warning { background: #fef3c7; border: 1px solid #f59e0b; }
@media (max-width: 768px) {
    .astro-big-three { grid-template-columns: 1fr; }
    .astro-pricing-grid { grid-template-columns: 1fr; }
    .astro-price-card.featured { transform: none; }
}

/* Report Viewer Styles */
.report-viewer { font-family: Georgia, serif; line-height: 1.8; color: #2d3748; }
.report-viewer .report-title { font-size: 28px; color: var(--astro-primary); margin-bottom: 8px; text-align: center; }
.report-viewer .report-subtitle { text-align: center; color: #718096; margin-bottom: 24px; font-size: 18px; }
.report-viewer .report-birth-info { background: var(--astro-light); padding: 16px; border-radius: 8px; margin-bottom: 32px; text-align: center; }
.report-viewer .report-section { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--astro-border); }
.report-viewer .report-section:last-child { border-bottom: none; }
.report-viewer .report-section h2 { font-size: 20px; color: var(--astro-secondary); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--astro-primary); display: inline-block; }
.report-viewer .section-text { white-space: pre-line; }
.report-viewer .report-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-family: -apple-system, sans-serif; font-size: 14px; }
.report-viewer .report-table th { background: var(--astro-dark); color: #fff; padding: 12px; text-align: left; font-weight: 600; }
.report-viewer .report-table td { padding: 10px 12px; border-bottom: 1px solid var(--astro-border); }
.report-viewer .report-table tr:hover { background: rgba(102, 126, 234, 0.05); }
.report-viewer .aspects-table .aspect-good { background: rgba(16, 185, 129, 0.1); }
.report-viewer .aspects-table .aspect-hard { background: rgba(239, 68, 68, 0.1); }
.report-viewer .elements-display { padding: 16px; background: var(--astro-light); border-radius: 8px; }
.report-viewer .elements-bars { margin-bottom: 16px; }
.report-viewer .element-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.report-viewer .element-name { width: 60px; font-weight: 600; font-size: 14px; }
.report-viewer .bar-bg { flex: 1; height: 24px; background: #e2e8f0; border-radius: 12px; overflow: hidden; }
.report-viewer .bar-fill { height: 100%; border-radius: 12px; transition: width 0.5s; }
.report-viewer .bar-fire { background: linear-gradient(90deg, #f56565, #ed8936); }
.report-viewer .bar-earth { background: linear-gradient(90deg, #48bb78, #38a169); }
.report-viewer .bar-air { background: linear-gradient(90deg, #ecc94b, #d69e2e); }
.report-viewer .bar-water { background: linear-gradient(90deg, #4299e1, #3182ce); }
.report-viewer .element-percent { width: 50px; text-align: right; font-weight: 600; color: #718096; }
.report-viewer .element-interp { font-style: italic; color: #4a5568; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--astro-border); }

/* Report Container Styles */
.astro-report { margin-top: 32px; }
.astro-report-container { background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); overflow: hidden; }
.report-header { background: linear-gradient(135deg, var(--astro-dark), #16213e); color: #fff; padding: 40px 32px; text-align: center; }
.report-header h1 { font-size: 28px; margin-bottom: 8px; color: #ffd700; }
.report-header h2 { font-size: 18px; opacity: 0.8; font-weight: 400; }
.report-birth-info { background: var(--astro-light); padding: 20px 32px; border-bottom: 1px solid var(--astro-border); }
.report-birth-info p { margin: 4px 0; color: #4a5568; }
.report-positions { padding: 24px 32px; border-bottom: 1px solid var(--astro-border); }
.report-positions h3 { margin-bottom: 16px; color: var(--astro-primary); }
.report-positions .astro-planets-table { background: var(--astro-dark); color: #fff; border-radius: 8px; overflow: hidden; }
.report-positions .astro-planets-table th { background: rgba(255,255,255,0.1); }
.report-chapter { padding: 32px; border-bottom: 1px solid var(--astro-border); }
.report-chapter:last-child { border-bottom: none; }
.chapter-title { font-size: 22px; color: var(--astro-primary); margin-bottom: 8px; padding-bottom: 12px; border-bottom: 2px solid var(--astro-primary); }
.chapter-subtitle { font-size: 16px; color: #718096; font-weight: 400; margin-bottom: 20px; }
.chapter-content { color: var(--astro-text); line-height: 1.8; }
.chapter-content p { margin-bottom: 16px; }
.chapter-content strong { color: var(--astro-dark); }

/* Modal Table Styles */
.astro-modal-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.astro-modal-table th, .astro-modal-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--astro-border); }
.astro-modal-table th { background: var(--astro-light); font-weight: 600; color: var(--astro-primary); }
.astro-modal-table tr:hover { background: #f8fafc; }

/* Report viewer improvements */
.report-viewer { max-height: 70vh; overflow-y: auto; }
.report-chapter { padding: 20px 0; border-bottom: 1px solid var(--astro-border); }
.report-chapter:last-child { border-bottom: none; }
.report-chapter h2 { color: var(--astro-primary); margin-bottom: 8px; }
.report-chapter h3 { color: #718096; font-weight: 400; margin-bottom: 16px; }
.chapter-content { line-height: 1.8; color: var(--astro-text); }
.report-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.report-table th, .report-table td { padding: 10px; border: 1px solid var(--astro-border); }
.report-table th { background: var(--astro-primary); color: #fff; }

/* ============================================
   Interactive Chart Visualization Styles
   ============================================ */

.astro-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, var(--astro-dark), #16213e);
    border-radius: 16px;
    margin-bottom: 24px;
}

.astro-chart-svg {
    max-width: 100%;
    height: auto;
}

.astro-chart-svg .zodiac-segment {
    transition: opacity 0.3s;
    cursor: pointer;
}

.astro-chart-svg .zodiac-segment:hover {
    opacity: 0.8;
}

.astro-chart-svg .planet-marker {
    cursor: pointer;
    transition: transform 0.3s;
}

.astro-chart-svg .planet-marker:hover {
    transform: scale(1.2);
}

.astro-chart-svg .aspect-line {
    transition: stroke-opacity 0.3s;
}

.astro-chart-svg .aspect-line:hover {
    stroke-opacity: 1 !important;
    stroke-width: 2 !important;
}

/* Chart Legend */
.astro-chart-legend {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    color: #fff;
}

.astro-chart-legend h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.astro-chart-legend .legend-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.astro-chart-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
}

.astro-chart-legend .planet-symbol {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.astro-chart-legend .planet-name {
    flex: 1;
    color: #ccc;
}

.astro-chart-legend .planet-pos {
    color: #ffd700;
    font-size: 11px;
}

.astro-chart-legend .retrograde {
    color: #ff6b6b;
    font-size: 10px;
    font-weight: bold;
}

.astro-chart-legend .legend-section {
    margin-bottom: 16px;
}

.astro-chart-legend .legend-section:last-child {
    margin-bottom: 0;
}

/* Elements Bar */
.astro-chart-legend .elements-bar {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    height: 30px;
}

.astro-chart-legend .element-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    transition: all 0.3s;
}

.astro-chart-legend .element-item span {
    font-size: 10px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.astro-chart-legend .element-item:hover {
    filter: brightness(1.2);
}

/* Free Report Summary */
.astro-free-report {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.astro-free-report h3 {
    color: var(--astro-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--astro-primary);
}

.astro-free-report .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.astro-free-report .summary-item {
    text-align: center;
    padding: 16px;
    background: var(--astro-light);
    border-radius: 8px;
}

.astro-free-report .summary-item .icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.astro-free-report .summary-item .label {
    font-size: 12px;
    color: #718096;
    display: block;
}

.astro-free-report .summary-item .value {
    font-size: 18px;
    font-weight: 600;
    color: var(--astro-primary);
}

/* Premium Upsell */
.astro-premium-upsell {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border: 2px dashed var(--astro-primary);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 24px;
}

.astro-premium-upsell h3 {
    color: var(--astro-primary);
    margin-bottom: 12px;
}

.astro-premium-upsell p {
    color: #718096;
    margin-bottom: 20px;
}

.astro-premium-upsell .features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.astro-premium-upsell .feature-tag {
    background: var(--astro-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* ============================================
   ENHANCED MINI FREE REPORT STYLES
   ============================================ */

/* Base Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pop {
    0% { opacity: 0; transform: scale(0.8); }
    70% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.5); }
}

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

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

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-right {
    animation: slideRight 0.5s ease-out forwards;
    opacity: 0;
}

.animate-pop {
    animation: pop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* Enhanced Mini Report Container */
.astro-free-report-enhanced {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
}

/* Mini Report Header */
.mini-report-header {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0f0f2a 100%);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255,215,0,0.6), transparent),
        radial-gradient(1px 1px at 240px 90px, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 280px 140px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 50px 100px, rgba(255,215,0,0.5), transparent),
        radial-gradient(2px 2px at 180px 30px, rgba(255,255,255,0.6), transparent);
    background-size: 300px 200px;
    animation: star-twinkle 4s ease-in-out infinite;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border: 1px solid rgba(102, 126, 234, 0.5);
    color: #a5b4fc;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header-title {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px;
    animation: shimmer 3s linear infinite;
}

.header-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* Birth Info Section */
.mini-report-birth-info {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 24px 30px;
    border-bottom: 1px solid #e2e8f0;
}

.birth-info-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.birth-info-content {
    flex: 1;
}

.birth-info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
}

.birth-info-row:last-child {
    margin-bottom: 0;
}

.birth-info-row .label {
    color: #64748b;
    font-size: 14px;
    min-width: 110px;
}

.birth-info-row .value {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
}

/* Section Styling */
.mini-report-section {
    padding: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.mini-report-section:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-icon {
    font-size: 24px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Big Three Grid */
.big-three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.big-three-card {
    background: linear-gradient(135deg, #f8fafc, #fff);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.big-three-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.big-three-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.big-three-card:hover .card-glow {
    opacity: 1;
}

/* Sun Card */
.sun-card {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #fffbeb, #fff);
}

.sun-card:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.sun-icon {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: pulse-glow 2s infinite, float 3s ease-in-out infinite;
}

/* Moon Card */
.moon-card {
    border-color: rgba(192, 192, 192, 0.3);
    background: linear-gradient(135deg, #f8fafc, #fff);
}

.moon-card:hover {
    border-color: #c0c0c0;
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.2);
}

.moon-icon {
    color: #64748b;
    text-shadow: 0 0 20px rgba(100, 116, 139, 0.5);
    animation: float 4s ease-in-out infinite;
}

/* Ascendant Card */
.asc-card {
    border-color: rgba(78, 205, 196, 0.3);
    background: linear-gradient(135deg, #f0fdfa, #fff);
}

.asc-card:hover {
    border-color: #4ECDC4;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.asc-icon {
    color: #4ECDC4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    animation: float 3.5s ease-in-out infinite;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.card-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-value {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 12px;
    color: #94a3b8;
}

/* Planets Table */
.planets-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mini-planets-table {
    width: 100%;
    border-collapse: collapse;
}

.mini-planets-table thead tr {
    background: rgba(255, 255, 255, 0.05);
}

.mini-planets-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mini-planets-table th:first-child {
    width: 50px;
    text-align: center;
}

.mini-planets-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.mini-planets-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mini-planets-table tbody tr:last-child {
    border-bottom: none;
}

.mini-planets-table td {
    padding: 14px 20px;
    color: #fff;
}

.mini-planets-table td:first-child {
    text-align: center;
}

.planet-symbol {
    font-size: 24px;
    display: inline-block;
    transition: transform 0.3s;
}

.mini-planets-table tr:hover .planet-symbol {
    transform: scale(1.2);
}

.planet-name {
    font-weight: 600;
    font-size: 15px;
}

.retrograde-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    animation: pulse-glow 1.5s infinite;
}

.planet-position {
    font-size: 14px;
}

.sign-name {
    color: #ffd700;
    font-weight: 600;
}

.planet-house {
    text-align: center;
}

.house-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.ascendant-row {
    background: linear-gradient(90deg, rgba(78, 205, 196, 0.1), transparent) !important;
}

/* Elements Section */
.elements-container {
    background: linear-gradient(135deg, #f8fafc, #fff);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.element-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.element-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.element-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.element-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.element-bar-wrapper {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.element-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.element-percent {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
}

.elements-visual-bar {
    display: flex;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.element-segment {
    transition: all 0.3s;
    position: relative;
}

.element-segment:hover {
    filter: brightness(1.1);
    transform: scaleY(1.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mini-report-header {
        padding: 40px 24px;
    }

    .header-title {
        font-size: 28px;
    }

    .header-subtitle {
        font-size: 16px;
    }

    .mini-report-birth-info {
        flex-direction: column;
        text-align: center;
    }

    .birth-info-row {
        justify-content: center;
    }

    .big-three-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .big-three-card {
        padding: 24px;
    }

    .mini-report-section {
        padding: 24px 20px;
    }

    .elements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-planets-table th,
    .mini-planets-table td {
        padding: 12px 14px;
    }

    .planet-symbol {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 24px;
    }

    .card-icon {
        font-size: 40px;
    }

    .card-value {
        font-size: 20px;
    }

    .elements-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .element-card {
        padding: 16px 12px;
    }

    .element-icon {
        font-size: 24px;
    }

    .element-percent {
        font-size: 16px;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .astro-chart-legend .legend-items {
        grid-template-columns: 1fr;
    }
    
    .astro-chart-container {
        padding: 16px;
    }
}

/* Report Chart Section in Modal */
.report-chart-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.report-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.report-positions-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--astro-border);
}

.report-chapters {
    margin-top: 24px;
}

/* Modal large for reports */
.astro-modal-content.astro-modal-large {
    max-width: 900px;
    max-height: 90vh;
}

.report-viewer {
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 10px;
}

.report-viewer::-webkit-scrollbar {
    width: 8px;
}

.report-viewer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.report-viewer::-webkit-scrollbar-thumb {
    background: var(--astro-primary);
    border-radius: 4px;
}

.report-viewer::-webkit-scrollbar-thumb:hover {
    background: var(--astro-secondary);
}

/* Report actions buttons */
.astro-report-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.astro-report-actions .astro-btn {
    flex: 1;
    text-align: center;
    font-size: 14px;
}

.astro-btn-secondary {
    background: linear-gradient(135deg, #38a169, #2f855a) !important;
}

.astro-btn-secondary:hover {
    background: linear-gradient(135deg, #2f855a, #276749) !important;
}

.astro-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Report card improvements */
.astro-report-card {
    display: flex;
    flex-direction: column;
}

.astro-report-card h3 {
    margin-bottom: 10px;
    color: var(--astro-primary);
}

.astro-report-card p {
    margin: 5px 0;
    color: #718096;
    font-size: 14px;
}

/* PDF download in modal */
.report-pdf-download {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 8px;
}

/* ============================================
   TRANSIT CHART STYLES
   ============================================ */

/* Transit Chart Container */
.astro-transit-chart {
    display: block;
    margin: 0 auto;
}

/* Transit Legend */
.astro-transit-legend {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #fff;
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
}

.astro-transit-legend h4 {
    color: #4fd1c5;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.astro-transit-legend .legend-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.astro-transit-legend .legend-section {
    margin-bottom: 16px;
}

.astro-transit-legend .legend-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.astro-transit-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 12px;
}

.astro-transit-legend .transit-item {
    border-left: 2px solid #4fd1c5;
}

.astro-transit-legend .natal-item {
    border-left: 2px solid #ffd700;
}

.astro-transit-legend .planet-symbol {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.astro-transit-legend .planet-name {
    flex: 1;
    color: #a0aec0;
}

.astro-transit-legend .planet-pos {
    color: #fff;
    font-weight: 500;
}

.astro-transit-legend .aspects-section {
    grid-column: 1 / -1;
}

.astro-transit-legend .aspect-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.astro-transit-legend .aspect-item {
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.astro-transit-legend .aspect-planets {
    color: #fff;
}

.astro-transit-legend .aspect-orb {
    color: #a0aec0;
    font-size: 11px;
}

/* ============================================
   ASPECT GRID STYLES
   ============================================ */

.aspect-grid-container {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.aspect-grid-title {
    color: #4fd1c5;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.aspect-grid-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.aspect-grid {
    width: 100%;
    border-collapse: separate;
    border-spacing: 3px;
    min-width: 500px;
}

.aspect-grid th,
.aspect-grid td {
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
}

.aspect-grid .corner-cell {
    background: transparent;
    color: #4fd1c5;
    font-size: 11px;
    font-weight: 600;
}

.aspect-grid .natal-header,
.aspect-grid .transit-header {
    background: rgba(79, 209, 197, 0.1);
    border-radius: 6px;
    font-size: 18px;
}

.aspect-grid .natal-header {
    border-bottom: 2px solid #ffd700;
}

.aspect-grid .transit-header {
    border-right: 2px solid #4fd1c5;
}

.aspect-grid .aspect-cell {
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    transition: all 0.2s;
}

.aspect-grid .aspect-cell.empty {
    background: rgba(255,255,255,0.02);
}

.aspect-grid .aspect-cell.has-aspect {
    cursor: pointer;
}

.aspect-grid .aspect-cell.has-aspect:hover {
    transform: scale(1.1);
    z-index: 10;
}

.aspect-grid .aspect-symbol {
    font-size: 16px;
    font-weight: bold;
}

.aspect-grid-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.aspect-grid-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a0aec0;
    font-size: 12px;
}

.aspect-grid-legend .symbol {
    font-size: 16px;
    font-weight: bold;
}

/* Transit Chart Visualization Container */
.transit-charts-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
}

.transit-chart-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.transit-chart-section h3 {
    color: var(--astro-primary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
}

/* Bi-wheel specific styles */
#transit-biwheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .astro-transit-legend .legend-row {
        grid-template-columns: 1fr;
    }
    
    .astro-transit-legend .aspect-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aspect-grid th,
    .aspect-grid td {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .aspect-grid .aspect-symbol {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .astro-transit-legend .legend-items {
        grid-template-columns: 1fr;
    }
    
    .astro-transit-legend .aspect-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TRANSIT PREMIUM / FREEMIUM STYLES
   ============================================ */

/* Freemium Badge */
.freemium-badge {
    margin-top: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 20px;
    display: inline-block;
}

.freemium-badge .free-features {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* Premium Badge */
.premium-badge {
    margin-top: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    border-radius: 20px;
    display: inline-block;
}

.premium-badge span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* Period Options - Free vs Locked */
.period-card.free-period {
    border-color: #48bb78;
    position: relative;
}

.period-card .period-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #48bb78;
    color: #fff;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.premium-locked .period-card {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.premium-locked .lock-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
}

.premium-locked:hover .period-card {
    border-color: #ed8936;
    opacity: 0.8;
}

/* Free Label on Charts */
.free-label {
    text-align: center;
    color: #48bb78;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Free Summary Section */
.free-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.free-summary-header h3 {
    margin: 0;
    color: var(--astro-primary);
}

.free-badge {
    background: #48bb78;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

#free-summary-content .summary-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

#free-summary-content .summary-section h4 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 16px;
}

#free-summary-content .transit-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

#free-summary-content .transit-item-card {
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #667eea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#free-summary-content .transit-planets {
    font-weight: 600;
    color: #2d3748;
}

#free-summary-content .transit-aspect {
    font-size: 12px;
    color: #718096;
}

/* Premium Upsell Box */
.premium-upsell-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 0;
    margin: 30px 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.premium-upsell-box .upsell-content {
    padding: 40px;
    text-align: center;
    color: #fff;
}

.premium-upsell-box .upsell-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.premium-upsell-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffd700;
}

.premium-upsell-box > .upsell-content > p {
    color: #a0aec0;
    margin-bottom: 25px;
}

.upsell-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.feature-item .feature-icon {
    font-size: 20px;
}

.feature-item span:last-child {
    color: #e2e8f0;
    font-size: 13px;
}

.upsell-price {
    margin: 25px 0;
}

.upsell-price .price {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
}

.upsell-price .period {
    color: #a0aec0;
    font-size: 14px;
}

.astro-btn-premium {
    background: linear-gradient(135deg, #ed8936, #dd6b20) !important;
    padding: 16px 40px !important;
    font-size: 18px !important;
    border-radius: 30px !important;
}

.astro-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.4);
}

/* Premium Preview (Blurred) */
.upsell-preview {
    background: rgba(0,0,0,0.3);
    padding: 30px 40px;
}

.upsell-preview h4 {
    color: #a0aec0;
    margin-bottom: 20px;
    font-size: 14px;
}

.blurred-preview {
    position: relative;
}

.blurred-preview .chapter-titles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blurred-preview .preview-chapter {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    filter: blur(0);
    transition: filter 0.3s;
}

.blurred-preview .preview-chapter:nth-child(n+3) {
    filter: blur(2px);
}

.blurred-preview .preview-chapter:nth-child(n+4) {
    filter: blur(4px);
}

.blurred-preview .chapter-num {
    width: 28px;
    height: 28px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.blurred-preview .chapter-title {
    color: #e2e8f0;
    font-size: 14px;
}

.blurred-preview .more-chapters {
    text-align: center;
    color: #718096;
    padding: 15px;
    font-size: 13px;
}

/* Download Section */
#transit-download {
    text-align: center;
}

#transit-download h3 {
    margin-bottom: 20px;
    color: var(--astro-primary);
}

.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .upsell-features {
        grid-template-columns: 1fr;
    }
    
    .premium-upsell-box .upsell-content {
        padding: 30px 20px;
    }
    
    .upsell-preview {
        padding: 20px;
    }
}

/* ============================================
   PREMIUM BANNER & PREVIEW STYLES
   ============================================ */

/* Preview mode container */
.forecast-report-container.preview-mode {
    border: 3px dashed var(--astro-primary);
    border-radius: 16px;
    position: relative;
}

.forecast-report-container.preview-mode::before {
    content: "🔒 PREVIEW";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--astro-primary);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Premium Banner */
.premium-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.premium-banner h3 {
    font-size: 28px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.premium-banner .premium-price {
    font-size: 48px;
    font-weight: 800;
    margin: 16px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.premium-banner .premium-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.premium-banner .premium-features li {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.astro-btn-premium {
    background: linear-gradient(135deg, #ffd700, #ffaa00) !important;
    color: #1a1a2e !important;
    font-size: 18px !important;
    padding: 16px 40px !important;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    animation: pulse-gold 2s infinite;
}

.astro-btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6); }
}

/* Locked chapters */
.report-chapter.locked {
    position: relative;
    opacity: 0.7;
}

.report-chapter.locked::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 100%);
    pointer-events: none;
}

.premium-locked {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.premium-locked p {
    margin: 0;
    font-size: 16px;
}

/* Preview note box */
.preview-note {
    background: linear-gradient(135deg, #fff9e6, #fff3cc);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.preview-note ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.preview-note li {
    padding: 4px 0;
}

/* Preview actions */
.preview-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px !important;
}

/* ============================================
   FORECAST CHARTS SECTION
   ============================================ */

.forecast-charts-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    color: white;
}

.charts-section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: #ffd700;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    justify-items: center;
}

.chart-container {
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
}

.chart-container h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffd700;
}

.chart-container .chart-desc {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 16px;
}

.chart-wheel {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.chart-wheel svg {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-wheel {
        min-height: 300px;
    }
    
    .forecast-charts-section {
        padding: 20px;
    }
}

/* ===========================================
   Checkout Addons Styles
   =========================================== */
.checkout-addons-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    border: 2px dashed var(--astro-primary);
}

.addons-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--astro-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.addons-title::before {
    content: '🎁';
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.addon-item:hover {
    border-color: var(--astro-primary);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.addon-item:has(input:checked) {
    border-color: var(--astro-primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.addon-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--astro-primary);
    cursor: pointer;
}

.addon-info {
    flex: 1;
}

.addon-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--astro-dark);
    margin-bottom: 4px;
    cursor: pointer;
}

.addon-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.addon-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.addon-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.addon-discount {
    font-size: 18px;
    font-weight: 700;
    color: #22c55e;
}

.addon-badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .addon-item {
        flex-wrap: wrap;
    }
    
    .addon-price {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
        padding-left: 37px;
    }
}
