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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
            padding: clamp(10px, 3vw, 20px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .header {
            text-align: center;
            margin-bottom: clamp(20px, 5vw, 40px);
            padding: clamp(20px, 5vw, 40px) 0;
        }

        .header h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: #f6c744;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 10px;
        }

        .header p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #b8b8b8;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .form-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: clamp(20px, 5vw, 40px);
            margin-bottom: clamp(20px, 5vw, 40px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .form-group {
            margin-bottom: clamp(15px, 3vw, 25px);
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #f6c744;
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        .form-group input {
            width: 100%;
            padding: clamp(12px, 2.5vw, 15px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #f6c744;
            box-shadow: 0 0 10px rgba(246, 199, 68, 0.3);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .calculate-btn {
            width: 100%;
            padding: clamp(15px, 3vw, 20px);
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
            border: none;
            border-radius: 15px;
            color: #1a1a2e;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .calculate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(246, 199, 68, 0.4);
        }

        .calculate-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .loading-spinner {
            display: none;
            margin: 20px auto;
            text-align: center;
        }

        .spinner {
            width: clamp(40px, 8vw, 60px);
            height: clamp(40px, 8vw, 60px);
            border: 4px solid rgba(246, 199, 68, 0.3);
            border-top: 4px solid #f6c744;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        .loading-text {
            color: #f6c744;
            font-size: clamp(1rem, 2vw, 1.1rem);
            font-weight: 500;
            animation: pulse-text 2s ease-in-out infinite;
        }

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

        @keyframes pulse-text {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .result-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: clamp(20px, 5vw, 40px);
            margin-bottom: clamp(20px, 5vw, 40px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: none;
            animation: fadeInUp 0.8s ease-out;
        }

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

        .result-header {
            text-align: center;
            margin-bottom: clamp(20px, 5vw, 40px);
            position: relative;
        }

        .user-info {
            background: rgba(246, 199, 68, 0.1);
            border-radius: 15px;
            padding: clamp(15px, 3vw, 20px);
            margin-bottom: clamp(20px, 4vw, 30px);
            border: 1px solid rgba(246, 199, 68, 0.3);
        }

        .user-info h3 {
            color: #f6c744;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .user-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: clamp(10px, 2vw, 15px);
            margin-top: 15px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #e0e0e0;
            justify-content: center;
            text-align: center;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .detail-item .icon {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
        }

        .life-path-badge {
            display: inline-block;
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
            color: #1a1a2e;
            padding: clamp(15px, 3vw, 20px) clamp(25px, 5vw, 40px);
            border-radius: 50px;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: clamp(15px, 3vw, 25px);
            animation: pulse 2s infinite;
            position: relative;
            box-shadow: 0 10px 30px rgba(246, 199, 68, 0.4);
        }

        .life-path-badge::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #f6c744, #ffb347, #f6c744);
            border-radius: 50px;
            z-index: -1;
            animation: rotate 3s linear infinite;
        }

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

        .archetype-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: #f6c744;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            position: relative;
        }

        .archetype-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(60px, 15vw, 100px);
            height: 3px;
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
            border-radius: 2px;
        }

        .archetype-summary {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: #b8b8b8;
            margin-bottom: clamp(20px, 4vw, 30px);
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }

        .insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
            gap: clamp(15px, 3vw, 25px);
            margin-bottom: clamp(20px, 5vw, 40px);
        }

        .insight-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: clamp(20px, 4vw, 30px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .insight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
        }

        .insight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.12);
        }

        .insight-card h3 {
            color: #f6c744;
            margin-bottom: clamp(15px, 3vw, 20px);
            font-size: clamp(1.2rem, 2.5vw, 1.4rem);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            flex-wrap: wrap;
        }

        .insight-card .icon {
            font-size: clamp(1.4rem, 3vw, 1.6rem);
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .business-tags {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(8px, 2vw, 12px);
            margin-bottom: clamp(15px, 3vw, 20px);
        }

        .business-tag {
            background: linear-gradient(135deg, #ff4c9e 0%, #e74c3c 100%);
            color: white;
            padding: clamp(8px, 2vw, 10px) clamp(14px, 3vw, 18px);
            border-radius: 25px;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 76, 158, 0.3);
        }

        .business-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 76, 158, 0.4);
        }

        .insight-text {
            color: #e0e0e0;
            font-size: clamp(1rem, 2vw, 1.1rem);
            line-height: 1.6;
        }

        .cosmic-advice {
            background: rgba(246, 199, 68, 0.15);
            border: 2px solid rgba(246, 199, 68, 0.3);
            border-radius: 20px;
            padding: clamp(25px, 5vw, 35px);
            margin: clamp(20px, 5vw, 40px) 0;
            font-style: italic;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: #f6c744;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cosmic-advice::before {
            content: '✨';
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: clamp(1.5rem, 3vw, 2rem);
            animation: twinkle 2s ease-in-out infinite;
        }

        .cosmic-advice::after {
            content: '✨';
            position: absolute;
            bottom: 15px;
            right: 20px;
            font-size: clamp(1.5rem, 3vw, 2rem);
            animation: twinkle 2s ease-in-out infinite 1s;
        }

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

        .success-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
            gap: clamp(15px, 3vw, 20px);
            margin: clamp(20px, 5vw, 40px) 0;
        }

        .metric-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: clamp(20px, 4vw, 25px);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-3px);
        }

        .metric-number {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #f6c744;
            margin-bottom: 10px;
        }

        .metric-label {
            color: #b8b8b8;
            font-size: clamp(0.9rem, 2vw, 1rem);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .actions {
            display: flex;
            gap: clamp(10px, 2vw, 15px);
            flex-wrap: wrap;
            justify-content: center;
            margin-top: clamp(20px, 4vw, 30px);
        }

        .action-btn {
            padding: clamp(10px, 2vw, 12px) clamp(18px, 3vw, 24px);
            border: 2px solid #f6c744;
            background: transparent;
            color: #f6c744;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: clamp(0.9rem, 2vw, 1rem);
            text-align: center;
            justify-content: center;
            min-width: 120px;
        }

        .action-btn:hover {
            background: #f6c744;
            color: #1a1a2e;
            transform: translateY(-2px);
        }

        .export-card {
            background: white;
            color: #1a1a2e;
            padding: clamp(20px, 4vw, 30px);
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .export-card .life-path-badge {
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
            color: #1a1a2e;
        }

        .export-card .archetype-title {
            color: #1a1a2e;
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 15px;
        }

        .export-card .quote {
            font-style: italic;
            color: #666;
            font-size: clamp(1rem, 2vw, 1.1rem);
            margin-top: 20px;
        }

        .credibility-section {
            background: rgba(78, 205, 196, 0.1);
            border: 1px solid rgba(78, 205, 196, 0.3);
            border-radius: 15px;
            padding: clamp(15px, 3vw, 20px);
            margin: clamp(20px, 4vw, 30px) 0;
            text-align: center;
        }

        .credibility-note {
            color: #4ecdc4;
            font-size: clamp(0.9rem, 2vw, 0.95rem);
            font-style: italic;
            margin: 0;
        }

        .hidden {
            display: none;
        }

        /* SEO Content Styles */
        .seo-content {
            margin-top: clamp(40px, 8vw, 60px);
            padding-top: clamp(40px, 8vw, 60px);
            border-top: 2px solid rgba(246, 199, 68, 0.2);
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(20px, 5vw, 40px);
            max-width: 1200px;
            margin: 0 auto;
        }

        .main-content {
            min-width: 0;
        }

        .content-header {
            text-align: center;
            margin-bottom: clamp(30px, 6vw, 50px);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 2.5rem);
            font-weight: 700;
            color: #f6c744;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .section-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: #b8b8b8;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            padding: 0 1rem;
        }

        .content-grid {
            display: flex;
            flex-direction: column;
            gap: clamp(25px, 5vw, 40px);
        }

        .content-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 25px;
            padding: clamp(25px, 5vw, 40px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
        }

        .content-card.featured {
            background: rgba(246, 199, 68, 0.1);
            border: 2px solid rgba(246, 199, 68, 0.3);
        }

        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.12);
        }

        .card-icon {
            font-size: clamp(2.5rem, 5vw, 3rem);
            margin-bottom: 20px;
            display: block;
        }

        .content-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: #f6c744;
            margin-bottom: clamp(20px, 4vw, 25px);
            line-height: 1.3;
        }

        .content-card p {
            color: #e0e0e0;
            font-size: clamp(1rem, 2vw, 1.1rem);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .highlight-box {
            background: rgba(246, 199, 68, 0.15);
            border-left: 4px solid #f6c744;
            padding: clamp(15px, 3vw, 20px);
            margin: clamp(20px, 4vw, 25px) 0;
            border-radius: 0 10px 10px 0;
        }

        .highlight-box strong {
            color: #f6c744;
            font-weight: 600;
        }

        .number-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
            gap: clamp(15px, 3vw, 20px);
            margin-top: clamp(20px, 4vw, 30px);
        }

        .number-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: clamp(15px, 3vw, 20px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .number-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .number {
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
            color: #1a1a2e;
            width: clamp(40px, 8vw, 50px);
            height: clamp(40px, 8vw, 50px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            font-weight: 700;
            flex-shrink: 0;
        }

        .number-desc strong {
            color: #f6c744;
            font-size: clamp(1rem, 2vw, 1.1rem);
            display: block;
            margin-bottom: 8px;
        }

        .number-desc p {
            color: #b8b8b8;
            font-size: clamp(0.9rem, 2vw, 0.95rem);
            margin: 0;
        }

        .month-insights {
            margin-top: clamp(20px, 4vw, 25px);
        }

        .season-group {
            margin-bottom: clamp(20px, 4vw, 25px);
            padding: clamp(15px, 3vw, 20px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border-left: 4px solid #f6c744;
        }

        .season-group h4 {
            color: #f6c744;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .season-group p {
            color: #e0e0e0;
            margin: 0;
            font-size: clamp(0.95rem, 2vw, 1rem);
        }

        .wealth-numbers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
            gap: clamp(15px, 3vw, 20px);
            margin-top: clamp(20px, 4vw, 25px);
        }

        .wealth-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: clamp(15px, 3vw, 20px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .wealth-number {
            background: linear-gradient(135deg, #ff4c9e 0%, #e74c3c 100%);
            color: white;
            width: clamp(50px, 10vw, 60px);
            height: clamp(50px, 10vw, 60px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            font-weight: 700;
            flex-shrink: 0;
        }

        .wealth-desc strong {
            color: #f6c744;
            font-size: clamp(1rem, 2vw, 1.1rem);
            display: block;
            margin-bottom: 8px;
        }

        .wealth-desc p {
            color: #b8b8b8;
            font-size: clamp(0.9rem, 2vw, 0.95rem);
            margin: 0;
        }

        .industry-matrix {
            margin-top: clamp(20px, 4vw, 25px);
        }

        .industry-category {
            margin-bottom: clamp(20px, 4vw, 25px);
            padding: clamp(20px, 4vw, 25px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border-left: 4px solid #f6c744;
        }

        .industry-category h4 {
            color: #f6c744;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .industry-category p {
            color: #e0e0e0;
            margin-bottom: 10px;
            font-size: clamp(0.95rem, 2vw, 1rem);
        }

        .industry-category strong {
            color: #ffb347;
        }

        .timing-guide {
            margin-top: clamp(20px, 4vw, 25px);
        }

        .timing-section {
            margin-bottom: clamp(25px, 5vw, 30px);
            padding: clamp(20px, 4vw, 25px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
        }

        .timing-section h4 {
            color: #f6c744;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .timing-list {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }

        .timing-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #e0e0e0;
            font-size: clamp(0.95rem, 2vw, 1rem);
        }

        .timing-list li:last-child {
            border-bottom: none;
        }

        .timing-list strong {
            color: #f6c744;
        }

        .compatibility-matrix {
            margin-top: clamp(20px, 4vw, 25px);
        }

        .compatibility-row {
            margin-bottom: clamp(20px, 4vw, 25px);
            padding: clamp(20px, 4vw, 25px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
        }

        .compatibility-row h4 {
            color: #f6c744;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .pair-list {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(8px, 2vw, 10px);
            margin-bottom: 15px;
        }

        .pair {
            background: linear-gradient(135deg, #ff4c9e 0%, #e74c3c 100%);
            color: white;
            padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2.5vw, 16px);
            border-radius: 20px;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            font-weight: 500;
        }

        .success-examples {
            margin-top: clamp(20px, 4vw, 25px);
        }

        .example-item {
            margin-bottom: clamp(20px, 4vw, 25px);
            padding: clamp(20px, 4vw, 25px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border-left: 4px solid #f6c744;
        }

        .example-item h4 {
            color: #f6c744;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .action-card {
            background: rgba(246, 199, 68, 0.1) !important;
            border: 2px solid rgba(246, 199, 68, 0.3) !important;
            text-align: center;
        }

        .action-benefits {
            margin: clamp(20px, 4vw, 30px) 0;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            padding: clamp(12px, 2.5vw, 15px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .benefit-icon {
            font-size: clamp(1.3rem, 2.5vw, 1.5rem);
            color: #f6c744;
        }

        .cta-button {
            display: inline-block;
            padding: clamp(15px, 3vw, 18px) clamp(25px, 5vw, 35px);
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
            color: #1a1a2e;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 600;
            font-size: clamp(1rem, 2vw, 1.1rem);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(246, 199, 68, 0.4);
        }

        /* Sidebar Styles */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: clamp(20px, 4vw, 30px);
        }

        .sidebar-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: clamp(20px, 4vw, 30px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            top: 20px;
        }

        .sidebar-card h3 {
            color: #f6c744;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }

        .fact-list {
            display: flex;
            flex-direction: column;
            gap: clamp(15px, 3vw, 20px);
        }

        .fact-item {
            text-align: center;
            padding: clamp(15px, 3vw, 20px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
        }

        .fact-number {
            display: block;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: #f6c744;
            margin-bottom: 8px;
        }

        .fact-text {
            color: #e0e0e0;
            font-size: clamp(0.85rem, 2vw, 0.9rem);
            line-height: 1.4;
        }

        .popular-numbers {
            display: flex;
            flex-direction: column;
            gap: clamp(12px, 2.5vw, 15px);
        }

        .number-rank {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: clamp(12px, 2.5vw, 15px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .rank {
            color: #f6c744;
            font-weight: 600;
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        .number-badge {
            background: linear-gradient(135deg, #f6c744 0%, #ffb347 100%);
            color: #1a1a2e;
            width: clamp(30px, 6vw, 35px);
            height: clamp(30px, 6vw, 35px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .number-name {
            color: #e0e0e0;
            font-size: clamp(0.9rem, 2vw, 0.95rem);
        }

        .related-links {
            display: flex;
            flex-direction: column;
            gap: clamp(10px, 2vw, 12px);
        }

        .related-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: clamp(12px, 2.5vw, 15px);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            text-decoration: none;
            color: #e0e0e0;
            transition: all 0.3s ease;
        }

        .related-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .link-icon {
            font-size: clamp(1.1rem, 2vw, 1.2rem);
            color: #f6c744;
        }

        .link-text {
            font-size: clamp(0.9rem, 2vw, 0.95rem);
        }

        /* FAQ Section Styles */
        .faq-section .section-title {
    margin-bottom: 30px;
    text-align: center;
}
        .faq-section {
            margin-top: clamp(40px, 8vw, 60px);
            padding-top: clamp(40px, 8vw, 60px);
            border-top: 2px solid rgba(246, 199, 68, 0.2);
        }

        .faq-section .content-wrapper {
            display: block; /* Override grid for FAQ section */
            max-width: 900px; /* Adjust max-width for FAQ content */
        }

        .faq-section .section-title {
            margin-bottom: clamp(25px, 5vw, 40px);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(15px, 3vw, 20px);
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: clamp(15px, 3vw, 20px) clamp(20px, 4vw, 25px);
            cursor: pointer;
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

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

        .faq-question h4 {
            color: #f6c744;
            font-size: clamp(1rem, 2vw, 1.1rem);
            margin: 0;
            font-weight: 600;
            flex: 1;
            padding-right: 15px;
        }

        .faq-toggle {
            color: #f6c744;
            font-size: clamp(1.3rem, 2.5vw, 1.5rem);
            font-weight: bold;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 clamp(20px, 4vw, 25px);
        }

        .faq-answer.active {
            max-height: 300px; /* Increased for responsive content */
            padding: clamp(15px, 3vw, 20px) clamp(20px, 4vw, 25px);
        }

        .faq-answer p {
            color: #e0e0e0;
            font-size: clamp(0.95rem, 2vw, 1rem);
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive breakpoints */
        @media (min-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr 300px;
            }
            
            .sidebar {
                order: 1;
            }
            
            .sidebar-card {
                /* position: sticky; */
                top: 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .action-btn {
                width: 100%;
                justify-content: center;
            }
            
            .user-details {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .detail-item {
                justify-content: center;
            }
            
            .number-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .wealth-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .calculate-btn:hover,
            .action-btn:hover,
            .cta-button:hover {
                transform: none;
            }
            
            .insight-card:hover,
            .content-card:hover {
                transform: none;
            }
            
            .business-tag:hover {
                transform: none;
            }
        }

        /* High DPI display optimizations */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .life-path-badge {
                box-shadow: 0 5px 15px rgba(246, 199, 68, 0.4);
            }
            
            .archetype-title {
                text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            }
        }

        /* Print styles */
        @media print {
            body {
                background: white;
                color: black;
            }
            
            .form-card,
            .actions,
            .sidebar {
                display: none;
            }
            
            .result-card {
                background: white;
                box-shadow: none;
                border: 1px solid #ccc;
            }
        }



        .content-wrapper {
            overflow: hidden;
        }

        .sidebar {
            overflow: hidden;
        }


