.bot-know-wrapper {
    background-color: #faf5f6;
    font-family: inherit;
    color: #333;
}
.bot-know-title {
    text-align: center;
    color: #333;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}
.bot-know-subtitle {
    text-align: center;
    color: #444;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}
.bot-know-section-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 15px 0;
    position: relative;
}
.bot-know-section-title::before, .bot-know-section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background-color: #eccdcd;
}
.bot-know-section-title::before { left: 0; }
.bot-know-section-title::after { right: 0; }

.bk-zodiac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background-color: #fff;
    border: 1px solid #edd3d3;
    padding: 10px;
    border-radius: 4px;
}
.bk-zodiac-card {
    border: 1px solid #efebeb;
    border-radius: 4px;
    padding: 5px;
    text-align: center;
}
.bk-z-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.bk-z-name { font-size: 15px; font-weight: bold; }
.bk-z-img { height: 26px; }
.bk-z-chong { color: #666; font-size: 11px; }

.bk-z-numbers {
    display: flex;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
}
.bk-ball {
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: inline-block;
}
.bk-bg-red { background: radial-gradient(circle at 30% 30%, #ff4d4d, #d30000); box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.bk-bg-blue { background: radial-gradient(circle at 30% 30%, #4da6ff, #0055cc); box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.bk-bg-green { background: radial-gradient(circle at 30% 30%, #4dff88, #009933); box-shadow: 0 1px 2px rgba(0,0,0,0.2); }

.bk-table-container {
    background-color: #fff;
    border: 1px solid #edd3d3;
    border-radius: 4px;
    padding: 10px;
}
.bk-table {
    width: 100%;
    border-collapse: collapse;
}
.bk-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #f2eaea;
    font-size: 14px;
    vertical-align: middle;
}
.bk-table tr:last-child td {
    border-bottom: none;
}
.bk-td-label {
    text-align: center;
    font-weight: bold;
    width: 60px;
    white-space: nowrap;
    border-right: 1px solid #f2eaea;
}
.bk-td-label-small {
    width: 50px;
    padding-right: 10px;
}
.bk-td-content-balls {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.bk-td-content-text {
    color: #333;
    line-height: 1.6;
}

/* Wuxing Colors */
.bk-c-gold { color: #d4a017; }
.bk-c-wood { color: #2e8b57; }
.bk-c-water { color: #0066cc; }
.bk-c-fire { color: #ed1b24; }
.bk-c-earth { color: #8b4513; }

/* Attribute labels */
.bk-attr-label { color: #0066cc; font-weight: bold; }
.bk-attr-blue { color: #0066cc; }

@media (max-width: 360px) {
    .bk-zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
