.caishenwei-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.caishenwei-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.caishenwei-title {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.caishenwei-date-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.caishenwei-ganzhi {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}

.caishenwei-ganzhi-item {
    text-align: center;
}

.caishenwei-ganzhi-item .caishenwei-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.caishenwei-ganzhi-item .caishenwei-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.caishenwei-positions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.caishenwei-position-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caishenwei-position-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.caishenwei-caishen {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.caishenwei-xishen {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.caishenwei-fushen {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.caishenwei-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 15px;
}

.caishenwei-direction-icon {
    font-size: 28px;
    font-weight: bold;
}

.caishenwei-info {
    flex: 1;
}

.caishenwei-info .caishenwei-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.caishenwei-info .caishenwei-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.caishenwei-compass {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.caishenwei-compass-inner {
    width: 150px;
    height: 150px;
    position: relative;
    border: 3px solid #ddd;
    border-radius: 50%;
    background: #f9f9f9;
}

.caishenwei-compass-needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, #f5576c 50%, #667eea 50%);
    transform-origin: center bottom;
    margin-left: -2px;
    margin-top: -60px;
    border-radius: 2px;
    transition: transform 0.5s ease;
}

.caishenwei-compass-needle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #f5576c;
    transform: translateX(-50%);
}

.caishenwei-compass-directions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.caishenwei-compass-directions span {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

.compass-n {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.compass-e {
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.compass-s {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.compass-w {
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.caishenwei-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #999;
}

.caishenwei-footer .caishenwei-solar-date,
.caishenwei-footer .caishenwei-lunar-date {
    display: inline-block;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .caishenwei-container {
        margin: 10px;
        padding: 15px;
    }

    .caishenwei-title {
        font-size: 20px;
    }

    .caishenwei-position-item {
        padding: 12px;
    }

    .caishenwei-icon {
        width: 40px;
        height: 40px;
    }

    .caishenwei-direction-icon {
        font-size: 22px;
    }

    .caishenwei-info .caishenwei-value {
        font-size: 18px;
    }

    .caishenwei-compass-inner {
        width: 120px;
        height: 120px;
    }

    .caishenwei-compass-needle {
        height: 50px;
        margin-top: -50px;
    }
}
