.tiangang-container {
    padding: 24px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease;
}

.module-header {
    text-align: center;
    margin-bottom: 32px;
}

.module-title {
    font-size: 24px;
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 2px;
}

.module-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    background: rgba(212, 168, 83, 0.08);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.week-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    overflow: hidden;
}

.week-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-color: rgba(212, 168, 83, 0.3);
}

.week-card.is-current {
    border: 1px solid var(--text-gold);
    background: linear-gradient(to bottom, rgba(212, 168, 83, 0.1), var(--bg-surface));
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.2), 0 4px 20px rgba(0,0,0,0.15);
}

.current-badge {
    position: absolute;
    top: 12px;
    right: -28px;
    background: linear-gradient(135deg, #e6b980, #c49758);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 32px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.week-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.is-current .week-title {
    color: var(--text-gold);
    border-bottom-color: rgba(212, 168, 83, 0.3);
}

.star-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.star-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0,0,0,0.2);
    transition: background 0.2s;
}

.week-card:hover .star-item {
    background: rgba(0,0,0,0.3);
}

.star-name {
    color: var(--text-secondary);
}

.star-type {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
}

.type-shining {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.type-normal {
    background: rgba(164, 176, 190, 0.1);
    color: #a4b0be;
    border: 1px solid rgba(164, 176, 190, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
