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

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background-color: #f9fafc;
            color: #1e2a3a;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* =============================================
           FREE SITE HEADER & NAVIGATION
           ============================================= */
        .site-header {
            background: white;
            box-shadow: 0 4px 16px rgba(0, 20, 40, 0.08);
            position: relative;
            width: 100%;
        }

        .logo-row {
            background: white;
            padding: 0.6rem 2rem;
            border-bottom: 1px solid rgba(13, 71, 161, 0.1);
        }

        .company-logo {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 2rem;
        }

        .logo-group {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .company-logo img {
            height: 56px;
            width: auto;
            display: block;
            border-radius: 12px;
        }

        .slogan-text {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0d47a1;
            letter-spacing: -0.01em;
            background: #e3f2fd;
            padding: 0.4rem 1.4rem;
            border-radius: 40px;
            white-space: nowrap;
            border: 1px solid rgba(13,71,161,0.2);
        }

        .header-cta {
            display: flex;
            gap: 12px;
        }

        .header-cta a {
            background: #0d47a1;
            color: white;
            text-decoration: none;
            padding: 0.4rem 1.4rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
            white-space: nowrap;
        }

        .header-cta a:hover {
            background: #1565c0;
        }

        .header-cta a.login-btn { background: #0d47a1; }
        .header-cta a.signup-btn { background: #4CAF50; }
        .header-cta a.signup-btn:hover { background: #3d8b40; }

        .nav-row {
            background: #0d47a1;
        }

        .main-nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0.1rem 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.2rem;
        }
        .nav-links li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 0.4rem 1.2rem;
            font-weight: 500;
            border-radius: 30px;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .nav-links li a:hover { background: #4CAF50; }
        .nav-links li a.active {
        	border-bottom: 5px solid #4CAF50;
        	background: transparent;
        	border-radius: 0;
    	}

        /* =============================================
           BREADCRUMBS
           ============================================= */
        .breadcrumb-wrapper {
            max-width: 800px;
            margin: 20px auto 0;
            padding: 0 20px;
        }

        .breadcrumb-nav {
            margin-bottom: 0;
        }

         .breadcrumb-list {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            white-space: nowrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 14px;
            color: #666;
            -webkit-overflow-scrolling: touch;
        }

        .breadcrumb-list::-webkit-scrollbar {
            display: none;
        }

        .breadcrumb-list li {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-list li a {
            color: #0d47a1;
            text-decoration: none;
            opacity: 0.85;
            transition: opacity 0.2s;
            font-weight: 500;
        }

        .breadcrumb-list li a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .breadcrumb-list li:not(:last-child)::after {
            content: ">";
            font-size: 1rem;
            color: #aaa;
        }

        .breadcrumb-list li.active {
            color: #666;
            font-weight: 600;
        }

        /* =============================================
           WELCOME BANNER (Purple Gradient)
           ============================================= */
        .welcome-banner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 24px;
            padding: 2rem;
            margin: 20px auto 30px auto;
            color: white;
            position: relative;
            overflow: hidden;
            max-width: 800px;
            width: 100%;
            text-align: left;
        }

        .dream-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            margin-bottom: 16px;
        }

        .welcome-banner h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .welcome-banner p {
            font-size: 1.1rem;
            line-height: 1.5;
            opacity: 0.95;
        }

        /* =============================================
           MAIN CONTENT - WHITE BACKGROUND
           ============================================= */
        .main-wrapper {
            background: white;
            min-height: calc(100vh - 200px);
        }

        .interpretation-container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px 40px 20px;
        }

        /* Dream Card */
        .dream-card {
            background: white;
            border-radius: 32px;
            margin-bottom: 30px;
            overflow: hidden;
        }

		/* Dream Scenario Info Line */
		.dream-scenario-info {
    			display: flex;
    			align-items: center;
    			gap: 8px;
    			margin-bottom: 0px;
    			padding: 8px 12px;
    			background: white
    			border-radius: 8px;
    			font-size: 1rem;
    			color: #0d47a1;
    			font-weight: 500;
		}

		.dream-scenario-info i {
    			font-size: 1rem;
    			color: #0d47a1;
		}


        /* Dream Text Box */
        .dream-text-box {
            background: #e8f0fe;
            padding: 28px;
            margin: 0 0 24px 0;
            border-radius: 24px;
            font-style: italic;
            border-left: 5px solid #0d47a1;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #1e2a3a;
        }

        /* Meta Information */
        .dream-meta {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }

        .style-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #0d47a1, #1565c0);
            color: white;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
        }

		/* Style Badges - Color coded by interpretation style */
       .style-badge-jungian {
            background: #0d47a1;
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
        }

       .style-badge-freudian {
            background: #c62828;
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
        }

       .style-badge-modern {
            background: #2e7d32;
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
        }

        .style-badge-spiritual {
            background: #6a1b9a;
            color: white;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
        }

        /* Core Theme Box */
        .core-theme-box {
            background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
            padding: 28px;
            margin: 0 0 28px 0;
            border-radius: 24px;
            color: white;
            box-shadow: 0 10px 25px rgba(13, 71, 161, 0.3);
        }

        .core-theme-title {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            opacity: 0.9;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .core-theme-text {
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.6;
            margin: 0;
        }

        /* Symbols Section */
        .symbols-section {
            margin-bottom: 28px;
        }

        .symbols-title {
            color: #0d47a1;
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .symbol-card {
            background: #f8f9ff;
            padding: 18px;
            border-radius: 16px;
            margin-bottom: 14px;
            border-left: 4px solid #0d47a1;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .symbol-card:hover {
            transform: translateX(6px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        .symbol-name {
            font-weight: 700;
            color: #0d47a1;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 8px;
        }

        .symbol-meaning {
            color: #555;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Wisdom Box */
        .wisdom-box {
            background: #fff8e7;
            padding: 24px;
            margin: 0 0 28px 0;
            border-radius: 24px;
            border-left: 5px solid #ffb74d;
        }

        .wisdom-title {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #e65100;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .wisdom-text {
            font-size: 1.1rem;
            line-height: 1.65;
            color: #333;
            margin: 0;
        }

        /* Related Dreams Section */
        .related-section {
            background: #f8f9fa;
            border-radius: 28px;
            padding: 28px;
            margin-top: 20px;
            margin-bottom: 30px;
            border: 1px solid #eef2f6;
        }

        .related-title {
            color: #0d47a1;
            font-size: 1.2rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 14px;
        }

        .related-link-card {
            background: white;
            padding: 14px 18px;
            border-radius: 16px;
            color: #333;
            text-decoration: none;
            transition: all 0.2s;
            display: block;
            border: 1px solid #e0e7ff;
        }

        .related-link-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border-color: #0d47a1;
        }

        .related-link-card span {
            display: block;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 6px;
            color: #0d47a1;
        }

        .related-link-card small {
            font-size: 0.75rem;
            color: #666;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #ede7f6 0%, #d1c4e9 100%);
            border-radius: 28px;
            padding: 32px;
            text-align: center;
            margin-top: 20px;
        }

        .cta-section h3 {
            color: #1a237e;
            font-size: 1.4rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .cta-section p {
            color: #1a237e;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .cta-button {
            display: inline-block;
            background: #1a237e;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            background: #0d1b5e;
        }

        /* Footer */
        .site-footer {
            background: white;
            padding: 32px 24px;
            text-align: center;
            border-top: 1px solid #eef2f6;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin: 15px 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.85rem;
        }

        .footer-links a:hover {
            color: #0d47a1;
        }

        .copyright {
            color: #999;
            font-size: 0.75rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body { padding-top: 0; }
            .site-header { position: relative; top: auto; left: auto; width: 100%; box-shadow: 0 2px 8px rgba(0, 20, 40, 0.05); }
            .logo-row { padding: 0.5rem 1rem; }
            .main-nav { padding: 0.2rem 1rem; width: 100%; max-width: 100%; overflow: hidden; }
            .company-logo { flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.5rem; }
            .logo-group { flex: 0 0 auto; }
            .company-logo img { height: 42px; }
            .slogan-text { display: none; }
            .header-cta { flex-direction: column; gap: 6px; margin-left: auto; flex: 0 0 auto; }
            .header-cta a { padding: 0.25rem 1rem; font-size: 0.8rem; text-align: center; min-width: 70px; display: block; }
            .nav-links { overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
            .breadcrumb-wrapper { margin: 15px auto 0; }
            .welcome-banner { margin: 0.2rem 1rem 1rem 1rem; padding: 1.2rem; border-radius: 20px; width: auto; max-width: 100% !important; }
            .welcome-banner h1 { font-size: 1.3rem; line-height: 1.3; margin-bottom: 0.75rem; text-align: left; }
            .welcome-banner p { font-size: 1.1rem; line-height: 1.4; text-align: left; }
		   .dream-text-box {font-size: 1rem;}
            .core-theme-box { padding: 20px; }
            .core-theme-text { font-size: 1rem; }
            .symbol-card { padding: 14px; }
            .symbol-name { font-size: 1rem; }
            .symbol-meaning { font-size: 1rem; }
            .wisdom-box { padding: 18px; }
            .wisdom-text { font-size: 0.95rem; }
            .related-grid { grid-template-columns: 1fr; }
            .cta-section h3 { font-size: 1.2rem; }
   		   .nav-links li a.active {
        		  border-bottom: 2px solid #4CAF50;
        		  background: transparent;
        		  border-radius: 0;
    		  }

   			/* ==================================================================
       		SAFARI-ONLY OVERRIDES (Android Chrome ignores this entirely)
       		================================================================== */
    			@supports (-webkit-hyphens:none) {
				html {
        				font-size: 22px !important; /* Slightly scales up layout elements on dense screens, rendering 					identically to Android font-boosting */
    				}
    
    				body {
        				font-size: 22px !important;
    				}

        			/* Scale up the image height slightly on Safari to match the visual look */
        			.company-logo img { 
            			height: 52px !important; 
        			}

       			 /* Scale up the CTA button text and tap padding targets for iOS Safari */
       			 .header-cta a {
            			font-size: 0.95rem !important;      /* Bumps font from 0.8rem up */
            			padding: 0.4rem 1.1rem !important;  /* Bumps padding from 0.25rem up */
        			}
			}

        }

        @media (max-width: 480px) {
            .welcome-banner { padding: 1.5rem; margin: 15px 15px 25px 15px; }
            .welcome-banner h1 { font-size: 1.3rem; }
            .breadcrumb-wrapper { padding: 0 15px; }
            .interpretation-container { padding: 0 15px 30px 15px; }
        }

        /* Safari-specific overrides */
        @supports (-webkit-hyphens:none) {
            html { font-size: 22px !important; }
            body { font-size: 22px !important; }
            .company-logo img { height: 52px !important; }
            .header-cta a { font-size: 0.95rem !important; padding: 0.4rem 1.1rem !important; }
        }

