        * {
            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: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #666;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}

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

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

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

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

.breadcrumb-list li:not(:last-child)::after {
    content: "?";
    font-size: 1rem;
    color: #aaa;
    padding: 0 8px;
    flex-shrink: 0;
}

.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;
            margin-bottom: 0;
        }

        /* =============================================
           SUBMISSION PAGE STYLES
           ============================================= */
        .submission-container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px 15px;
            background: white;
        }

        .form-card {
            background: white;
            border-radius: 32px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2f6;
            margin-top: -20px;
            position: relative;
            z-index: 1;
        }

        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #0d47a1;
        }

        textarea, select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        textarea:focus, select:focus {
            outline: none;
            border-color: #0d47a1;
        }

        textarea {
            resize: vertical;
            min-height: 180px;
        }

        /* Honeypot field - hidden from real users, visible to bots */
        .honeypot {
            position: absolute;
            left: -9999px;
            top: -9999px;
            opacity: 0;
            pointer-events: none;
            height: 0;
            width: 0;
            overflow: hidden;
        }

        .char-counter {
            text-align: right;
            font-size: 0.8rem;
            color: #888;
            margin-top: 6px;
        }

        .char-limit-bar {
            height: 4px;
            background: #e0e0e0;
            border-radius: 4px;
            margin-top: 8px;
            overflow: hidden;
        }

        .char-limit-fill {
            height: 100%;
            width: 0%;
            background: #0d47a1;
            transition: width 0.2s;
        }

        .submit-btn {
            background: linear-gradient(135deg, #0d47a1, #1565c0);
            color: white;
            border: none;
            padding: 14px 28px;
            width: 100%;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

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

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid white;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .success-message {
            text-align: center;
            padding: 20px;
        }

        .success-message h1 {
            color: #2e7d32;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .success-message .success-icon {
            font-size: 64px;
            color: #4CAF50;
            margin-bottom: 20px;
        }

        .info-card {
            background: #f8f9fa;
            border-radius: 20px;
            padding: 24px;
            margin: 20px 0;
            text-align: left;
            border-left: 4px solid #0d47a1;
        }

        .info-card h3 {
            color: #0d47a1;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card p {
            color: #555;
            margin-bottom: 16px;
        }

        .info-card .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.2s;
        }

        .info-card .btn-secondary:hover {
            transform: translateY(-2px);
        }

        .info-card .btn-pro {
            background: linear-gradient(135deg, #ffd700, #ffb347);
            color: #1a237e;
        }

        .archive-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 20px;
        }

        .archive-links a {
            color: #0d47a1;
            text-decoration: none;
            font-weight: 500;
        }

        .archive-links a:hover {
            text-decoration: underline;
        }

        hr {
            margin: 30px 0;
            border: none;
            border-top: 1px solid #e0e0e0;
        }

        .error-message {
            background: #ffebee;
            color: #c62828;
            padding: 12px 16px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid #c62828;
        }

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

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

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

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

        .copyright {
            color: #666; 
            font-size: 0.85rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .form-card { 
                padding: 20px; 
                margin-top: -10px;
                border-radius: 20px 20px 0 0;
                border-left: none;
                border-right: none;
            }

            .submission-container { padding: 0 0px 40px; }
            .success-message h1 { font-size: 1.5rem; }
            .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; }
              .main-container {
        padding: 0 15px;
    }
    
    .breadcrumb-wrapper {
        padding: 15px 0 10px 0;
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
    
    .breadcrumb-list li {
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .breadcrumb-list li:not(:last-child)::after {
        padding: 0 5px;
        font-size: 0.85rem;
    }

            .welcome-banner {
                padding: 1.2rem;
                border-radius: 20px;
                margin: 0 0 20px 0;
                width: 100%;
            }
            .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; }
            .site-footer {
                padding: 15px 16px;
            }

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

        @media (max-width: 480px) {
            .welcome-banner { padding: 1rem; }
            .welcome-banner h1 { font-size: 1.2rem; }
            .breadcrumb-list { font-size: 12px; }
        }
