/*
Theme Name: Astrobility
Theme URI: https://astrobility.com
Description: Integrated astrology platform combining Western, Vedic, Chinese, and Numerology systems
Author: Astrobility LLC
Version: 54.6
Text Domain: astrobility
Domain Path: /languages
*/
*/

/* ============================================================================
   COSMIC TEMPLE FOUNDATION - ENHANCED COLOR SYSTEM
   ========================================================================== */
:root {
    /* Primary Cosmic Colors */
    --astro-gold: #FFD700;
    --astro-gold-light: #FFE55C;
    --astro-gold-dark: #CC9E00;
    --astro-deep-space: #0B1426;
    --astro-cosmic-blue: #1E3A8A;
    --astro-cosmic-blue-light: #3B5BBF;
    --astro-cosmic-blue-dark: #152E6B;
    --astro-nebula: #3B82F6;
    --astro-nebula-light: #60A5FA;
    --astro-nebula-dark: #2563EB;
    
    /* Accent Colors */
    --astro-accent: #06B6D4;
    --astro-accent-light: #22D3EE;
    --astro-accent-dark: #0891B2;
    --astro-starlight: #F1F5F9;
    --astro-silver: #E2E8F0;
    --astro-silver-light: #F8FAFC;
    --astro-silver-dark: #CBD5E1;
    
    /* Mystical Colors */
    --astro-love: #FF1493;
    --astro-love-light: #FF69B4;
    --astro-love-dark: #C71585;
    --astro-cosmic-purple: #8B5CF6;
    --astro-cosmic-purple-light: #A78BFA;
    --astro-cosmic-purple-dark: #7C3AED;
    --astro-emerald: #10B981;
    --astro-amber: #F59E0B;
    --astro-rose: #F43F5E;
    
    /* Product-Specific Colors */
    --gold-bright: #fbbf24;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-light: #f8fafc;
    --personal-purple: #a78bfa;
    --personal-purple-light: #c4b5fd;
    --personal-purple-dark: #8b5cf6;
    --relationship-gold: #ecc94b;
    --relationship-gold-light: #fde68a;
    --relationship-gold-dark: #d69e2e;
    --cosmic-gold: #ffd700;
    
    /* Semantic Colors */
    --success: #10b981;
    --success-light: #34d399;
    --success-dark: #059669;
    --warning: #f59e0b;
    --warning-light: #fbbf24;
    --warning-dark: #d97706;
    --error: #ef4444;
    --error-light: #f87171;
    --error-dark: #dc2626;
    --info: #3b82f6;
    --info-light: #60a5fa;
    --info-dark: #2563eb;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography Scale */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    --font-6xl: 3.75rem;
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-cosmic: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.5);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ============================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: var(--font-base);
    line-height: 1.6;
    color: var(--astro-starlight);
    background: var(--astro-deep-space);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Selection Styles */
::selection {
    background: var(--astro-gold);
    color: var(--astro-deep-space);
}

::-moz-selection {
    background: var(--astro-gold);
    color: var(--astro-deep-space);
}

/* Focus Styles */
:focus {
    outline: 2px solid var(--astro-accent);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--astro-accent);
    outline-offset: 2px;
}

/* ============================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--astro-starlight);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: var(--font-2xl);
}

h5 {
    font-size: var(--font-xl);
}

h6 {
    font-size: var(--font-lg);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.8;
}

strong, b {
    font-weight: 600;
    color: var(--astro-starlight);
}

em, i {
    font-style: italic;
}

small {
    font-size: var(--font-sm);
}

mark {
    background: linear-gradient(135deg, var(--astro-gold), var(--astro-amber));
    color: var(--astro-deep-space);
    padding: 0.125rem 0.25rem;
    border-radius: var(--radius-xs);
}

code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: var(--font-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--astro-accent);
}

pre {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: var(--space-md);
}

pre code {
    background: none;
    padding: 0;
}

blockquote {
    border-left: 4px solid var(--astro-gold);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Links */
a {
    color: var(--astro-accent);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
}

a:hover {
    color: var(--astro-gold);
}

a:active {
    color: var(--astro-accent-dark);
}

a.underline {
    text-decoration: underline;
    text-underline-offset: 4px;
}

a.underline:hover {
    text-decoration-thickness: 2px;
}

/* Lists */
ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

li {
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

ul.unstyled,
ol.unstyled {
    list-style: none;
    padding-left: 0;
}

/* ============================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-auto-sm {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-auto-lg {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Spacing Utilities */
.m-0 { margin: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.p-0 { padding: 0; }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.text-xs { font-size: var(--font-xs); }
.text-sm { font-size: var(--font-sm); }
.text-base { font-size: var(--font-base); }
.text-lg { font-size: var(--font-lg); }
.text-xl { font-size: var(--font-xl); }
.text-2xl { font-size: var(--font-2xl); }
.text-3xl { font-size: var(--font-3xl); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }
.font-light { font-weight: 300; }
/* ============================================================================
   COSMIC HEADER & NAVIGATION
   ========================================================================== */
.cosmic-header {
    background: linear-gradient(135deg, var(--astro-deep-space) 0%, var(--astro-cosmic-blue) 100%);
    padding: var(--space-lg) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cosmic-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(2px 2px at 20px 30px, white, transparent),
                radial-gradient(1px 1px at 50px 50px, white, transparent),
                radial-gradient(1px 1px at 80px 10px, white, transparent);
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: 1;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.cosmic-header h1 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--astro-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
    margin: 0;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.cosmic-header p {
    color: var(--astro-silver);
    font-size: var(--font-lg);
    margin-top: var(--space-sm);
    position: relative;
    z-index: 2;
}

/* Temple Navigation */
.temple-nav {
    background: rgba(11, 20, 38, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.temple-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.temple-nav li {
    margin: 0;
}

.temple-nav a {
    color: var(--astro-starlight);
    text-decoration: none;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
}

.temple-nav a:hover {
    background: var(--astro-cosmic-blue);
    border-color: var(--astro-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.temple-nav a.active {
    background: linear-gradient(135deg, var(--astro-cosmic-blue), var(--astro-cosmic-purple));
    border-color: var(--astro-gold);
}

/* ============================================================================
   PROFILE CONTAINERS & CARDS
   ========================================================================== */
.cosmic-profile-page {
    padding: var(--space-lg) 0;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--astro-deep-space) 0%, #0f1419 100%);
}

.cosmic-profile-container,
.profile-container {
    max-width: 1200px;
    margin: var(--space-lg) auto;
    padding: 0 var(--space-md);
}

.profile-header {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: var(--space-xl);
    position: relative;
}

.profile-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--astro-gold), transparent);
}

.profile-header h1 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--personal-purple) 0%, var(--cosmic-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo-small {
    font-family: 'Playfair Display', 'Cinzel', serif;
    color: var(--astro-accent);
    font-size: var(--font-sm);
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    font-weight: 600;
}

.birth-info,
.profile-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-lg);
    line-height: 1.6;
}

.birth-info strong {
    color: var(--astro-starlight);
    font-weight: 600;
}

/* Profile Cards */
.profile-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--astro-cosmic-blue);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin: var(--space-md) 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: cosmicRotate 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes cosmicRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.profile-content {
    position: relative;
    z-index: 2;
}

/* ============================================================================
   FOUR PILLARS SECTION
   ========================================================================== */
.four-pillars {
    margin: var(--space-xl) 0;
}

.four-pillars h2 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    color: var(--gold-bright);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.pillar {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--astro-accent);
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-sm);
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.pillar h3 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    color: var(--gold-bright);
    font-size: var(--font-xl);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

.pillar-data {
    text-align: left;
}

.pillar-data p {
    color: var(--text-secondary);
    margin: var(--space-xs) 0;
    font-size: var(--font-base);
    line-height: 1.6;
}

.pillar-data strong {
    color: var(--astro-starlight);
    font-weight: 600;
}

/* Pillar Cards (Relationship Pages) */
.pillar-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all var(--transition-base);
    margin-bottom: var(--space-md);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.pillar-card h3 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    color: var(--astro-gold);
    font-size: var(--font-xl);
    margin-bottom: var(--space-md);
    text-align: center;
}

.pillar-card .pillar-data {
    text-align: left;
}

.pillar-card .pillar-data p {
    color: var(--text-secondary);
    margin: var(--space-xs) 0;
    font-size: var(--font-base);
}

.pillar-card .pillar-data strong {
    color: var(--astro-starlight);
}

/* ============================================================================
   SYSTEM CHAMBERS
   ========================================================================== */
.system-chamber {
    background: rgba(30, 58, 138, 0.1);
    border-left: 4px solid var(--astro-gold);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    position: relative;
}

.system-chamber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--astro-gold), var(--astro-amber));
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.chamber-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--astro-gold);
    margin-bottom: var(--space-md);
}

.chamber-content {
    color: var(--astro-silver);
    line-height: 1.8;
}

.chamber-content p {
    margin-bottom: var(--space-md);
}

/* ============================================================================
   INTEGRATED READING SECTION
   ========================================================================== */
.integrated-reading,
.reading-section {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.integrated-reading::before,
.reading-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.integrated-reading h2,
.reading-section h2 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    color: var(--gold-bright);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.reading-content {
    color: var(--astro-starlight);
    line-height: 1.9;
    font-size: var(--font-lg);
    white-space: pre-wrap;
    position: relative;
    z-index: 1;
}

.reading-content p {
    margin-bottom: var(--space-md);
}

.reading-content strong {
    color: var(--astro-gold);
    font-weight: 600;
}

/* ============================================================================
   UPGRADE SECTION & TIERS
   ========================================================================== */
.upgrade-section {
    margin: var(--space-2xl) 0;
    text-align: center;
}

.upgrade-section h2 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    color: var(--cosmic-gold);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

.upgrade-intro {
    color: var(--text-muted);
    font-size: var(--font-xl);
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.upgrade-tier {
    background: linear-gradient(135deg, var(--astro-cosmic-blue) 0%, var(--astro-cosmic-purple) 100%);
    border: 2px solid var(--astro-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upgrade-tier::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.upgrade-tier:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border-color: var(--astro-accent);
}

.upgrade-tier:hover::before {
    opacity: 1;
}

.tier-price {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--astro-gold);
    font-weight: bold;
    margin: var(--space-md) 0;
    font-family: 'Playfair Display', serif;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.tier-features li {
    padding: var(--space-xs) 0;
    color: var(--astro-starlight);
    font-size: var(--font-base);
}

.tier-features li::before {
    content: '✓';
    margin-right: var(--space-xs);
    color: var(--astro-gold);
    font-weight: bold;
}
/* ============================================================================
   CTA CARDS & GRID
   ========================================================================== */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card.featured {
    border: 3px solid var(--astro-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(139, 92, 246, 0.25) 100%);
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--astro-gold);
    color: var(--astro-deep-space);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-card h3 {
    font-family: 'Playfair Display', 'Cinzel', serif;
    font-size: var(--font-2xl);
    color: var(--astro-starlight);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-price {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-bright);
    margin: var(--space-md) 0;
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.cta-price-label {
    font-size: var(--font-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================================
   BUTTONS
   ========================================================================== */
.cosmic-payment-btn,
.cosmic-button,
.btn,
.btn-primary,
.cta-button {
    background: linear-gradient(135deg, var(--astro-gold) 0%, #FFA500 100%);
    color: var(--astro-deep-space);
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-size: var(--font-lg);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cosmic-payment-btn:hover,
.cosmic-button:hover,
.btn:hover,
.btn-primary:hover,
.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, var(--astro-gold) 100%);
}

.cosmic-payment-btn:active,
.cosmic-button:active,
.btn:active,
.btn-primary:active,
.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--astro-accent);
    color: var(--astro-accent);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--astro-accent);
    color: var(--astro-starlight);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--astro-gold) 0%, var(--cosmic-gold) 100%);
    color: var(--astro-deep-space);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--cosmic-gold) 0%, var(--astro-gold) 100%);
}

.btn-purple {
    background: linear-gradient(135deg, var(--astro-cosmic-purple) 0%, var(--personal-purple) 100%);
    color: white;
}

.btn-purple:hover {
    background: linear-gradient(135deg, var(--personal-purple) 0%, var(--astro-cosmic-purple) 100%);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-base);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-xl);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================================================
   FORMS & INPUTS
   ========================================================================== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--astro-starlight);
    font-size: var(--font-base);
}

.label-required::after {
    content: ' *';
    color: var(--error);
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='date'],
input[type='time'],
input[type='number'],
input[type='tel'],
input[type='url'],
select,
textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-base);
    background: rgba(11, 20, 38, 0.6);
    color: var(--astro-starlight);
    font-family: inherit;
    transition: all var(--transition-base);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--astro-accent);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
    background: rgba(11, 20, 38, 0.8);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-xl);
}

.input-group {
    display: flex;
    align-items: stretch;
}

.input-group input {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.input-group button,
.input-group .btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.form-error {
    color: var(--error);
    font-size: var(--font-sm);
    margin-top: var(--space-xs);
    display: block;
}

.form-help {
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-top: var(--space-xs);
    display: block;
}

input.error,
select.error,
textarea.error {
    border-color: var(--error);
}

input.success,
select.success,
textarea.success {
    border-color: var(--success);
}

/* Checkbox and Radio */
input[type='checkbox'],
input[type='radio'] {
    width: auto;
    margin-right: var(--space-xs);
    cursor: pointer;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

/* ============================================================================
   MODALS
   ========================================================================== */
.modal,
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal-backdrop);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal.active,
.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--astro-deep-space) 0%, var(--astro-cosmic-blue) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--astro-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-size: var(--font-3xl);
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-base);
    background: none;
    border: none;
    padding: 0;
    z-index: 1;
}

.close-modal:hover {
    color: var(--astro-starlight);
    transform: rotate(90deg);
}

.modal-content h2,
.modal-content h3 {
    color: var(--astro-gold);
    margin-bottom: var(--space-md);
    font-family: 'Playfair Display', 'Cinzel', serif;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.modal-content input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 2px solid rgba(6, 182, 212, 0.3);
    background: rgba(11, 20, 38, 0.6);
    color: var(--astro-starlight);
    margin-bottom: var(--space-md);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.email-status {
    color: var(--astro-accent);
    font-size: var(--font-sm);
    margin-top: var(--space-xs);
}

/* ============================================================================
   ENHANCED CONTENT SECTION
   ========================================================================== */
.enhanced-content {
    background: linear-gradient(135deg, var(--astro-cosmic-blue) 0%, var(--astro-cosmic-purple) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    color: white;
    margin: var(--space-xl) 0;
    border: 2px solid var(--astro-gold);
}

.enhanced-content h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-family: 'Playfair Display', 'Cinzel', serif;
    color: var(--astro-gold);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.enhanced-reading {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    white-space: pre-wrap;
    line-height: 1.9;
}

/* ============================================================================
   LOADING ANIMATIONS
   ========================================================================== */
.cosmic-loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid var(--astro-cosmic-blue);
    border-radius: 50%;
    border-top-color: var(--astro-gold);
    animation: cosmicSpin 1s ease-in-out infinite;
}

@keyframes cosmicSpin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
}

.loading-text {
    color: var(--astro-gold);
    margin-top: var(--space-md);
    font-size: var(--font-lg);
    text-align: center;
}

.spinner-dots {
    display: flex;
    gap: var(--space-xs);
}

.spinner-dots span {
    width: 12px;
    height: 12px;
    background: var(--astro-gold);
    border-radius: 50%;
    animation: dotPulse 1.4s infinite ease-in-out both;
}

.spinner-dots span:nth-child(1) { animation-delay: -0.32s; }
.spinner-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* ============================================================================
   SUCCESS & ERROR STATES
   ========================================================================== */
.cosmic-success,
.message.success,
.alert-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cosmic-error,
.message.error,
.alert-error {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.alert-warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.alert-info {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
/* ============================================================================
   RELATIONSHIP PAGE SPECIFIC
   ========================================================================== */
.relationship-profile-page {
    background: linear-gradient(180deg, var(--astro-deep-space) 0%, #1a0b3d 100%);
}

.relationship-profile-page .profile-header {
    border-bottom-color: var(--relationship-gold);
}

.relationship-profile-page .profile-header h1 {
    background: linear-gradient(135deg, var(--relationship-gold) 0%, var(--cosmic-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.compatibility-score {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(236, 201, 75, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: var(--radius-xl);
    margin: var(--space-lg) 0;
    border: 2px solid var(--relationship-gold);
}

.compatibility-score .score-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: bold;
    background: linear-gradient(135deg, var(--relationship-gold), var(--cosmic-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
}

.compatibility-score .score-label {
    font-size: var(--font-lg);
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.partner-profile {
    background: linear-gradient(135deg, rgba(236, 201, 75, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(236, 201, 75, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

.partner-profile h3 {
    color: var(--relationship-gold);
    font-size: var(--font-2xl);
    margin-bottom: var(--space-md);
    text-align: center;
}

/* ============================================================================
   FOOTER
   ========================================================================== */
.cosmic-footer,
.profile-footer,
.site-footer {
    background: var(--astro-deep-space);
    border-top: 1px solid var(--astro-cosmic-blue);
    padding: var(--space-xl) 0;
    text-align: center;
    margin-top: var(--space-3xl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.footer-section h4 {
    color: var(--astro-gold);
    font-size: var(--font-lg);
    margin-bottom: var(--space-md);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: var(--space-xs);
}

.footer-section a {
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: var(--astro-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    color: var(--astro-silver);
}

.cosmic-footer p,
.profile-footer p {
    color: var(--astro-silver);
    margin: var(--space-xs) 0;
}

.profile-footer .logo-small {
    color: var(--astro-accent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--astro-gold);
    color: var(--astro-deep-space);
    transform: translateY(-3px);
}

/* ============================================================================
   UTILITY CLASSES
   ========================================================================== */
.hidden { display: none !important; }
.visible { display: block !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

.select-none { user-select: none; }
.select-text { user-select: text; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* Background Utilities */
.bg-transparent { background: transparent; }
.bg-dark { background: var(--astro-deep-space); }
.bg-blue { background: var(--astro-cosmic-blue); }
.bg-purple { background: var(--astro-cosmic-purple); }
.bg-gold { background: var(--astro-gold); }

/* Border Utilities */
.border { border: 1px solid rgba(255, 255, 255, 0.1); }
.border-gold { border-color: var(--astro-gold); }
.border-none { border: none; }
.rounded { border-radius: var(--radius-md); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-cosmic { box-shadow: var(--shadow-cosmic); }
.shadow-none { box-shadow: none; }

/* ============================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1200px) {
    :root {
        --space-xl: 2.5rem;
        --space-2xl: 3.5rem;
    }
    
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 3rem;
    }
    
    .cosmic-header h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .temple-nav ul {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 15px;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
    }
    
    .cosmic-header h1 {
        font-size: clamp(1.75rem, 8vw, 3rem);
    }
    
    .profile-card,
    .profile-container,
    .cosmic-profile-container {
        padding: var(--space-md);
        margin: var(--space-sm);
    }
    
    .upgrade-tier,
    .cta-card {
        margin: var(--space-sm) 0;
        padding: var(--space-lg);
    }
    
    .tier-price,
    .cta-price {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .profile-header {
        padding: var(--space-lg) var(--space-md);
    }

    .integrated-reading,
    .reading-section {
        padding: var(--space-lg) var(--space-md);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        padding: var(--space-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .cosmic-header {
        padding: var(--space-md) 0;
    }
    
    .btn,
    .btn-primary,
    .cosmic-button {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-base);
    }
    
    h1 { font-size: clamp(1.5rem, 10vw, 2.5rem); }
    h2 { font-size: clamp(1.25rem, 8vw, 2rem); }
    h3 { font-size: clamp(1.125rem, 6vw, 1.75rem); }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .cosmic-header {
        padding: var(--space-md) 0;
    }
    
    .profile-header {
        padding: var(--space-lg) var(--space-md);
    }
}

/* ============================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }

    .site-header,
    .temple-nav,
    .cosmic-header,
    .profile-footer,
    .cosmic-footer,
    .upgrade-section,
    .admin-bar,
    button,
    .btn,
    .cta-button,
    .cosmic-payment-btn,
    .modal,
    .close-modal,
    nav,
    .navigation {
        display: none !important;
    }

    .cosmic-profile-page,
    .profile-container,
    .cosmic-profile-container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .profile-header,
    .integrated-reading,
    .reading-section,
    .pillar,
    .pillar-card,
    .profile-card {
        background: #f9f9f9 !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }

    .profile-header h1,
    h2,
    h3,
    p,
    strong,
    .logo-small,
    .birth-info,
    .reading-content,
    .pillar-data p,
    .pillar-data strong {
        color: black !important;
        text-shadow: none !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }

    .profile-header {
        border-bottom: 2px solid black !important;
    }

    .logo-small {
        color: #666 !important;
    }
    
    .profile-header::after {
        display: none !important;
    }
    
    a {
        text-decoration: underline;
        color: #000 !important;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
    }
    
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    
    .page-break {
        page-break-before: always;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}

/* ============================================================================
   DARK MODE SUPPORT (Optional)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    /* Already dark by default, but can add overrides if needed */
}

/* ============================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================================
   HIGH CONTRAST MODE
   ========================================================================== */
@media (prefers-contrast: high) {
    :root {
        --astro-gold: #FFD700;
        --astro-deep-space: #000000;
        --astro-starlight: #FFFFFF;
    }
    
    .profile-card,
    .pillar,
    .cta-card {
        border-width: 3px;
    }
}

/* ============================================================================
   CUSTOM SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--astro-deep-space);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--astro-gold), var(--astro-cosmic-blue));
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--astro-cosmic-blue), var(--astro-gold));
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--astro-gold) var(--astro-deep-space);
}

/* ============================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeIn { animation: fadeIn 0.5s ease-out; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out; }
.animate-slideInLeft { animation: slideInLeft 0.5s ease-out; }
.animate-slideInRight { animation: slideInRight 0.5s ease-out; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 1s ease-in-out infinite; }

/* ============================================================================
   END OF STYLESHEET
   ========================================================================== */
/* ============================================================================
   MISSING CLASSES - HUB PAGES & EDUCATIONAL CONTENT
   ========================================================================== */

/* Chinese Astrology Hub */
.animal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.animal-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    text-align: center;
}

.animal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--astro-gold);
}

.animal-header {
    margin-bottom: var(--space-md);
}

.animal-symbol {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: var(--space-sm);
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.animal-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--astro-gold);
    margin-bottom: var(--space-xs);
}

.animal-meta {
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-bottom: var(--space-md);
}

.animal-years {
    color: var(--astro-accent);
    font-size: var(--font-sm);
    font-weight: 600;
}

.animal-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.animal-traits {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.animal-traits ul {
    list-style: none;
    padding: 0;
}

.animal-traits li {
    padding: var(--space-xs) 0;
    color: var(--astro-starlight);
}

.animal-traits li::before {
    content: '✓';
    color: var(--astro-gold);
    margin-right: var(--space-xs);
    font-weight: bold;
}

/* Chinese Elements */
.element-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.element-card {
    background: rgba(30, 58, 138, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
}

.element-card:hover {
    transform: scale(1.05);
    border-color: var(--astro-gold);
}

.element-icon {
    font-size: var(--font-4xl);
    margin-bottom: var(--space-sm);
    display: block;
}

.element-name {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-xl);
    color: var(--astro-gold);
    margin-bottom: var(--space-xs);
}

.element-traits {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

.wood { border-color: #10b981; }
.wood .element-icon { color: #10b981; }
.fire { border-color: #ef4444; }
.fire .element-icon { color: #ef4444; }
.earth { border-color: #f59e0b; }
.earth .element-icon { color: #f59e0b; }
.metal { border-color: #cbd5e1; }
.metal .element-icon { color: #cbd5e1; }
.water { border-color: #3b82f6; }
.water .element-icon { color: #3b82f6; }

/* Vedic Astrology Hub */
.nakshatra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.nakshatra-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(30, 58, 138, 0.2));
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    text-align: center;
}

.nakshatra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.3);
    border-color: var(--personal-purple);
}

.nakshatra-header {
    margin-bottom: var(--space-md);
}

.nakshatra-symbol {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: var(--space-sm);
    display: block;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.3));
}

.nakshatra-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--personal-purple);
    margin-bottom: var(--space-xs);
}

.nakshatra-meta {
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-bottom: var(--space-md);
}

.nakshatra-deity {
    color: var(--astro-accent);
    font-size: var(--font-sm);
    font-weight: 600;
    font-style: italic;
}

.nakshatra-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.nakshatra-traits {
    background: rgba(167, 139, 250, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.nakshatra-traits ul {
    list-style: none;
    padding: 0;
}

.nakshatra-traits li {
    padding: var(--space-xs) 0;
    color: var(--astro-starlight);
}

.nakshatra-traits li::before {
    content: '✓';
    color: var(--personal-purple);
    margin-right: var(--space-xs);
    font-weight: bold;
}

/* Vedic Houses */
.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.house-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
}

.house-card:hover {
    transform: scale(1.05);
    border-color: var(--personal-purple);
}

.house-number {
    font-size: var(--font-3xl);
    font-weight: bold;
    color: var(--personal-purple);
    margin-bottom: var(--space-xs);
}

.house-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-lg);
    color: var(--astro-gold);
    margin-bottom: var(--space-sm);
}

.house-description {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

/* Western Astrology Hub */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.zodiac-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    text-align: center;
}

.zodiac-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
    border-color: var(--astro-accent);
}

.zodiac-header {
    margin-bottom: var(--space-md);
}

.zodiac-symbol {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: var(--space-sm);
    display: block;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.3));
}

.zodiac-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--astro-accent);
    margin-bottom: var(--space-xs);
}

.zodiac-meta {
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-bottom: var(--space-md);
}

.zodiac-dates {
    color: var(--astro-gold);
    font-size: var(--font-sm);
    font-weight: 600;
}

.zodiac-ruler {
    color: var(--astro-nebula);
    font-size: var(--font-sm);
    font-style: italic;
    margin-top: var(--space-xs);
}

.zodiac-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.zodiac-traits {
    background: rgba(6, 182, 212, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.zodiac-traits ul {
    list-style: none;
    padding: 0;
}

.zodiac-traits li {
    padding: var(--space-xs) 0;
    color: var(--astro-starlight);
}

.zodiac-traits li::before {
    content: '✓';
    color: var(--astro-accent);
    margin-right: var(--space-xs);
    font-weight: bold;
}

.western { color: var(--astro-accent); }
.vedic { color: var(--personal-purple); }
.chinese { color: var(--astro-gold); }
.numerology { color: var(--astro-emerald); }

/* Numerology Hub */
.number-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.number-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    text-align: center;
}

.number-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    border-color: var(--astro-emerald);
}

.number-header {
    margin-bottom: var(--space-md);
}

.number-symbol {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: bold;
    color: var(--astro-emerald);
    margin-bottom: var(--space-sm);
    display: block;
    font-family: 'Playfair Display', serif;
}

.number-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--astro-emerald);
    margin-bottom: var(--space-xs);
}

.number-meta {
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-bottom: var(--space-md);
}

.number-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.number-traits {
    background: rgba(16, 185, 129, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.number-traits ul {
    list-style: none;
    padding: 0;
}

.number-traits li {
    padding: var(--space-xs) 0;
    color: var(--astro-starlight);
}

.number-traits li::before {
    content: '✓';
    color: var(--astro-emerald);
    margin-right: var(--space-xs);
    font-weight: bold;
}

/* Master Numbers */
.master-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.master-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(16, 185, 129, 0.2));
    border: 2px solid var(--astro-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
}

.master-number {
    font-size: var(--font-4xl);
    font-weight: bold;
    color: var(--astro-gold);
    margin-bottom: var(--space-xs);
    font-family: 'Playfair Display', serif;
}

.master-title {
    font-size: var(--font-lg);
    color: var(--astro-emerald);
    margin-bottom: var(--space-sm);
}

.master-description {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

/* Technology Page */
.tech-page {
    padding: var(--space-xl) 0;
}

.tech-card {
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-md) 0;
}

.code-block {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    font-family: 'Fira Code', monospace;
    font-size: var(--font-sm);
    color: var(--astro-accent);
    overflow-x: auto;
    margin: var(--space-md) 0;
}

.architecture-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.flow-box {
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid var(--astro-accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.flow-arrow {
    text-align: center;
    color: var(--astro-gold);
    font-size: var(--font-2xl);
    margin: var(--space-sm) 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.comparison-table th {
    background: rgba(6, 182, 212, 0.2);
    color: var(--astro-gold);
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-secondary);
}

.check {
    color: var(--success);
    font-weight: bold;
}

.cross {
    color: var(--error);
    font-weight: bold;
}

.precision-box {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--personal-purple);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.precision-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-number {
    font-size: var(--font-3xl);
    font-weight: bold;
    color: var(--astro-gold);
    display: block;
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--text-muted);
    font-size: var(--font-sm);
}

.stat-value {
    color: var(--astro-starlight);
    font-weight: 600;
}

.math-box {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--astro-emerald);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    border-radius: var(--radius-sm);
}

.equation {
    font-family: 'Fira Code', monospace;
    color: var(--astro-accent);
    font-size: var(--font-lg);
    margin: var(--space-sm) 0;
}

.equation-result {
    color: var(--astro-gold);
    font-weight: bold;
    margin-top: var(--space-sm);
}

.system-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.system-box {
    flex: 1;
    min-width: 200px;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.arrow {
    color: var(--astro-gold);
    font-size: var(--font-3xl);
    font-weight: bold;
}

/* Integration Pages */
.integration-page {
    padding: var(--space-xl) 0;
}

.integration-section {
    margin: var(--space-xl) 0;
}

.integration-box {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--personal-purple);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-md) 0;
}

.integration-icon {
    font-size: var(--font-4xl);
    text-align: center;
    margin-bottom: var(--space-md);
    display: block;
}

.synthesis-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid var(--astro-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-lg) 0;
    text-align: center;
}

.vs-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin: var(--space-lg) 0;
}

.vs-box {
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.vs-label {
    font-size: var(--font-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vs-number {
    font-size: var(--font-4xl);
    font-weight: bold;
    color: var(--astro-gold);
    margin: var(--space-sm) 0;
}

.vs-symbol {
    font-size: var(--font-2xl);
    color: var(--astro-accent);
    margin-bottom: var(--space-sm);
}

.vs-desc {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

.complexity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.complexity-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.column-card {
    background: rgba(30, 58, 138, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.three-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

/* Homepage & Hub Elements */
.homepage-container {
    padding: var(--space-xl) 0;
}

.gateway-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.gateway-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(139, 92, 246, 0.3));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

.gateway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    border-color: var(--astro-gold);
}

.gateway-icon {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--space-md);
    display: block;
}

.gateway-btn {
    margin-top: var(--space-md);
}

.hero {
    text-align: center;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--astro-deep-space), var(--astro-cosmic-blue));
}

.hero-section {
    padding: var(--space-2xl) 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    margin-top: var(--space-md);
}

.hero-icon {
    font-size: clamp(4rem, 10vw, 6rem);
    margin-bottom: var(--space-lg);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.discover-section {
    margin: var(--space-xl) 0;
}

.discover-item {
    background: rgba(30, 58, 138, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
}

.discover-item:hover {
    transform: translateY(-5px);
    border-color: var(--astro-accent);
}

.discover-item-icon {
    font-size: var(--font-4xl);
    margin-bottom: var(--space-sm);
    display: block;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.blog-card {
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.blog-card-content {
    padding: var(--space-md);
}

.blog-preview {
    color: var(--text-secondary);
    margin: var(--space-sm) 0;
}

.features-section {
    margin: var(--space-2xl) 0;
}

.features-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.feature-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.feature-icon {
    font-size: var(--font-4xl);
    color: var(--astro-gold);
    margin-bottom: var(--space-md);
    display: block;
}

.feature-title {
    font-size: var(--font-xl);
    color: var(--astro-starlight);
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--text-secondary);
    font-size: var(--font-base);
}

/* UI Components */
.component-card {
    background: rgba(30, 58, 138, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.component-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.component-icon {
    font-size: var(--font-2xl);
    color: var(--astro-accent);
}

.component-title {
    font-size: var(--font-xl);
    color: var(--astro-gold);
}

.component-content {
    color: var(--text-secondary);
}

.concept-grid,
.concepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.concept-card {
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.concept-icon {
    font-size: var(--font-3xl);
    margin-bottom: var(--space-sm);
    display: block;
}

.concept-title {
    font-size: var(--font-lg);
    color: var(--astro-gold);
    margin-bottom: var(--space-xs);
}

.concept-description {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

/* Content & Layout */
.content-section {
    margin: var(--space-xl) 0;
}

.section {
    margin: var(--space-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--astro-gold);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--font-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.section-intro {
    color: var(--text-muted);
    font-size: var(--font-base);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.page-header {
    text-align: center;
    padding: var(--space-xl) 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: var(--space-xl);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--astro-gold);
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: var(--font-xl);
    color: var(--text-secondary);
}

.cosmic-title {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--astro-gold), var(--astro-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-style: italic;
    color: var(--text-muted);
    font-size: var(--font-lg);
}

.subtitle {
    color: var(--text-secondary);
    font-size: var(--font-lg);
    margin-bottom: var(--space-md);
}

.prose {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: var(--font-lg);
}

.prose p {
    margin-bottom: var(--space-md);
}

.prose strong {
    color: var(--astro-starlight);
}

.quote-block {
    background: rgba(167, 139, 250, 0.1);
    border-left: 4px solid var(--personal-purple);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--astro-starlight);
    font-size: var(--font-lg);
}

.deep-dive {
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid var(--astro-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.overview-box {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--astro-gold);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    border-radius: var(--radius-sm);
}

.example-section {
    margin: var(--space-xl) 0;
}

.example-box {
    background: rgba(30, 58, 138, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.example-reading {
    background: rgba(139, 92, 246, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.tip-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--astro-emerald);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    border-radius: var(--radius-sm);
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    border-radius: var(--radius-sm);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid var(--astro-gold);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.highlight {
    background: var(--astro-gold);
    color: var(--astro-deep-space);
    padding: 0.125rem 0.25rem;
    border-radius: var(--radius-xs);
}

.highlight-stat {
    font-size: var(--font-3xl);
    font-weight: bold;
    color: var(--astro-gold);
    text-align: center;
    margin: var(--space-sm) 0;
}

/* Strengths & Weaknesses */
.strength-weakness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.strength-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.weakness-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--error);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.trait-section {
    margin: var(--space-lg) 0;
}

.trait-list {
    list-style: none;
    padding: 0;
}

.trait-list li {
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
}

.trait-list li::before {
    content: '•';
    color: var(--astro-gold);
    margin-right: var(--space-xs);
    font-weight: bold;
}

.trait-label {
    font-weight: 600;
    color: var(--astro-starlight);
    margin-right: var(--space-xs);
}

/* Comparison Pages */
.difference-page,
.philosophy-page,
.guide-page,
.how-it-works-page,
.problem-page {
    padding: var(--space-xl) 0;
}

.competitor-section {
    margin: var(--space-xl) 0;
}

.competitor-list {
    list-style: none;
    padding: 0;
}

.competitor-item {
    background: rgba(30, 58, 138, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-sm) 0;
}

.competitor-name {
    font-weight: 600;
    color: var(--astro-gold);
    font-size: var(--font-lg);
    margin-bottom: var(--space-xs);
}

.competitor-weakness {
    color: var(--error);
    font-size: var(--font-sm);
    font-style: italic;
}

.solution-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid var(--success);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

/* Pillar Visuals */
.pillar-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
    height: 200px;
}

.pillar-1, .pillar-2, .pillar-3, .pillar-4 {
    width: 60px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    height: 120px;
}

.pillar-5 {
    width: 80px;
    background: linear-gradient(180deg, var(--personal-purple), var(--astro-cosmic-purple));
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    height: 160px;
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.5);
}

.pillar-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    color: var(--astro-gold);
    font-size: var(--font-xl);
    margin-bottom: var(--space-sm);
}

.four-pillars-section {
    margin: var(--space-2xl) 0;
}

.fifth {
    color: var(--personal-purple);
}

/* Buttons & Interactive */
.submit-button,
.submit-partner-btn,
.send-email-btn-relationship,
.unlock-insights-btn,
.view-all-btn,
.print-button,
.footer-btn {
    background: linear-gradient(135deg, var(--astro-gold), #FFA500);
    color: var(--astro-deep-space);
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-size: var(--font-base);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover,
.submit-partner-btn:hover,
.send-email-btn-relationship:hover,
.unlock-insights-btn:hover,
.view-all-btn:hover,
.print-button:hover,
.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.footer-cta {
    background: rgba(30, 58, 138, 0.3);
    padding: var(--space-2xl) 0;
    text-align: center;
    margin-top: var(--space-3xl);
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.cta-section {
    text-align: center;
    padding: var(--space-xl) 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.cta-icon {
    margin-right: var(--space-xs);
}

.cta-description {
    color: var(--text-secondary);
    margin: var(--space-md) 0;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.cta-features li {
    padding: var(--space-xs) 0;
}

.final-cta {
    background: linear-gradient(135deg, var(--astro-cosmic-blue), var(--astro-cosmic-purple));
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    text-align: center;
}

/* Loading & States */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    border-top-color: var(--astro-accent);
    animation: cosmicSpin 1s linear infinite;
}

.loading-state {
    text-align: center;
    padding: var(--space-xl);
    color: var(--astro-accent);
}

.loading-subtext {
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-top: var(--space-sm);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error-light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

/* Data Display */
.data-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-label {
    font-weight: 600;
    color: var(--astro-starlight);
}

.data-value {
    color: var(--text-secondary);
}

.result-box {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--personal-purple);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.diagram-section {
    margin: var(--space-xl) 0;
    text-align: center;
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.step-list li {
    counter-increment: step-counter;
    padding: var(--space-md);
    margin: var(--space-md) 0;
    background: rgba(30, 58, 138, 0.15);
    border-radius: var(--radius-md);
    position: relative;
    padding-left: var(--space-2xl);
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    background: var(--astro-gold);
    color: var(--astro-deep-space);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.principle-list {
    list-style: none;
    padding: 0;
}

.principle-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
}

.principle-list li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--astro-gold);
}

/* Profile Specific */
.generator-page,
.generator-container {
    padding: var(--space-xl) 0;
}

.personal-profile-page {
    background: linear-gradient(180deg, var(--astro-deep-space), rgba(167, 139, 250, 0.1));
}

.personal-insights-hub {
    padding: var(--space-xl) 0;
}

.relationship-insights-hub {
    padding: var(--space-xl) 0;
}

.report-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.report-header {
    text-align: center;
    padding: var(--space-xl) 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: var(--space-lg);
}

.report-footer {
    text-align: center;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-2xl);
    color: var(--text-muted);
}

.profile-name {
    color: var(--astro-gold);
    font-size: var(--font-3xl);
    font-family: 'Playfair Display', serif;
    margin-bottom: var(--space-sm);
}

.profile-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.no-profile {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--text-muted);
}

.unlocked-badge {
    background: var(--success);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: bold;
    display: inline-block;
}

/* Form Elements */
.form-section {
    margin: var(--space-lg) 0;
}

.form-intro {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.form-note {
    color: var(--text-muted);
    font-size: var(--font-sm);
    font-style: italic;
}

.label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--astro-starlight);
}

.name,
.email {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    background: rgba(11, 20, 38, 0.6);
    color: var(--astro-starlight);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--astro-gold);
    font-weight: bold;
}

.icon {
    display: inline-block;
    margin-right: var(--space-xs);
}

/* Utility */
.primary {
    color: var(--astro-gold);
}

.secondary {
    color: var(--astro-accent);
}

.personal {
    color: var(--personal-purple);
}

.relationship {
    color: var(--relationship-gold);
}

.paid {
    color: var(--success);
}

.stat {
    font-weight: bold;
    color: var(--astro-gold);
}

.insight-section {
    margin: var(--space-xl) 0;
}

.famous-examples {
    margin: var(--space-lg) 0;
}/* ============================================================================
   v54.6 SUPPLEMENTAL CSS - Missing Classes
   Add to end of style.css
   ========================================================================== */

/* PURPLE Relationship Generator Classes */
.cosmic-page {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--astro-deep-space) 0%, #1a0b3d 100%);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.value-section {
    margin: var(--space-2xl) 0;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.value-item {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--personal-purple);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}

.value-item-featured {
    border-color: var(--relationship-gold);
    background: linear-gradient(135deg, rgba(236, 201, 75, 0.1), rgba(255, 215, 0, 0.2));
}

.pillars-section {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
}

.pillar-item:hover {
    transform: scale(1.05);
    border-color: var(--personal-purple);
}

/* Combined Enhanced Payment Page Classes */
.info-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-lg) 0;
}

.price-display {
    text-align: center;
    padding: var(--space-xl) 0;
    margin: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-display .amount {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: bold;
    color: var(--astro-gold);
    font-family: 'Playfair Display', serif;
    display: block;
    margin: var(--space-sm) 0;
}

.price-display .label {
    font-size: var(--font-lg);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.benefits li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
    color: var(--text-secondary);
    font-size: var(--font-base);
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--astro-gold);
    font-weight: bold;
    font-size: var(--font-xl);
}

.payment-btn {
    background: linear-gradient(135deg, var(--astro-gold), #FFA500);
    color: var(--astro-deep-space);
    border: none;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-full);
    font-size: var(--font-xl);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: var(--space-xl) auto;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.payment-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500, var(--astro-gold));
}

.payment-btn:active {
    transform: translateY(-1px);
}

.secure-note {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--font-sm);
    margin-top: var(--space-md);
    font-style: italic;
}

.secure-note::before {
    content: '🔒 ';
}

/* ============================================================================
   END v54.6 SUPPLEMENTAL CSS
   ========================================================================== */
/* ============================================================================
   FORECAST GENERATOR & PROFILE PAGES CSS - Missing Styles
   Add to style.css
   ========================================================================== */

/* Forecast Generator Page */
.forecast-generator-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    padding: var(--space-2xl) 0;
}

.forecast-info-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.2));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-lg) 0;
}

.forecast-info-box h3 {
    color: var(--astro-gold);
    margin-bottom: var(--space-md);
    font-size: var(--font-xl);
}

.forecast-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forecast-info-box li {
    padding: var(--space-sm) 0;
    color: #fef3c7;
    font-size: var(--font-base);
}

.why-forecast {
    margin-top: var(--space-2xl);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.why-forecast h2 {
    color: var(--astro-gold);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--astro-gold);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.benefit-card h3 {
    color: var(--astro-gold);
    font-size: var(--font-xl);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Forecast Profile Page */
.forecast-profile-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    padding: var(--space-2xl) 0;
}

.profile-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.forecast-header {
    text-align: center;
    padding: var(--space-2xl) 0;
    margin-bottom: var(--space-xl);
}

.forecast-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--astro-gold);
    margin-bottom: var(--space-md);
    font-family: 'Playfair Display', serif;
}

.birth-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--text-secondary);
}

.payment-gate {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.8));
    border: 2px solid var(--astro-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin: var(--space-xl) 0;
    text-align: center;
}

.gate-content {
    max-width: 600px;
    margin: 0 auto;
}

.gate-content h2 {
    color: var(--astro-gold);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
    font-family: 'Playfair Display', serif;
}

.gate-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-lg);
    margin-bottom: var(--space-xl);
}

.forecast-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.feature-item h4 {
    color: var(--astro-gold);
    font-size: var(--font-lg);
    margin-bottom: var(--space-sm);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.pricing-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.2));
    border: 2px solid var(--astro-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.price-tag {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: bold;
    color: var(--astro-gold);
    font-family: 'Playfair Display', serif;
    margin: var(--space-md) 0;
    display: block;
}

.pricing-box p {
    color: var(--text-secondary);
    font-size: var(--font-base);
    margin: var(--space-sm) 0;
}

/* Preview Content (if shown) */
.preview-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.preview-content h3 {
    color: var(--astro-gold);
    font-size: var(--font-xl);
    margin-bottom: var(--space-md);
}

/* ============================================================================
   END FORECAST PAGES CSS
   ========================================================================== */

/* ============================================================================
   BLOG POST CSS VARIABLES & STYLING
   ========================================================================== */

/* Additional CSS Variables for Blog Posts */
:root {
    --deep-space: var(--astro-deep-space);
    --gold: var(--astro-gold);
    --text-primary: #f1f5f9;
    --accent: var(--astro-accent);
}

/* Blog Post Typography & Content */
.entry-content {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

.entry-content p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.entry-content a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover { color: var(--gold); }

.entry-content ul,
.entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.entry-content li { margin-bottom: 0.5rem; }

.entry-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.entry-content code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--accent);
}

.entry-content pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
}

/* Post Meta */
.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 215, 0, 0.7);
    align-items: center;
}

/* Entry Title */
.entry-title {
    color: var(--gold);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.post-navigation .nav-next { text-align: right; }

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.post-navigation a { text-decoration: none; }

/* Entry Footer */
.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.tags-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.tags-links span {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ============================================================================
   END BLOG CSS
   ========================================================================== */