* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0F0A1E;
    color: #f3f3ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 背景图案 */
.bg-pattern {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(106, 13, 173, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 60%, rgba(0, 240, 255, 0.1) 0%, transparent 20%);
}

/* 容器样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a{
    color: #fff;
    text-decoration: none;
}

.policy-link:hover{
    text-decoration: none;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(90deg, #6A0DAD, #00F0FF);
    color: #0F0A1E;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #00F0FF;
    color: #00F0FF;
}

.btn-secondary:hover {
    background-color: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}



.head-links{
    width: 500px;
}

.head-links li {
    list-style: none;
    width: 130px;

    float: left;
}

.head-links li a{
    list-style: none;
    color: #fff;

    background: transparent;
    border: 1px solid #00F0FF;


    position: relative;
    overflow: hidden;

    display: block;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}




/* 标题样式 */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 3px;
    background: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.section-subtitle {
    color: #d2d2df;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* 导航栏样式 */
header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f3ff;
    text-decoration: none;
}

.logo span {
    color: #00F0FF;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #00F0FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #0F0A1E;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #f3f3ff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00F0FF;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00F0FF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f3f3ff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 英雄区域 */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(90deg, #9D4EDD, #00F0FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(106, 13, 173, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: #d2d2df;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 背景装饰 */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.bg-decor-1 {
    width: 600px;
    height: 600px;
    background-color: #6A0DAD;
    top: -200px;
    right: -100px;
}

.bg-decor-2 {
    width: 500px;
    height: 500px;
    background-color: #00F0FF;
    bottom: -150px;
    left: -100px;
}

/* 直播列表模块 */
.live-list {
    padding: 100px 0;
    position: relative;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background-color: #161127;
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 30px;
    color: #f3f3ff;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d2d2df;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag {
    padding: 8px 18px;
    border-radius: 30px;
    background-color: #161127;
    color: #d2d2df;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag.active {
    background-color: #6A0DAD;
    color: #f3f3ff;
}

.tag:hover:not(.active) {
    border-color: #9D4EDD;
    color: #f3f3ff;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.live-card {
    background-color: #161127;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid transparent;
}

.live-card:hover {
    transform: translateY(-10px);
    border-color: #9D4EDD;
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.3);
}

.live-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.live-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 10, 30, 0.8), transparent 60%);
    z-index: 1;
}

.live-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.live-card:hover .live-image {
    transform: scale(1.05);
}

.live-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff3e3e;
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.live-viewers {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(15, 10, 30, 0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-info {
    padding: 20px;
}

.live-creator {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.creator-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2A2440;
    overflow: hidden;
    margin-right: 10px;
    border: 2px solid #6A0DAD;
}

.creator-info h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.creator-followers {
    font-size: 0.8rem;
    color: #d2d2df;
}

.live-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    color: #fff;
}

.live-desc {
    font-size: 0.9rem;
    color: #d2d2df;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.load-more {
    text-align: center;
}

/* 关于我们模块 */
.about-us {
    padding: 100px 0;
    background-color: #1A103C;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-container {
    background-color: #161127;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(106, 13, 173, 0.3);
}

.about-img {
    width: 100%;
    border-radius: 15px;
    height: auto;
}

.about-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.about-decor-1 {
    width: 300px;
    height: 300px;
    background-color: #6A0DAD;
    top: -50px;
    left: -50px;
}

.about-decor-2 {
    width: 250px;
    height: 250px;
    background-color: #00F0FF;
    bottom: -30px;
    right: -30px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #d2d2df;
    margin-bottom: 25px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background-color: #161127;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #9D4EDD;
    transform: translateY(-5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(106, 13, 173, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    fill: #00F0FF;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 80px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00F0FF;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.stat-item .stat-label {
    color: #d2d2df;
}

/* 联系我们模块 */
.contact-us {
    padding: 100px 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background-color: #161127;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.2);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    background-color: #0F0A1E;
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 10px;
    color: #f3f3ff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: #161127;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.2);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(106, 13, 173, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    fill: #00F0FF;
}

.detail-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.detail-content p {
    color: #d2d2df;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: #0F0A1E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 13, 173, 0.3);
}

.social-link:hover {
    background-color: #6A0DAD;
    transform: translateY(-3px);
    border-color: #6A0DAD;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #f3f3ff;
}

/* 制度协议模块 */
.policies {
    padding: 100px 0;
    background-color: #1A103C;
    position: relative;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.policy-card {
    background-color: #161127;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.policy-card:hover {
    transform: translateY(-10px);
    border-color: #9D4EDD;
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.2);
}

.policy-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(106, 13, 173, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.policy-icon svg {
    width: 28px;
    height: 28px;
    fill: #00F0FF;
}

.policy-card a {
    color: #fff;
}

.policy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.policy-card p {
    color: #d2d2df;
    margin-bottom: 25px;
    flex-grow: 1;
}

.policy-link {
    color: #00F0FF !important;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}



.policy-link svg {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    fill: currentColor;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #161127;
    color: #f3f3ff;
    padding: 20px 25px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    fill: #00F0FF;
}

.faq-answer {
    background-color: #161127;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #d2d2df;
    padding: 0 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* 页脚 */
footer {
    width: 100%;
    bottom: 0px;
    background-color: #0F0A1E;
    padding: 20px 0 0px;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #00F0FF;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3f3ff;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #00F0FF;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.footer-desc {
    color: #d2d2df;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d2d2df;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00F0FF;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #d2d2df;
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: #d2d2df;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #00F0FF;
}

/* 动画和过渡效果 */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #0F0A1E;
        flex-direction: column;
        padding: 80px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0 0 20px 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .live-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-box {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .policy-card {
        padding: 25px;
    }
}

.btn-primary{
    color: #fff;
}

.xycont{
    color: #d2d2df;
    margin-bottom: 25px;
    flex-grow: 1;
    height: 50px;
    overflow: hidden;
}