/* freedme.me - Lifestyle Blog Style */
:root {
    --primary: #7c3aed;    /* 活力紫 */
    --accent: #f59e0b;     /* 亮橙色 */
    --text: #1f2937;
    --bg: #fffbfb; 
}

body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    line-height: 1.8; 
    color: var(--text); 
    background-color: var(--bg);
    margin: 0;
}

header { 
    padding: 4rem 5%; 
    text-align: center; 
    background: white; 
    border-bottom: 4px solid var(--primary); 
}

.logo { 
    font-size: 2rem; 
    font-weight: 900; 
    color: var(--primary); 
    text-decoration: none; 
    text-transform: uppercase;
    letter-spacing: 4px;
}

.container { 
    max-width: 750px; 
    margin: 3rem auto; 
    padding: 0 5%; 
}

article h1 { font-size: 2.5rem; line-height: 1.2; color: #000; }

/* 链接到主站的按钮样式 */
.main-site-btn { 
    display: inline-block;
    background: var(--primary); 
    color: white; 
    padding: 15px 30px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold;
    margin-top: 2rem;
    box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.39);
}

footer { 
    text-align: center; 
    padding: 4rem 0; 
    font-size: 0.9rem; 
    color: #6b7280; 
    border-top: 1px solid #eee;
}
