        :root { 
            --accent: #f59e0b; 
            --bg: #0f172a; 
        }
        body { 
            background: linear-gradient(to bottom, #f1f5f9 0%, #e2e8f0 100%);
            font-family: 'DM Sans', sans-serif;
            touch-action: pan-x pan-y;
            -ms-touch-action: pan-x pan-y;
        }
        .glass-header { 
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-bottom-left-radius: 2.5rem;
            border-bottom-right-radius: 2.5rem;
        }
        .service-tile { 
            @apply flex flex-col items-center justify-start text-center p-2 transition-transform active:scale-90 cursor-pointer w-full; 
        }
        .icon-box { 
            @apply w-14 h-14 rounded-2xl flex items-center justify-center text-xl mb-2 shadow-sm mx-auto shrink-0; 
        }
        .page-view {
            display: none;
            animation: fadeIn 0.3s ease-out;
        }
        .page-view.active {
            display: block;
        }
        .content-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid rgba(241, 245, 249, 0.8);
        }
        .verse-text {
            font-family: 'Crimson Text', serif;
            font-size: 1.1rem;
            line-height: 1.7;
            font-style: italic;
            color: #1e293b;
        }
        .section-title {
            font-weight: 900;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #64748b;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .entry-item {
            padding: 1rem;
            background: #f8fafc;
            border-radius: 1rem;
            margin-bottom: 0.75rem;
            border: 1px solid #e2e8f0;
        }
        .day-divider {
            font-family: 'Archivo Black', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.75rem;
        }
        .fab-button {
            position: fixed;
            bottom: 100px;
            right: 24px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
            cursor: pointer;
            transition: transform 0.2s;
            z-index: 40;
        }
        .fab-button:active {
            transform: scale(0.95);
        }
        .input-field {
            width: 100%;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 0.75rem;
            outline: none;
            border: 1px solid #e2e8f0;
            font-weight: 500;
        }
        .textarea-field {
            width: 100%;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 0.75rem;
            outline: none;
            border: 1px solid #e2e8f0;
            min-height: 100px;
            font-family: 'DM Sans', sans-serif;
        }
        .btn-primary {
            width: 100%;
            background: #0f172a;
            color: white;
            padding: 1.25rem;
            border-radius: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.875rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .btn-primary:active {
            transform: scale(0.98);
        }
        .tip-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 1rem;
            border-radius: 1rem;
            border: 1px solid #fbbf24;
        }
        .mood-emoji {
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.2s;
            padding: 0.5rem;
        }
        .mood-emoji:hover {
            transform: scale(1.2);
        }
        .mood-emoji.selected {
            transform: scale(1.3);
            filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
        }
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #f3f4f6;
            border-radius: 50%;
            border-top-color: #f59e0b;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .rating-star {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: all 0.2s;
        }
        .rating-star:hover,
        .rating-star.active {
            color: #fbbf24;
            transform: scale(1.1);
        }
        .habit-checkbox {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            border: 2px solid #e2e8f0;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .habit-checkbox.checked {
            background: #10b981;
            border-color: #10b981;
        }
        .goal-progress-bar {
            height: 8px;
            background: #e2e8f0;
            border-radius: 999px;
            overflow: hidden;
        }
        .goal-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #10b981 0%, #059669 100%);
            transition: width 0.5s ease;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: white;
            border-radius: 2rem;
            padding: 2rem;
            max-width: 400px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
        }
        .premium-badge {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            font-size: 0.65rem;
            font-weight: 900;
            letter-spacing: 0.05em;
        }
        .premium-feature {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border: 2px solid #fbbf24;
            border-radius: 1rem;
            padding: 1rem;
            margin-bottom: 0.75rem;
        }
        .locked-overlay {
            position: relative;
        }
        .locked-overlay::after {
            content: '🔒 Premium';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.9);
            color: #fbbf24;
            padding: 1rem 2rem;
            border-radius: 1rem;
            font-weight: 900;
            font-size: 0.875rem;
            pointer-events: none;
        }

        .gym-tab {
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .gym-tab.active {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }
        .gym-tab:not(.active) {
            background: #f1f5f9;
            color: #64748b;
        }
        .macro-ring {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 4px solid;
            font-weight: 900;
        }
        .workout-plan-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1.25rem;
            border-radius: 1rem;
            margin-bottom: 0.75rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .workout-plan-card:active {
            transform: scale(0.98);
        }
        .workout-plan-card.beginner {
            background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
        }
        .workout-plan-card.intermediate {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .workout-plan-card.advanced {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .mindset-tab {
            padding: 0.75rem 0.5rem;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }
        .mindset-tab.active {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }
        .mindset-tab:not(.active) {
            background: #f1f5f9;
            color: #64748b;
        }
        .mindset-tab-content {
            display: none;
        }
        .mindset-tab-content.active {
            display: block;
        }
        .mindset-filter-chip {
            padding: 0.5rem 0.9rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.75rem;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
        }
        .mindset-filter-chip.active {
            background: #0f172a;
            color: white;
        }
        .mindset-filter-chip:not(.active) {
            background: #f1f5f9;
            color: #64748b;
        }
        .affirmation-card {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 1.25rem;
            padding: 2rem 1.5rem;
            text-align: center;
            color: white;
        }
        .challenge-option-card {
            border-radius: 1rem;
            padding: 1rem;
            border: 1px solid;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .challenge-option-card:active {
            transform: scale(0.98);
        }
        .wellness-tab {
            padding: 0.75rem 0.5rem;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }
        .wellness-tab.active {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }
        .wellness-tab:not(.active) {
            background: #f1f5f9;
            color: #64748b;
        }
        .wellness-tab-content {
            display: none;
        }
        .wellness-tab-content.active {
            display: block;
        }
        .breathe-technique-btn {
            padding: 0.75rem 1rem;
            border-radius: 1rem;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            border: 1px solid transparent;
            transition: all 0.2s;
            text-align: center;
        }
        .breathe-technique-btn.active {
            border-width: 2px;
        }
        .breathe-circle {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: white;
            font-weight: 900;
            font-size: 1rem;
            box-shadow: 0 10px 30px rgba(8, 145, 178, 0.35);
            transition: transform 4s ease-in-out;
        }
        .breathe-circle.inhale { transform: scale(1.25); }
        .breathe-circle.exhale { transform: scale(0.85); }
        .score-ring-wrap {
            position: relative;
            width: 180px;
            height: 180px;
            margin: 0 auto;
        }
        .score-ring-wrap svg { transform: rotate(-90deg); }
        .score-ring-center {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .score-chip {
            padding: 0.5rem 0.75rem;
            border-radius: 0.75rem;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }
        .learning-tab {
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .learning-tab.active {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }
        .learning-tab:not(.active) {
            background: #f1f5f9;
            color: #64748b;
        }
        .shop-tab {
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .shop-tab.active {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }
        .shop-tab:not(.active) {
            background: #fef3c7;
            color: #92400e;
        }
        .shop-tab-content {
            display: none;
        }
        .shop-tab-content.active {
            display: block;
        }
        .book-card {
            background: white;
            border-radius: 1rem;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            transition: all 0.2s;
            cursor: pointer;
        }
        .book-card:hover {
            border-color: #8b5cf6;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(139, 92, 246, 0.2);
        }
        .book-cover {
            width: 100%;
            aspect-ratio: 2/3;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 0.75rem;
            text-align: center;
            padding: 0.5rem;
            overflow: hidden;
        }
        .book-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.5rem;
        }
        .reading-progress-bar {
            height: 0.5rem;
            background: #e2e8f0;
            border-radius: 1rem;
            overflow: hidden;
        }
        .reading-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
            transition: width 0.3s;
        }
        .bible-tab {
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .bible-tab.active {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }
        .bible-tab:not(.active) {
            background: #f1f5f9;
            color: #64748b;
        }
        .bible-tab-content {
            display: none;
        }
        .bible-tab-content.active {
            display: block;
        }
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }
        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .bible-book-button {
            padding: 0.75rem;
            background: #f8fafc;
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.2s;
            cursor: pointer;
        }
        .bible-book-button:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
        }
        .bible-book-button.active {
            background: #0f172a;
            color: white;
            border-color: #0f172a;
        }
        .bible-chapter-button {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .bible-chapter-button:hover {
            background: #f1f5f9;
        }
        .bible-chapter-button.active {
            background: #f59e0b;
            color: white;
            border-color: #f59e0b;
        }
        .bible-verse {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .bible-verse:last-child {
            border-bottom: none;
        }
        .verse-number {
            display: inline-block;
            min-width: 30px;
            font-weight: bold;
            color: #64748b;
            font-size: 0.875rem;
        }
        .verse-text-bible {
            display: inline;
            line-height: 1.8;
            font-family: 'Crimson Text', serif;
            font-size: 1.05rem;
        }
        .book-status-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.65rem;
            font-weight: 800;
            text-transform: uppercase;
        }
        .status-reading {
            background: #dbeafe;
            color: #1e40af;
        }
        .status-completed {
            background: #d1fae5;
            color: #065f46;
        }
        .status-wishlist {
            background: #fef3c7;
            color: #92400e;
        }
        .quote-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 4px solid #f59e0b;
            padding: 1rem;
            border-radius: 0.75rem;
            margin-bottom: 0.75rem;
        }
        .book-reader-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 1000;
            overflow-y: auto;
            display: none;
        }
        .book-reader-container.active {
            display: block;
        }
        .reader-controls {
            position: sticky;
            top: 0;
            background: white;
            border-bottom: 2px solid #e2e8f0;
            padding: 1rem;
            z-index: 100;
        }
        .book-search-result {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
            cursor: pointer;
            transition: background 0.2s;
        }
        .book-search-result:hover {
            background: #f8fafc;
        }
        
        /* Professional Markdown-Style Ebook Content Styling */
        .ebook-content {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.75;
            color: #1e293b;
            font-size: 16px;
            max-width: 100%;
        }
        
        /* Headings with Markdown-style spacing and hierarchy */
        .ebook-content h1 {
            font-size: 2.25rem;
            font-weight: 900;
            margin-top: 2rem;
            margin-bottom: 1.25rem;
            color: #0f172a;
            line-height: 1.2;
            letter-spacing: -0.025em;
            border-bottom: 3px solid #f59e0b;
            padding-bottom: 0.5rem;
        }
        
        .ebook-content h2 {
            font-size: 1.875rem;
            font-weight: 800;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: #1e293b;
            line-height: 1.3;
            border-bottom: 2px solid #e5e7eb;
            padding-bottom: 0.375rem;
        }
        
        .ebook-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 0.875rem;
            color: #334155;
            line-height: 1.4;
        }
        
        .ebook-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-top: 1.75rem;
            margin-bottom: 0.75rem;
            color: #475569;
            line-height: 1.45;
        }
        
        .ebook-content h5 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.625rem;
            color: #64748b;
            line-height: 1.5;
        }
        
        .ebook-content h6 {
            font-size: 1rem;
            font-weight: 600;
            margin-top: 1.25rem;
            margin-bottom: 0.5rem;
            color: #64748b;
            line-height: 1.5;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Paragraphs with proper spacing */
        .ebook-content p {
            margin-bottom: 1.25rem;
            line-height: 1.75;
            color: #334155;
        }
        
        /* First paragraph after heading should have more space */
        .ebook-content h1 + p,
        .ebook-content h2 + p,
        .ebook-content h3 + p {
            margin-top: 0.75rem;
        }
        
        /* Strong and emphasis */
        .ebook-content strong,
        .ebook-content b {
            font-weight: 700;
            color: #1e293b;
        }
        
        .ebook-content em,
        .ebook-content i {
            font-style: italic;
            color: #475569;
        }
        
        /* Lists with proper indentation and spacing */
        .ebook-content ul,
        .ebook-content ol {
            margin-bottom: 1.5rem;
            margin-left: 0;
            padding-left: 2rem;
        }
        
        .ebook-content ul {
            list-style-type: disc;
        }
        
        .ebook-content ol {
            list-style-type: decimal;
        }
        
        .ebook-content ul li,
        .ebook-content ol li {
            margin-bottom: 0.625rem;
            line-height: 1.7;
            color: #334155;
            padding-left: 0.5rem;
        }
        
        .ebook-content ul li::marker {
            color: #f59e0b;
            font-size: 0.875em;
        }
        
        .ebook-content ol li::marker {
            color: #f59e0b;
            font-weight: 700;
        }
        
        /* Nested lists */
        .ebook-content ul ul,
        .ebook-content ol ol,
        .ebook-content ul ol,
        .ebook-content ol ul {
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        /* Blockquotes - Markdown style */
        .ebook-content blockquote {
            border-left: 4px solid #f59e0b;
            padding: 1rem 1.5rem;
            margin: 1.75rem 0;
            background: linear-gradient(to right, #fef3c7, #fffbeb);
            border-radius: 0 0.5rem 0.5rem 0;
            font-style: italic;
            color: #475569;
        }
        
        .ebook-content blockquote p {
            margin-bottom: 0.5rem;
        }
        
        .ebook-content blockquote p:last-child {
            margin-bottom: 0;
        }
        
        /* Code - inline and blocks */
        .ebook-content code {
            background: #f1f5f9;
            padding: 0.2rem 0.4rem;
            border-radius: 0.25rem;
            font-family: 'Courier New', 'Consolas', monospace;
            font-size: 0.875em;
            color: #0f172a;
            border: 1px solid #e2e8f0;
        }
        
        .ebook-content pre {
            background: #1e293b;
            color: #f1f5f9;
            padding: 1.25rem;
            border-radius: 0.5rem;
            overflow-x: auto;
            margin: 1.5rem 0;
            border: 1px solid #334155;
        }
        
        .ebook-content pre code {
            background: transparent;
            padding: 0;
            border: none;
            color: inherit;
        }
        
        /* Links */
        .ebook-content a {
            color: #2563eb;
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .ebook-content a:hover {
            color: #1d4ed8;
        }
        
        /* Horizontal rules */
        .ebook-content hr {
            border: none;
            border-top: 2px solid #e2e8f0;
            margin: 2.5rem 0;
        }
        
        /* Tables - if any */
        .ebook-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.9375rem;
        }
        
        .ebook-content table th,
        .ebook-content table td {
            padding: 0.75rem;
            border: 1px solid #e2e8f0;
            text-align: left;
        }
        
        .ebook-content table th {
            background: #f8fafc;
            font-weight: 700;
            color: #0f172a;
        }
        
        .ebook-content table tr:nth-child(even) {
            background: #f9fafb;
        }
        
        /* Images */
        .ebook-content img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
            margin: 1.5rem 0;
        }
        
        /* Special formatting for first letter of first paragraph */
        .ebook-content > p:first-of-type:first-letter {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1;
            float: left;
            margin-right: 0.5rem;
            margin-top: 0.1rem;
            color: #f59e0b;
        }
        
        /* Responsive adjustments */
        @media (max-width: 640px) {
            .ebook-content {
                font-size: 15px;
            }
            
            .ebook-content h1 {
                font-size: 1.875rem;
                margin-top: 1.5rem;
            }
            
            .ebook-content h2 {
                font-size: 1.5rem;
                margin-top: 2rem;
            }
            
            .ebook-content h3 {
                font-size: 1.25rem;
                margin-top: 1.75rem;
            }
            
            .ebook-content h4 {
                font-size: 1.125rem;
            }
            
            .ebook-content h5,
            .ebook-content h6 {
                font-size: 1rem;
            }
            
            .ebook-content > p:first-of-type:first-letter {
                font-size: 2.5rem;
            }
        }
        
        /* Print styles for when users want to print */
        @media print {
            .ebook-content {
                font-size: 12pt;
                line-height: 1.6;
                color: #000;
            }
            
            .ebook-content h1,
            .ebook-content h2,
            .ebook-content h3,
            .ebook-content h4,
            .ebook-content h5,
            .ebook-content h6 {
                page-break-after: avoid;
                color: #000;
            }
            
            .ebook-content p,
            .ebook-content ul,
            .ebook-content ol {
                orphans: 3;
                widows: 3;
            }
        }
