* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
    min-height: 100vh;
    padding: 20px;
    color: #fff;
    overflow-x: hidden;
}

.light-effect {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.water-wave {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.02)" fill-opacity="1" d="M0,192L48,208C96,224,192,256,288,245.3C384,235,480,181,576,154.7C672,128,768,128,864,138.7C960,149,1056,171,1152,181.3C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    z-index: -1;
    opacity: 0.5;
}

.LYAD-CC {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.ava {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.text p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.text-min span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.right i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.7;
}

/* Google搜索区域 */
.pc-media {
    text-align: center;
    margin: 30px 0;
}

.google-logo {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.google-logo span {
    font-size: 2.5rem;
    font-weight: bold;
}

.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }

.pc-media span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

/* 提示信息 */
.tishi {
    text-align: center;
    padding: 15px;
    background: linear-gradient(90deg, #ff000033, #ff990033, #ff000033);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 100, 100, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

/* 主内容区 */
.main {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.main-1 {
    padding: 10px;
}

.tab-list {
    display: flex;
    margin-bottom: 20px;
}

.tab-li {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.tab-li.active {
    background: linear-gradient(90deg, #ff0000, #ff9900);
    box-shadow: 0 0 10px rgba(255, 100, 0, 0.5);
}

.tab-li:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 游戏卡片区域 - 修改部分 */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.content-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 100, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.content-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 20px 15px;
    flex-grow: 1;
}

.content-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 15%;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.content-item span {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

/* 在线人数样式 */
.online-counter {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 5px;
}

.counter-value {
    font-size: 1rem;
    font-weight: bold;
    color: #4CAF50;
    position: relative;
    padding-left: 5px;
}

.counter-value::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* 进入官网按钮 */
.enter-btn {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(90deg, #ff5722, #ff9800);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 3px 10px rgba(255, 100, 0, 0.3);
}

.enter-btn:hover {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    box-shadow: 0 5px 15px rgba(255, 100, 0, 0.5);
    transform: translateY(-2px);
}

/* 客服弹窗 */
.popup-LYADCC {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.popup-LYADCC a {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #ff0000, #ff9900);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 100, 0, 0.4);
    transition: all 0.3s ease;
}

.popup-LYADCC a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 100, 0, 0.6);
}

.popup-LYADCC i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 页脚 */
.footer-sj {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-sj-main {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-sj-main a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-sj-main a:hover {
    color: #ff9900;
    transform: translateY(-3px);
}

.footer-sj a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.footer-sj a:hover {
    color: #ff9900;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .tishi {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    .content-item img {
        width: 50px;
        height: 50px;
    }
    
    .content-item span {
        font-size: 1rem;
    }
}