/* 定制广场全局容器 */
.customization-container {
    padding: 20px 30px;
    max-width: 1400px;
    margin: 0 auto;
    color: #fff;
}

/* 顶部 Banner 区 */
.c-banner {
    background: linear-gradient(135deg, #2b1055 0%, #7597de 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.c-banner::after {
    content: '✨';
    font-size: 150px;
    position: absolute;
    right: 5%;
    top: -20px;
    opacity: 0.1;
}
.c-banner h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 800;
}
.c-banner p {
    margin: 0 0 20px 0;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    max-width: 600px;
    line-height: 1.6;
}
.c-banner-actions {
    display: flex;
    gap: 15px;
}
.btn-c-primary {
    background: #ff4081;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.btn-c-primary:hover {
    background: #f50057;
    transform: translateY(-2px);
}
.btn-c-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.btn-c-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* 导航 Tab */
.c-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}
.c-tab {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}
.c-tab:hover {
    color: #fff;
}
.c-tab.active {
    color: #fff;
}
.c-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff4081;
    border-radius: 3px 3px 0 0;
}

/* 内容区域切换 */
.c-content-section {
    display: none;
}
.c-content-section.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 网格布局 */
.c-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* 作者卡片 */
.creator-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s;
}
.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-color: rgba(255,64,129,0.5);
}
.cc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.cc-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff4081;
}
.cc-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}
.cc-tags {
    display: flex;
    gap: 8px;
}
.cc-tag {
    background: rgba(255,64,129,0.2);
    color: #ff80ab;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.cc-desc {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.5;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 委托订单卡片 */
.commission-card {
    background: linear-gradient(180deg, rgba(30,30,40,0.8) 0%, rgba(20,20,25,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    position: relative;
}
.commission-card:hover {
    border-color: #64b5f6;
}
.cm-bounty {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffea00;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cm-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding-right: 60px; /* 留出赏金位置 */
}
.cm-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}
.cm-meta i { margin-right: 5px; }

/* 详情查看按钮 */
.btn-c-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.btn-c-outline:hover {
    background: rgba(255,255,255,0.1);
}