/* css/composer.css */
.composer-page {
    background-color: #fafafa;
}

.intro-section {
    background-color: #fff;
}

/* 典雅深刻的酒紅主色調 */
.intro-text .lead {
    font-size: 1.35rem;
    color: #A32638; 
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-align: center;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 1.5rem;
}

.quote-block {
    background-color: #fcf7f8;
    border-left: 4px solid #A32638;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
}
.quote-block p {
    margin-bottom: 0;
    font-size: 1.15rem;
}

.rules-section {
    position: relative;
}

.rules-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    padding: 4rem 5rem;
}

@media (max-width: 768px) {
    .rules-container {
        padding: 2rem 1.5rem;
    }
}

.rule-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px dashed #eee;
}
.rule-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rule-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}
.rule-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background-color: #A32638;
    margin-right: 12px;
    border-radius: 3px;
}

.rule-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 0;
}
.rule-list li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.8;
}
.rule-list li::before {
    content: '•';
    color: #A32638;
    position: absolute;
    left: -1.2rem;
    font-weight: bold;
}

.rule-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}
.rule-text strong {
    color: #A32638;
}

.copyright-notice {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.8rem;
    margin-top: 3rem;
}
.copyright-notice h5 {
    color: #444;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.copyright-notice p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
}

/* Call to action */
.cta-box {
    text-align: center;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 2px solid #eee;
}

.btn-burgundy {
    background-color: #A32638;
    color: #fff;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 1.2rem 4rem;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 1.3rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(163,38,56,0.3);
}
.btn-burgundy:hover {
    background-color: #8c1c2e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(163,38,56,0.4);
}
