        * {
            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.6;
            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);
        }

        .community-badge-header {
            background: linear-gradient(135deg, #ffd700, #ffb347);
            color: #1a237e;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.8rem;
            margin-left: 10px;
            white-space: nowrap;
            display: inline-block;
        }

        .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;
    	}

        /* =============================================
           MAIN CONTAINER - Centers everything at 800px
           ============================================= */
        .main-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* =============================================
           BREADCRUMBS - Inside main container
           ============================================= */
        .breadcrumb-wrapper {
            padding: 20px 0 10px 0;
            width: 100%;
        }

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

        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
            align-items: center;
            padding: 0;
        }

        .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 (Green Gradient)
           ============================================= */
        .welcome-banner {
            background: linear-gradient(135deg, #00897b 0%, #43a047 100%);
            border-radius: 24px;
            padding: 2rem;
            margin: 0 0 30px 0;
            color: white;
            position: relative;
            overflow: hidden;
            width: 100%;
            text-align: left;
        }

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

        .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);
            border-radius: 24px;
            padding: 0;
        }

        .index-container {
            padding: 40px 20px 60px;
            width: 100%;
        }

        /* Intro Text Block */
        .intro-text {
            margin-bottom: 30px;
            font-size: 1rem;
            color: #444;
            line-height: 1.7;
        }

        .intro-text p {
            margin-bottom: 15px;
        }

        /* Action Bar - Share Your Dream Button */
        .action-bar {
            text-align: center;
            margin: 20px 0 10px 0;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #0d47a1, #1565c0);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
        }

        .section-divider {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
            margin: 30px 0;
        }

        /* Latest Feed Section */
        .latest-feed-section {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0d47a1;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dream-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .dream-card {
            background: white;
            border: 1px solid #eef2f6;
            border-radius: 20px;
            padding: 24px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .dream-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }

        .card-date {
            font-size: 0.8rem;
            color: #888;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .card-tag {
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .theme-anxiety {
            background: rgba(239, 68, 68, 0.1);
            color: #c62828;
        }

        .theme-transition {
            background: rgba(245, 158, 11, 0.1);
            color: #ed6c02;
        }

        .theme-control {
            background: rgba(16, 185, 129, 0.1);
            color: #2e7d32;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .card-title a {
            color: #0d47a1;
            text-decoration: none;
        }

        .card-title a:hover {
            text-decoration: underline;
        }

        .card-excerpt {
            font-size: 0.9rem;
            color: #555;
            font-style: italic;
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .card-preview-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 12px;
            border-top: 1px solid #eef2f6;
        }

        .metric-pill {
            font-size: 0.75rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .metric-pill strong {
            color: #0d47a1;
            font-weight: 600;
        }

        /* Archive Directory Section */
        .archive-directory-section {
            background: #f8f9fa;
            border-radius: 20px;
            padding: 28px;
            margin-top: 20px;
            border: 1px solid #eef2f6;
        }

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

        .directory-year-block {
            margin-bottom: 25px;
        }

        .directory-year-block h4 {
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .directory-year-block h4 a {
            color: #0d47a1;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .directory-year-block h4 a:hover {
            text-decoration: underline;
        }

        .directory-months {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .month-link {
            background: white;
            border: 1px solid #e0e0e0;
            color: #555;
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: all 0.2s;
        }

        .month-link:hover {
            border-color: #0d47a1;
            background: #e8f0fe;
            color: #0d47a1;
        }

        .month-link.active-month {
            border-color: #0d47a1;
            background: #e8f0fe;
            color: #0d47a1;
            font-weight: 600;
        }

		/* =============================================
   			PAGINATION STYLES
   		============================================= */

		.pagination-container {
    		margin-top: 40px;
    		padding: 20px 0;
    		border-top: 1px solid #e8ecf2;
		}

		.pagination {
    		display: flex;
    		justify-content: center;
    		align-items: center;
    		flex-wrap: wrap;
    		gap: 6px;
		}

		.pagination-link {
    		display: inline-flex;
    		align-items: center;
    		justify-content: center;
    		min-width: 40px;
    		height: 40px;
    		padding: 0 12px;
    		border: 1px solid #dce1e8;
    		border-radius: 8px;
    		background: white;
    		color: #1a2332;
    		font-size: 14px;
    		font-weight: 500;
    		text-decoration: none;
    		transition: all 0.2s ease;
    		cursor: pointer;
		}

		.pagination-link:hover {
    		background: #f0f4f9;
    		border-color: #b0c4d9;
    		text-decoration: none;
    		transform: translateY(-1px);
    		box-shadow: 0 2px 4px rgba(0,0,0,0.05);
		}

		.pagination-link.current {
    		background: #0d47a1;
    		border-color: #0d47a1;
    		color: white;
    		font-weight: 600;
		}

		.pagination-link.current:hover {
    		background: #0d47a1;
    		border-color: #0d47a1;
    		transform: none;
    		box-shadow: none;
    		cursor: default;
		}

		.pagination-link.disabled {
    		opacity: 0.4;
    		cursor: not-allowed;
    		pointer-events: none;
		}

		.pagination-link.prev,
		.pagination-link.next {
    		min-width: 44px;
		}

		.pagination-link.prev i,
		.pagination-link.next i {
    		font-size: 14px;
		}

		.pagination-ellipsis {
    		display: inline-flex;
    		align-items: center;
    		justify-content: center;
    		min-width: 40px;
    		height: 40px;
    		color: #6b7a8f;
    		font-size: 16px;
		}

		.pagination-info {
    		text-align: center;
    		margin-top: 16px;
    		font-size: 14px;
    		color: #6b7a8f;
		}

		.dream-count {
    		margin-top: 12px;
    		font-size: 14px;
    		color: #6b7a8f;
    		text-align: center;
		}

		/* Loading state */
		.dream-cards-grid.loading {
    		opacity: 0.6;
    		pointer-events: none;
		}

		/* No dreams message */
		.no-dreams {
    		text-align: center;
    		padding: 40px 20px;
    		color: #6b7a8f;
    		font-size: 16px;
    		grid-column: 1 / -1;
		}

		.no-dreams i {
    		font-size: 32px;
    		display: block;
    		margin-bottom: 12px;
    		color: #b0c4d9;
		}

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

        .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: #555;
            font-size: 0.75rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .logo-row { padding: 0.5rem 1rem; }
            .company-logo img { height: 42px; }
            .slogan-text { display: none; }
            .header-cta { flex-direction: column; gap: 6px; margin-left: auto; }
            .header-cta a { padding: 0.25rem 1rem; font-size: 0.8rem; }
            .community-badge-header { display: none; }
            .nav-links { overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
            .main-container { padding: 0 15px; }
            .breadcrumb-wrapper { padding: 15px 0 10px 0; }
            .welcome-banner { padding: 1.2rem; margin: 0 0 20px 0; }
            .welcome-banner h1 { font-size: 1.4rem; }
            .welcome-banner p { font-size: 1rem; }
            .index-container { padding: 25px 16px 40px; }
            .dream-card { padding: 18px; }
            .card-title { font-size: 1.1rem; }
            .archive-directory-section { padding: 20px; }
            .directory-months { gap: 8px; }
            .month-link { padding: 4px 10px; font-size: 0.7rem; }
            .nav-links li a.active {
                border-bottom: 2px solid #4CAF50;
                background: transparent;
                border-radius: 0;
            }
            .btn-primary { padding: 10px 20px; font-size: 0.85rem; }

            /* Mobile pagination - BIGGER and MORE VISIBLE */
            .pagination-container {
                padding: 20px 0 15px 0;
                margin-top: 30px;
                border-top: 2px solid #e8ecf2;
            }

            .pagination {
                gap: 6px;
                padding: 8px 4px;
            }

            .pagination-link {
                min-width: 48px;
                height: 48px;
                padding: 0 12px;
                font-size: 16px;
                font-weight: 600;
                border-radius: 10px;
                border-width: 2px;
                border-color: #dce1e8;
                background: white;
                box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            }

            .pagination-link:active {
                transform: scale(0.92);
                background: #e8ecf2;
            }

            .pagination-link.prev,
            .pagination-link.next {
                min-width: 52px;
                height: 48px;
                font-size: 18px;
            }

            .pagination-link.prev i,
            .pagination-link.next i {
                font-size: 16px;
            }

            .pagination-link.current {
                background: #0d47a1;
                border-color: #0d47a1;
                color: white;
                font-weight: 700;
                box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
            }

            .pagination-ellipsis {
                min-width: 32px;
                height: 48px;
                font-size: 20px;
                font-weight: 700;
                padding: 0 4px;
                color: #6b7a8f;
            }

            .pagination-info {
                font-size: 14px;
                margin-top: 14px;
                padding: 10px 14px;
                background: #f8f9fa;
                border-radius: 10px;
                border: 1px solid #e8ecf2;
                font-weight: 500;
                color: #1a2332;
            }

            /* ==================================================================
               SAFARI-ONLY OVERRIDES (Android Chrome ignores this entirely)
               ================================================================== */
            @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;
                }

               .pagination-link {
                    min-width: 52px !important;
                    height: 52px !important;
                    font-size: 18px !important;
                }
                .pagination-link.prev,
                .pagination-link.next {
                    min-width: 56px !important;
                    height: 52px !important;
                }
                .pagination-ellipsis {
                    min-width: 36px !important;
                    height: 52px !important;
                    font-size: 22px !important;
                }

            }
        }

        @media (max-width: 480px) {
            .welcome-banner { padding: 1rem; }
            .welcome-banner h1 { font-size: 1.2rem; }
            .section-title { font-size: 1.2rem; }
            .btn-primary { padding: 8px 16px; font-size: 0.8rem; }
        }

        /* 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; }
        }
