.hero-section {
    text-align: center;
    padding: 20px 0 30px;
}

.hero-section h1 {
    font-size: 36px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.hero-section p {
    color: #aaa;
    font-size: 15px;
}

.main-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.settings-list {
    padding: 0;
}

.setting-row {
    display: flex;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
    transition: 0.15s;
}

.setting-row:last-child {
    border-bottom: none;
}

.setting-row:hover {
    background: rgba(255, 215, 0, 0.03);
}

.setting-label {
    width: 150px;
    font-size: 15px;
    color: #ffd700;
    font-weight: bold;
    flex-shrink: 0;
    padding-top: 2px;
}

.setting-value {
    flex: 1;
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.6;
    padding-left: 24px;
}

.rules-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 107, 107, 0.03));
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
    padding: 20px;
    margin-top: 20px;
}

.rules-box-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.rules-box h3 {
    color: #ff6b6b;
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
}

.rules-box p {
    color: #ffcccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    text-align: center;
}

.contact-box {
    margin-bottom: 12px;
}

.contact-box h3 {
    color: #4ecdc4;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-box .qq-num {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 18px;
}

@media(max-width:600px) {
    .setting-row {
        flex-direction: column;
    }
    .setting-label {
        width: 100%;
        padding-bottom: 8px;
        padding-top: 0;
    }
    .setting-value {
        padding-left: 0;
    }
    .hero-section h1 {
        font-size: 26px;
    }
}
