/* ===== botry-v1- 全域命名空間 ===== */
.botry-v1- * {
    font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
}
.botry-v1- {
    color: #2d1b3c; /* 深紫色主字 */
    background-color: #faf0ff;
}
.botry-v1- .bg-primary-custom { background-color: #C38EC8; }
.botry-v1- .bg-soft-yellow { background-color: #FFEFC5; }
.botry-v1- .bg-soft-peach { background-color: #FFEAE0; }
.botry-v1- .text-deep-purple { color: #2d1b3c; }
.botry-v1- .text-purple { color: #C38EC8; }
.botry-v1- .border-purple { border-color: #C38EC8 !important; }

/* 導航列 */
.botry-v1-header {
    background: rgba(255, 250, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #C38EC8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(195, 142, 200, 0.15);
}
.botry-v1-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}
.botry-v1-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6b2b6b, #C38EC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}
.botry-v1-logo span {
    font-size: 1rem;
    color: #5f3e68;
    display: block;
    -webkit-text-fill-color: #5f3e68;
}
.botry-v1-nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.botry-v1-nav-item {
    position: relative;
}
.botry-v1-nav-link {
    text-decoration: none;
    color: #3a2046;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}
.botry-v1-nav-link:hover,
.botry-v1-nav-link.active {
    border-bottom-color: #C38EC8;
    color: #631a6b;
}
.botry-v1-nav-cta {
    background: #C38EC8;
    color: #2d0f2d !important;
    border-radius: 40px;
    padding: 10px 28px !important;
    font-weight: 700;
    border-bottom: none !important;
    box-shadow: 0 10px 16px -6px #b37eb8;
}
.botry-v1-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #C38EC8;
}

/* 文章頁面專用樣式 */
.botry-v1-article-header {
    background: linear-gradient(135deg, #C38EC8, #b27bb9);
    padding: 60px 0;
    text-align: center;
    color: #FFEFC5;
    border-radius: 0 0 60px 60px;
    margin-bottom: 40px;
}
.botry-v1-article-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 0 4px 10px #2d1b3c;
    max-width: 900px;
    margin: 0 auto;
}
.botry-v1-article-meta {
    font-size: 1.1rem;
    color: #FFEAE0;
    margin-top: 15px;
}
.botry-v1-article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}
.botry-v1-article-content {
    background: #FFEFC5;
    border-radius: 50px;
    padding: 50px;
    border: 4px solid #C38EC8;
    box-shadow: 0 20px 30px -15px #b597bb;
    margin-bottom: 40px;
}
.botry-v1-article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #4a2355;
    margin: 30px 0 20px;
}
.botry-v1-article-content h2:first-child {
    margin-top: 0;
}
.botry-v1-article-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4a2355;
    margin: 25px 0 15px;
}
.botry-v1-article-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2d1b3c;
}
.botry-v1-article-content ul, 
.botry-v1-article-content ol {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
}
.botry-v1-article-content li {
    margin-bottom: 10px;
}
.botry-v1-article-content .highlight-box {
    background: #FFEAE0;
    border-radius: 30px;
    padding: 30px;
    margin: 30px 0;
    border: 3px solid #C38EC8;
}
.botry-v1-article-content .example-box {
    background: #f0e0ff;
    border-radius: 30px;
    padding: 25px;
    margin: 30px 0;
    border-left: 8px solid #C38EC8;
}
.botry-v1-article-content .checklist {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    border: 2px dashed #C38EC8;
}
.botry-v1-article-tag {
    background: #C38EC8;
    color: #2d1b3c;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 2px solid #FFEAE0;
    font-size: 1rem;
}
.botry-v1-author-box {
    background: #FFEAE0;
    border-radius: 40px;
    padding: 30px;
    border: 3px solid #C38EC8;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.botry-v1-author-avatar {
    width: 80px;
    height: 80px;
    background: #C38EC8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #2d1b3c;
    flex-shrink: 0;
}
.botry-v1-author-info p {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* 頁尾 */
.botry-v1-footer {
    background: #2d1b3c;
    color: #FFEFC5;
    padding: 50px 0 20px;
    border-radius: 60px 60px 0 0;
    margin-top: 70px;
}
.botry-v1-footer a {
    color: #FFEFC5;
    text-decoration: none;
    transition: 0.3s;
}
.botry-v1-footer a:hover {
    color: white;
    transform: translateX(5px);
}
.botry-v1-footer hr {
    border-color: #C38EC8;
}
@media (max-width: 768px) {
    .botry-v1-article-header h1 { font-size: 2rem; }
    .botry-v1-article-content { padding: 30px; }
    .botry-v1-author-box { flex-direction: column; text-align: center; }
}
@media (max-width: 991px) {
    .botry-v1-nav-menu { display: none; }
    .botry-v1-mobile-toggle { display: block; }
}

/* 新加的 */

/* ===== 適度留白，放大內容 ===== */
.rwd-content-bottom {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;    /* 加入適當留白 */
    padding-right: 20px;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.botry-v2-content-text {
    width: 100%;
    max-width: 100%;
    padding-left: 20px !important;    /* 保留適當留白 */
    padding-right: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

.botry-v2-content-body {
    width: 100%;
    max-width: 100%;
    padding-left: 20px !important;    /* 保留適當留白 */
    padding-right: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

/* 修正 container 寬度 - 保留視覺舒適的留白 */
.botry-v1- .container {
    max-width: 1200px !important;  /* 固定寬度，兩邊自然留白 */
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 桌機時稍微放大 */
@media (min-width: 1200px) {
    .botry-v1- .container {
        max-width: 1300px !important;  /* 比預設大一點，但仍保留留白 */
        width: 90% !important;         /* 或用百分比控制 */
    }
}

/* 超大螢幕時再放大一點 */
@media (min-width: 1600px) {
    .botry-v1- .container {
        max-width: 1400px !important;  /* 最大寬度，兩邊仍有留白 */
        width: 85% !important;
    }
}

/* 讓卡片內容內距適中 */
.botry-v1-card, 
.botry-v1-card-peach {
    padding: 35px;  /* 介於 30-40 之間，舒適的內距 */
}

/* 調整標題區域的留白 */
.botry-v1-page-header {
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0 0 60px 60px;
}

/* 確保所有容器都正確計算寬度 */
* {
    box-sizing: border-box;
}
