        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #2d2d2d;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            padding: 40px 20px 20px;
        }
        
        .site-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c5f6f;
            margin-bottom: 8px;
        }
        
        .tagline {
            font-size: 0.95rem;
            color: #666;
            font-style: italic;
        }
        
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
            margin: 40px 0;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid rgba(255,255,255,0.8);
        }
        
        .truth-pair {
            margin: 28px 0;
            font-size: 1.5rem;
            line-height: 1.4;
        }
        
        .lie {
            color: #a8a8a8;
            text-decoration: line-through;
            text-decoration-thickness: 2px;
            text-decoration-color: #d1a5a5;
            font-weight: 400;
        }
        
        .truth {
            color: #2c5f6f;
            font-weight: 600;
            margin-left: 12px;
        }
        
        .intro-text {
            margin-top: 50px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
			text-align:left
        }
        
        .intro-text p {
            margin-bottom: 1.2em;
        }
        
        .intro-text strong {
            color: #1a1a1a;
            font-weight: 600;
        }
        
        .cta-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-block;
            padding: 16px 32px;
            font-size: 1.05rem;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .cta-primary {
            background: linear-gradient(135deg, #4a7c8c 0%, #5a8c9c 100%);
            color: white;
            box-shadow: 0 2px 8px rgba(74, 124, 140, 0.3);
        }
        
        .cta-primary:hover {
            background: linear-gradient(135deg, #3a6c7c 0%, #4a7c8c 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(74, 124, 140, 0.4);
        }
        
        .cta-secondary {
            background: white;
            color: #4a7c8c;
            border: 2px solid #4a7c8c;
        }
        
        .cta-secondary:hover {
            background: #f0f7f9;
            transform: translateY(-2px);
            border-color: #3a6c7c;
        }
        
        .what-youll-find {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
            padding: 50px 40px;
            margin: 40px 0;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid rgba(255,255,255,0.8);
        }
        
        .what-youll-find h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #2c5f6f;
            text-align: center;
        }
        
        .what-youll-find ul {
            list-style: none;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .what-youll-find li {
            margin: 16px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.05rem;
            color: #444;
        }
        
        .what-youll-find li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #5a8c9c;
            font-weight: bold;
        }
        
        .closing {
            text-align: left;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-top: 40px;
        }
        
        .closing p {
            margin: 12px 0;
        }
        
        .closing strong {
            color: #1a1a1a;
            font-weight: 600;
        }
        
        footer {
            text-align: left;
            padding: 40px 20px;
            color: #666;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .truth-pair {
                font-size: 1.2rem;
                margin: 24px 0;
            }
            
            .intro-text {
                font-size: 1rem;
            }
            
            .cta-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .cta-button {
                width: 100%;
                text-align: center;
            }
            
            .what-youll-find {
                padding: 40px 25px;
            }
			.lie {
				display:block
			}
        }
        
        /* Dark mode support for 3am scrollers */
        @media (prefers-color-scheme: dark) {
            body {
                background: #1a1a1a;
                color: #e0e0e0;
            }
            
            .hero, .what-youll-find {
                background: #2d2d2d;
                box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            }
            
            .truth, .site-title, .what-youll-find h2, .closing strong, .intro-text strong {
                color: #f5f5f5;
            }
            
            .intro-text, .what-youll-find li, .closing {
                color: #c0c0c0;
            }
            
            .tagline {
                color: #999;
            }
            
            .cta-primary {
                background: #f5f5f5;
                color: #1a1a1a;
            }
            
            .cta-primary:hover {
                background: #e0e0e0;
            }
            
            .cta-secondary {
                background: #2d2d2d;
                color: #f5f5f5;
                border-color: #f5f5f5;
            }
            
            .cta-secondary:hover {
                background: #3d3d3d;
            }
        }
		
a{color:#999af4}
a:visited{color:#8687b0}
a:hover,a:visited:hover{color:#4e51ec}
section p{margin-bottom:1.5rem}
blockquote{border-left: 4px solid #e0e0e0;
	padding: 1rem 0 1rem 2rem;margin:1rem 0}
hr{margin: 2rem 0;
	border: none;
	background: #ededed;
	height: 1px
}
h3{margin:2rem 0 1rem}
h4{margin-bottom:1rem}
li{margin:0 0 1.5rem}
li ul{margin-left:1.5rem}
