/* 艳女直播 - 性感主播页面专用样式 */

/* 基础设置和变量 */
:root {
    --primary-color: #ff4757;
    --secondary-color: #ff6348;
    --accent-color: #ffa502;
    --text-primary: #2f1b14;
    --text-secondary: #8b5a3c;
    --bg-primary: #ffffff;
    --bg-secondary: #fff5f0;
    --bg-gradient: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
    --shadow-intense: 0 15px 40px rgba(255, 71, 87, 0.25);
    --shadow-hover: 0 25px 50px rgba(255, 71, 87, 0.35);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

/* 基础容器居中系统 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* CSS重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-secondary);
    overflow-x: hidden;
}

.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 头部样式 */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-intense);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    font-size: 28px;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.slogan {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 12px;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.nav-item:hover,
.nav-item.active {
    background: var(--bg-gradient);
    color: white;
    transform: translateY(-2px);
}

.nav-item.cta-btn {
    background: var(--bg-gradient);
    color: white;
    font-weight: 600;
}

/* 主内容区域 */
.main-content {
    flex: 1;
    padding-top: 80px;
}

/* 页面头部 */
.page-hero {
    background: var(--bg-gradient);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><circle cx="200" cy="50" r="30"/><circle cx="600" cy="20" r="20"/><circle cx="800" cy="70" r="25"/></svg>');
    opacity: 0.3;
    animation: fireFloat 20s ease-in-out infinite;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* 主播主要区域 */
.anchors-main {
    padding: 80px 0;
    background: var(--bg-primary);
}

.anchors-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--bg-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-intense);
}

/* 主播网格 */
.anchors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.anchor-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-intense);
    transition: var(--transition);
    position: relative;
}

.anchor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.anchor-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.anchor-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.anchor-status.away {
    background: #f39c12;
}

.anchor-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.anchor-badge.hot {
    background: #e74c3c;
}

.anchor-badge.trending {
    background: #f39c12;
}

.anchor-badge.new {
    background: #27ae60;
}

.anchor-badge.vip {
    background: #9b59b6;
}

.anchor-badge.dance {
    background: #3498db;
}

.anchor-badge.charm {
    background: #e91e63;
}

.anchor-avatar {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.anchor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 250px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.anchor-card:hover .anchor-overlay {
    opacity: 1;
}

.enter-chat-btn, .follow-btn {
    background: var(--bg-gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.enter-chat-btn.vip {
    background: #9b59b6;
}

.follow-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
}

.enter-chat-btn:hover, .follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-intense);
}

.enter-chat-btn.disabled {
    background: #7f8c8d;
    cursor: not-allowed;
}

.anchor-info {
    padding: 25px;
}

.anchor-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.anchor-details {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.anchor-desc {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.anchor-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    background: var(--bg-gradient);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

.tag.hot {
    background: #e74c3c;
}

.tag.trending {
    background: #f39c12;
}

.tag.new {
    background: #27ae60;
}

.tag.vip {
    background: #9b59b6;
}

.tag.dance {
    background: #3498db;
}

.tag.charm {
    background: #e91e63;
}

.anchor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.stat {
    background: var(--bg-secondary);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
}

/* 加载更多区域 */
.load-more-section {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    padding: 15px 40px;
    background: var(--bg-gradient);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.anchors-count {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* 底部样式 */
.main-footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* 动画效果 */
@keyframes fireFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .anchors-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .anchors-grid {
        grid-template-columns: 1fr;
    }
    
    .anchor-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}