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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
            color: #e6e6fa;
            overflow-x: hidden;
        }

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

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #ffd700;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }

        .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out;
        }

        .header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            margin-bottom: 1rem;
        }

        .header p {
            font-size: 1.2rem;
            color: #c9a9dd;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 1s ease-out 0.2s both;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #ffd700;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #e6e6fa;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .traits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .trait-checkbox {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .trait-checkbox:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .trait-checkbox.selected {
            border-color: #ffd700;
            background: rgba(255, 215, 0, 0.1);
        }

        .trait-checkbox input {
            width: auto;
            margin-right: 0.5rem;
        }

        .calculate-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #ffd700, #ff6b6b);
            border: none;
            border-radius: 50px;
            color: #1a1a2e;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 1rem;
        }

        .calculate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .results-container {
            display: none;
            animation: fadeInUp 1s ease-out;
        }

        .astro-identity {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(201, 169, 221, 0.1));
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        /* Compatibility header */
        .compatibility-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }

        .compatibility-score {
            font-size: 3.5rem;
            font-weight: bold;
            margin: 1rem 0;
            background: linear-gradient(45deg, #ffd700, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .compatibility-rating {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #c9a9dd;
        }

        .birth-date-analysis, .cosmic-alignment {
            font-size: 1.1rem;
            margin: 0.5rem 0;
        }

        /* Astro profile section */
        .astro-profile-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 2.5rem;
        }

        .moon-profile, .zodiac-profile {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 2rem;
            border: 1px solid rgba(255, 215, 0, 0.15);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .moon-profile:hover, .zodiac-profile:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
        }

        .moon-profile h2, .zodiac-profile h2 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: #ffd700;
            font-family: 'Playfair Display', serif;
            text-align: center;
        }

        .zodiac-profile h2 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            line-height: 1.4;
        }

        .zodiac-profile p {
            line-height: 1.8;
            margin-bottom: 1.2rem;
            color: #e6e6fa;
            font-size: 1rem;
        }

        .zodiac-profile p strong {
            color: #ffd700;
            font-weight: 600;
        }

        .moon-phase-display {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 12px;
            margin-top: 1rem;
        }

        .moon-phase-display h3 {
            font-size: 1.4rem;
            color: #ffd700;
            margin: 1rem 0;
            font-family: 'Playfair Display', serif;
        }

        .moon-phase-display p {
            line-height: 1.6;
            margin-bottom: 0.8rem;
            color: #e6e6fa;
        }

        .moon-icon {
            font-size: 4.5rem;
            margin-bottom: 1.2rem;
            display: block;
        }

        .zodiac-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 12px;
        }

        /* Section explanations */
        .section-explanation {
            background: rgba(255, 215, 0, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-left: 4px solid #ffd700;
            font-style: italic;
            color: #e6e6fa;
        }

        .compatibility-explanation {
            background: rgba(201, 169, 221, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            border: 1px solid rgba(201, 169, 221, 0.2);
        }

        .compatibility-explanation h3 {
            color: #c9a9dd;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .moon-explanation, .zodiac-explanation {
            background: rgba(255, 215, 0, 0.05);
            border-radius: 10px;
            padding: 1.2rem;
            margin-top: 1rem;
            border-left: 3px solid #ffd700;
        }

        .moon-explanation h4, .zodiac-explanation h4 {
            color: #ffd700;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        /* Archetype enhancements */
        .archetype-explanation, .archetype-advice {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
        }

        .archetype-explanation h4, .archetype-advice h4, .archetype-challenge h4 {
            color: #c9a9dd;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .role-tags h4 {
            color: #ffd700;
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }

        /* Pattern tips */
        .pattern-tip {
            background: rgba(255, 215, 0, 0.08);
            border-radius: 6px;
            padding: 0.8rem;
            margin-top: 1rem;
            border-left: 3px solid #ffd700;
            font-size: 0.9rem;
            font-style: italic;
        }

        .pattern-tip strong {
            color: #ffd700;
        }

        /* Guidance enhancements */
        .guidance-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 3px solid #ffd700;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 0 12px 12px 0;
        }

        .guidance-number {
            background: linear-gradient(45deg, #ffd700, #c9a9dd);
            color: #1a1a2e;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .guidance-content {
            flex: 1;
        }

        .guidance-explanation {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            padding: 0.8rem;
            margin-top: 0.8rem;
            font-size: 0.9rem;
            font-style: italic;
            color: #c9a9dd;
        }

        .cosmic-summary {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(201, 169, 221, 0.1));
            border-radius: 15px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .cosmic-summary h3 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
        }

        /* Section titles */
        .section-title {
            font-family: 'Playfair Display', serif;
            color: #ffd700;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        /* Career archetypes */
        .career-archetypes {
            margin-bottom: 2rem;
        }

        .archetypes-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .archetype-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .archetype-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }

        .archetype-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ffd700, #ff6b6b, #c9a9dd);
        }

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

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

        .archetype-header h3 {
            font-size: 1.5rem;
            color: #ffd700;
            font-family: 'Playfair Display', serif;
        }

        .match-score {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .archetype-description {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: #e6e6fa;
        }

        .role-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .role-tag {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .archetype-challenge {
            padding: 1rem;
            background: rgba(201, 169, 221, 0.1);
            border-radius: 10px;
            font-style: italic;
            color: #c9a9dd;
        }

        /* Work patterns */
        .work-patterns {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .work-patterns h3 {
            font-family: 'Playfair Display', serif;
            color: #ffd700;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2rem;
        }

        .pattern-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .pattern-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 215, 0, 0.1);
            transition: all 0.3s ease;
        }

        .pattern-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .pattern-card h4 {
            color: #c9a9dd;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pattern-card h4:before {
            content: '•';
            color: #ffd700;
            font-size: 1.5rem;
        }

        .pattern-card p {
            line-height: 1.6;
            color: #e6e6fa;
        }

        /* Cosmic advice */
        .cosmic-advice {
            background: linear-gradient(135deg, rgba(201, 169, 221, 0.1), rgba(255, 215, 0, 0.1));
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .cosmic-advice h3 {
            font-family: 'Playfair Display', serif;
            color: #ffd700;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .guidance-items {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .guidance-item {
            padding: 1rem;
            margin-bottom: 1rem;
            border-left: 3px solid #ffd700;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 0 8px 8px 0;
            text-align: left;
        }

        .guidance-item:last-child {
            margin-bottom: 0;
        }

        .share-section {
            text-align: center;
            padding: 2rem;
        }

        .buttons-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .share-btn {
            background: linear-gradient(45deg, #c9a9dd, #ffd700);
            color: #1a1a2e;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 221, 0.3);
        }

        .reset-btn {
            background: linear-gradient(45deg, #ff6b6b, #ffd700);
            color: #1a1a2e;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .reset-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        /* Spinner */
        .spinner-container {
            display: none;
            text-align: center;
            padding: 4rem 2rem;
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            margin: 2rem 0;
            border: 1px solid rgba(255, 215, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .cosmic-spinner {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
        }

        .spinner-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid transparent;
            border-top: 2px solid #ffd700;
            border-radius: 50%;
            animation: spin 2s linear infinite;
        }

        .spinner-ring:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 10px;
            left: 10px;
            border-top-color: #c9a9dd;
            animation-duration: 1.5s;
            animation-direction: reverse;
        }

        .spinner-ring:nth-child(3) {
            width: 40px;
            height: 40px;
            top: 20px;
            left: 20px;
            border-top-color: #ff6b6b;
            animation-duration: 1s;
        }

        .spinner-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .spinner-text {
            color: #ffd700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            animation: textPulse 2s ease-in-out infinite;
        }

        .spinner-subtitle {
            color: #c9a9dd;
            font-size: 0.9rem;
            opacity: 0.8;
        }

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

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

        @keyframes textPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .shareable-card {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-radius: 20px;
            padding: 2rem;
            max-width: 400px;
            margin: 0 auto;
            text-align: center;
            border: 2px solid #ffd700;
        }

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

        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .form-container {
                padding: 1.5rem;
            }
            
            .traits-container {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }
            
            .archetypes-container {
                grid-template-columns: 1fr;
            }
            
            .pattern-grid {
                grid-template-columns: 1fr;
            }
            
            .astro-profile-section {
                grid-template-columns: 1fr;
            }
            
            .compatibility-score {
                font-size: 2.5rem;
            }
            
            .compatibility-rating {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .archetype-header h3 {
                font-size: 1.3rem;
            }
            
            .buttons-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .share-btn,
            .reset-btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .form-container {
                padding: 1rem;
            }
            
            .traits-container {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 0.5rem;
            }
            
            .trait-checkbox {
                padding: 0.8rem;
            }
            
            .archetype-card {
                padding: 1.5rem;
            }
            
            .pattern-card {
                padding: 1rem;
            }
            
            .cosmic-advice {
                padding: 1.5rem;
            }
            
            .work-patterns {
                padding: 1.5rem;
            }
        }




/* SEO Content Sections */

/* What is Moon Phase Compatibility - Card Layout */
.compatibility-info-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0B0C1A 0%, #1A1A2E 100%);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    border: 1px solid #404040;
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
}

.info-card h3 {
    color: #64B5F6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefits-card {
    grid-column: 1 / -1;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.benefits-list li {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    border-left: 4px solid #64B5F6;
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* How the Calculator Works Section */
.how-it-works-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #16213E 0%, #0B0C1A 100%);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-card {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    border: 1px solid #404040;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #64B5F6, #42A5F5);
    color: #1A1A1A;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 40px;
    margin-bottom: 1rem;
}

.step-card h4 {
    color: #64B5F6;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.step-card p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Moon Phase Personality Traits Section */
.moon-phases-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0B0C1A 0%, #1A1A2E 100%);
}

.moon-phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.moon-phase-card {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    border: 1px solid #404040;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.moon-phase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.moon-phase-card .phase-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.moon-phase-card .phase-name {
    color: #64B5F6;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.moon-phase-card .phase-traits {
    color: #e0e0e0;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #16213E 0%, #0B0C1A 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    border: 1px solid #404040;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    color: #64B5F6;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #64B5F6;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Section titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Body and HTML background */
html, body {
    background: linear-gradient(135deg, #0B0C1A 0%, #1A1A2E 100%);
    background-attachment: fixed;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Container adjustments */
.container, .content, main, section {
    background: transparent !important;
}

/* Override any white backgrounds */
* {
    background-color: transparent;
}

.page, .wrapper, .main-content {
    background: transparent !important;
}

[style*="background: white"], [style*="background-color: white"], [style*="background:#fff"], [style*="background: #fff"] {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%) !important;
    border: 1px solid #404040 !important;
    color: white !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #64B5F6;
}

p, span, div {
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3.5rem 0 1rem;
        min-height: 25vh;
    }
    
    .main-tool-container {
        margin: -0.5rem 0.5rem 1rem;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .container {
        padding: 15px;
    }
    
    .mode-selector {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .mode-btn {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .input-form {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .input-group {
        margin-bottom: 15px;
    }
    
    .input-field {
        padding: 10px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 16px;
    }
    
    .profiles-container {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .profile-card {
        padding: 12px;
    }
    
    .profile-name {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .moon-image {
        width: 80px;
        height: 80px;
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score-number {
        font-size: 2.5rem;
    }
    
    .score-label {
        font-size: 0.65rem;
    }
    
    .compatibility-score {
        margin-bottom: 20px;
    }
    
    .detailed-analysis {
        padding: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .action-buttons {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .action-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .info-cards-grid, .how-it-works-grid, .moon-phases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card, .step-card, .moon-phase-card {
        padding: 1rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .benefits-list div {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .compatibility-info-section, .how-it-works-section, .moon-phases-section, .faq-section {
        padding: 1.2rem 0;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        line-height: 35px;
        margin-bottom: 0.8rem;
    }
    
    .step-card h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
    }
    
    .moon-phase-card .phase-emoji {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }
    
    .moon-phase-card .phase-name {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .moon-phase-card .phase-traits {
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .navbar .container {
        padding: 0.8rem 15px;
    }
    
    .brand-logo {
        height: 45px;
    }
    
    .footer .container {
        padding: 20px 15px 10px;
    }
    
    .footer-links-simple nav ul {
        gap: 8px;
        max-width: 320px;
    }
    
    .footer-links-simple nav ul li a {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .footer p {
        font-size: 11px;
        margin: 8px 0;
    }
    
    .footer .tagline {
        font-size: 9px;
        margin: 12px auto 0;
        padding: 0 5px;
    }
    
    .footer .copyright {
        margin: 12px 0 8px 0;
        padding-top: 12px;
        font-size: 11px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .main-tool-container {
        margin: -0.5rem 0.25rem 0.8rem;
        padding: 0.8rem;
    }
    
    .container {
        padding: 10px;
    }
    
    .mode-btn {
        min-width: 90px;
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .input-form {
        padding: 12px;
    }
    
    .input-field {
        padding: 8px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
    
    .profile-name {
        font-size: 1.2rem;
    }
    
    .moon-image {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
    
    .score-circle {
        width: 100px;
        height: 100px;
    }
    
    .score-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .info-card, .step-card, .moon-phase-card {
        padding: 0.8rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        line-height: 30px;
    }
    
    .moon-phase-card .phase-emoji {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .faq-answer p {
        padding: 0 0.8rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .footer-links-simple nav ul {
        max-width: 280px;
    }
}

/* Beautiful mm Buttons with Smooth Hover Effects */
        .mm-buttons-section {
            background: linear-gradient(135deg, #16213E 0%, #0B0C1A 100%);
            padding: 3rem 0;
            margin: 2rem 0;
        }
        
        .mm-buttons-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .mm-buttons-title {
            text-align: center;
            color: #FFD700;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .mm-buttons-subtitle {
            text-align: center;
            color: #FFFFFF;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .mm-buttons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px 30px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .mm-button {
            background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
            color: #333;
            padding: 18px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            font-family: Arial, sans-serif;
            box-sizing: border-box;
        }
        
        .mm-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
            transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 0;
            border-radius: 50px;
        }
        
        .mm-button:hover::before {
            left: 0;
        }
        
        .mm-button:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
        }
        
       .mm-button span {
    color: #000000; /* Black text by default */
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.mm-button:hover span {
    color: #FFFFFF; /* White text on hover */
}

        
        .mm-button .arrow {
            margin-left: 15px;
            font-size: 18px;
            line-height: 1;
            transition: transform 0.3s ease;
        }
        
        .mm-button:hover .arrow {
            transform: translateX(5px);
        }
        
        /* Responsive design for mobile devices */
        @media (max-width: 768px) {
            .mm-buttons-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            
            .mm-button {
                padding: 15px 20px;
                font-size: 14px;
            }
            
            .mm-buttons-title {
                font-size: 2rem;
            }
            
            .mm-buttons-subtitle {
                font-size: 1rem;
            }
            
            .mm-buttons-container {
                padding: 0 20px;
            }
        }
        
        @media (max-width: 480px) {
            .mm-button {
                padding: 12px 18px;
                font-size: 13px;
            }
            
            .mm-buttons-container {
                padding: 0 15px;
            }
        }