<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>EVO视讯官方网站</title>
    <link rel="icon" href="https://t.119988.xyz/data/cfe0632906c2d962323b436f5f77a325.ico" type="image/png">
    <meta name="keywords" content="EVO视讯真人">
    <meta name="description" content="">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
            background: #f8f9fa;
            min-height: 100vh;
        }

        .sidebar {
            width: 220px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            position: fixed;
            left: 0;
            top: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 30px;
            z-index: 1000;
        }

        .sidebar-header {
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 30px;
        }

        .sidebar-logo img {
            height: 50px;
            width: auto;
            margin-bottom: 15px;
        }

        .sidebar-title {
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .sidebar-subtitle {
            font-size: 0.85em;
            color: #95a5a6;
        }

        .sidebar-nav {
            margin-bottom: 30px;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            color: #ecf0f1;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .nav-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .nav-item.active {
            background: rgba(255, 255, 255, 0.2);
            border-left: 3px solid #3498db;
        }

        .nav-icon {
            font-size: 1.5em;
        }

        .nav-text {
            font-size: 1em;
            font-weight: 500;
        }

        .sidebar-buttons {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-btn {
            display: block;
            width: 100%;
            padding: 12px 20px;
            margin-bottom: 10px;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-register {
            background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
            color: #fff;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
            font-size: 1.1em;
        }

        .btn-login {
            background: linear-gradient(135deg, #f39c12, #e74c3c);
            color: #fff;
            border: none;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.5);
            font-size: 1.1em;
        }

        .sidebar-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .main-content {
            margin-left: 240px;
            min-height: 100vh;
            transition: margin-left 0.3s ease;
        }

        .top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 30px;
            background: rgba(0, 0, 0, 0);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .top-bar-title {
            font-size: 38px;
            font-weight: 700;
            color: #22d3ee;
        }

        .menu-toggle {
            display: none;
            background: #3498db;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
            margin: 0 auto;
            height: 300px;
            border-radius: 15px;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            flex: 0 0 100%;
        }

        .carousel-slide img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .carousel-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #fff;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .buttons-section {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 30px;
            background: rgba(0, 0, 0, 0);
        }

        .custom-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .custom-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.5);
        }

        .content-area {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.2em;
            color: #7f8c8d;
        }

        .info-block {
            background: rgba(0, 0, 0, 0);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            align-items: center;
        }

        .info-text h2 {
            font-size: 1.8em;
            color: #2980b9;
            margin-bottom: 20px;
        }

        .info-text p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .info-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .features-list {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }

        .feature-card {
            background: rgba(0, 0, 0, 0);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            min-width: 200px;
        }

        .feature-card h4 {
            font-size: 1.3em;
            color: #2980b9;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: #666;
            font-size: 0.9em;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .content-card {
            background: rgba(0, 0, 0, 0);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .content-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .content-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .card-body {
            padding: 25px;
        }

        .card-title {
            font-size: 1.4em;
            color: #2980b9;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .card-body p {
            color: #666;
            line-height: 1.8;
        }

        footer {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: 50px;
        }

        footer p {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
            }
            
            .sidebar.active {
                transform: translateX(0);
            }
            
            .menu-toggle {
                display: block;
            }
            
            .main-content {
                margin-left: 0 !important;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
            }
            
            .features-list {
                flex-direction: column;
            }
            
            .buttons-section {
                flex-direction: column;
                align-items: center;
            }
        }
    </style>
<style>
html,body,#enter-page,.enter-page,.main-page{background:#0a0a0a!important;background-image:none!important;color:#ffffff!important;}
section,main,.container,.content,.hero,.banner,.card,.box{background:#171717!important;background-image:none!important;color:#ffffff!important;}
h1,h2,h3,h4,h5,h6,p,span,li,a,strong,div{color:#ffffff!important;}
header,.header,.navbar,.topbar{background:#171717!important;background-image:none!important;}
button,.btn,a.btn{background:#171717!important;color:#fff!important;}
</style></head>
<body>

<style>
#enter-page{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554,
            #1d4ed8
        );
    cursor:pointer;
    transition:all .5s ease;
}

.enter-box{
    text-align:center;
    padding:60px 50px;
    min-width:600px;
    border-radius:32px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:
        0 15px 50px rgba(0,0,0,0.35);
    animation:float 2s ease-in-out infinite;
}

.enter-logo{
    width:300px;
    height:auto;
    object-fit:contain;
    margin-bottom:25px;
    
    background:#000;
    border-radius:20px;
    padding:20px;
}

.enter-title{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
    letter-spacing:2px;
}

.enter-subtitle{
    color:#cbd5e1;
    font-size:22px;
    margin-bottom:35px;
}

.enter-btn{
    display:inline-block;
    padding:20px 50px;
    border-radius:16px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #1e40af
    );
    color:#fff;
    font-size:22px;
    font-weight:700;
    box-shadow:
        0 8px 25px rgba(37,99,235,.4);
    animation:pulse 1.8s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@media(max-width:768px){

    .enter-box{
        width:92%;
        min-width:auto;
        padding:50px 25px;
    }

    .enter-logo{
        width:250px;
        height:auto;
    }

    .enter-title{
        font-size:34px;
    }

    .enter-subtitle{
        font-size:18px;
    }

    .enter-btn{
        font-size:18px;
        padding:16px 35px;
    }
}
</style>

<div id="enter-page">

    <div class="enter-box">

        <img src="https://t.119988.xyz/data/8e444a64fe15958482317bbdeab886df.png"
             class="enter-logo"
             alt="Logo">

        <div class="enter-title">
            欢迎进入
        </div>

        <div class="enter-subtitle">
            点击进入官方平台
        </div>

        <div class="enter-btn">
            ▶ 点击进入
        </div>

    </div>

</div>

<script>
document.getElementById('enter-page').addEventListener('click', function(){

    const overlay = this;
    const video = document.querySelector('.main-video');

    overlay.style.opacity = '0';

    setTimeout(() => {
        overlay.remove();
    }, 500);

    if(video){

        video.currentTime = 0;
        video.muted = false;
        video.volume = 1;

        video.play().catch(function(err){
            console.log(err);
        });
    }

    const btn = document.querySelector('.sound-btn');

    if(btn){
        btn.style.display = 'none';
    }
});
</script>

    <div class="sidebar" style="width: 240px; left: 0;">
        <div class="sidebar-header">
            <div class="sidebar-logo">
                <img src="https://t.119988.xyz/data/8e444a64fe15958482317bbdeab886df.png" alt="Logo">
            </div>
        </div>
    
        <div class="sidebar-nav">
            <a href="https://ky-sport25.vip" target="_blank" class="nav-item">
                <span class="nav-icon">🏠</span>
                <span class="nav-text">首页</span>
            </a>
            <a href="https://ky-sport25.vip" target="_blank" class="nav-item">
                <span class="nav-icon">⚽</span>
                <span class="nav-text">赛事资讯</span>
            </a>
            <a href="https://ky-sport25.vip" target="_blank" class="nav-item">
                <span class="nav-icon">🏆</span>
                <span class="nav-text">球队排名</span>
            </a>
            <a href="https://ky-sport25.vip" target="_blank" class="nav-item">
                <span class="nav-icon">📺</span>
                <span class="nav-text">直播观看</span>
            </a>
        </div>
        
        <div class="sidebar-buttons">
            <a href="https://www.kyty010.com" class="sidebar-btn btn-register" target="_blank">新人教程</a>
            <a href="https://yj9090.com" class="sidebar-btn btn-login" target="_blank">易记网址 yj9090.com</a>
        </div>
    </div>

    <div class="main-content">
        <div class="top-bar" style="display: flex; justify-content: center; align-items: center;">
            <h1 class="top-bar-title" style="text-align: center; flex: 1;">2026世界杯指定官方平台</h1>
        </div>

        <div class="buttons-section">
            <a href="https://ky-sport25.vip" target="_blank" class="custom-btn">
                <span>📱</span>
                <span>EVO视讯真人手机网页版</span>
            </a>
            <a href="https://ky-sport25.vip" target="_blank" class="custom-btn">
                <span>💻</span>
                <span>EVO视讯真人电脑网页版</span>
            </a>
        </div>

        <div class="video-wrapper">
            <video class="main-video" playsinline controls preload="auto">
                <source src="https://pos3img.neiztcl.com/video/new_public/web/bg/fd/cs/d69bj26riol6loss5je0_979781.mp4" type="video/mp4">
            </video>
            <button class="sound-btn" onclick="enableSound()">🔊 启用声音</button>
        </div>

        <style>
            .video-wrapper{
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin: 0 auto;
    height: auto;
    border-radius: 15px;
}

.video-wrapper video{
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills the container */
    display: block;
}
        </style>

        <section class="content-area">
            <div class="section-header">
                <h1 class="section-title">2026年美加墨世界杯：全球足球盛宴EVO视讯真人</h1>
                <p class="section-subtitle">首届由三国联合承办的世界杯，48支球队将在北美大陆展开激烈角逐</p>
            </div>

            <div class="info-block">
                <div class="info-grid">
                    <div class="info-text">
                        <h2>规模空前的世界杯EVO视讯真人</h2>
                        <p>2026年世界杯将是历史上规模最大的一届，参赛队伍从32支扩军至48支。赛事将在美国、加拿大和墨西哥三国举行，预计吸引超过150万现场观众，电视转播覆盖全球200多个国家和地区。</p>
                        <p>本届世界杯将在16个主办城市展开，包括纽约、洛杉矶、墨西哥城、多伦多等世界著名城市。球场设施现代化程度将达到前所未有的水平，为球迷带来极致的观赛体验。https://ky-sport25.vip</p>
                    </div>
                    <div class="info-image">
                        <a href="https://ky-sport25.vip" target="_blank"><img src="https://t.119988.xyz/data/6e03bc088be3bfa9dba51a82fb0f5dd2.jpg" alt="世界杯场馆"></a>
                    </div>
                </div>
            </div>

            <div class="features-list">
                <div class="feature-card">
                    <h4>🏆 扩军至48队</h4>
                    <p>更多国家有机会参与世界杯舞台EVO视讯真人</p>
                </div>
                <div class="feature-card">
                    <h4>🌎 三国联办</h4>
                    <p>美国、加拿大、墨西哥共同承办</p>
                </div>
                <div class="feature-card">
                    <h4>🎉 千载难逢</h4>
                    <p>首次在北美三国举办世界杯https://ky-sport25.vip</p>
                </div>
            </div>

            <div class="cards-grid">
                <div class="content-card">
                    <a href="https://ky-sport25.vip" target="_blank"><img src="https://t.119988.xyz/data/fa1d9ad447b441ee746bdf087ee1dbdf.jpg" alt="传统强队"></a>
                    <div class="card-body">
                        <h3 class="card-title">传统强队备战EVO视讯真人</h3>
                        <p>巴西、德国、法国等传统强队正在积极备战本届世界杯，力争在北美大陆再创辉煌。</p>
                    </div>
                </div>
                <div class="content-card">
                    <a href="https://ky-sport25.vip" target="_blank"><img src="https://t.119988.xyz/data/c44286d74579d710827a0c0bb67dd27e.jpg" alt="新军崛起"></a>
                    <div class="card-body">
                        <h3 class="card-title">新军崛起EVO视讯真人</h3>
                        <p>扩军为更多亚洲和非洲球队提供了首次亮相世界杯的机会。https://ky-sport25.vip</p>
                    </div>
                </div>
                <div class="content-card">
                    <a href="https://ky-sport25.vip" target="_blank"><img src="https://t.119988.xyz/data/6e03bc088be3bfa9dba51a82fb0f5dd2.jpg" alt="科技观赛"></a>
                    <div class="card-body">
                        <h3 class="card-title">科技观赛体验</h3>
                        <p>5G技术、VR直播、AI裁判辅助等前沿科技将应用于本届世界杯。https://ky-sport25.vip</p>
                    </div>
                </div>
            </div>

            <div class="info-block" style="margin-top: 30px;">
                <h2 style="font-size: 2em; color: #2c3e50; margin-bottom: 20px;">赛程与亮点EVO视讯真人</h2>
                <p style="color: #555; line-height: 1.8; margin-bottom: 20px;">小组赛阶段将分为12个小组，每组4支球队。小组前两名以及8支成绩最优的第三名球队将晋级32强淘汰赛。这样的赛制设计大大增加了比赛的悬念和观赏性。</p>
                <p style="color: #555; line-height: 1.8;">从开幕式到决赛，本届世界杯将持续约一个月时间。届时，全球球迷将共同见证这一足球盛事的每一个精彩瞬间。https://ky-sport25.vip</p>
            </div>
        </section>

        <footer>
            <p>&copy; 2026 世界杯官方平台 | </p>
            <p>联系我们：https://ky-sport25.vip | EVO视讯真人 | </p>
        </footer>
    </div>

    <script>
        let currentSlide = 0;
        const slides = document.querySelectorAll('.carousel-slide');
        const totalSlides = slides.length;
        const dots = document.querySelectorAll('.carousel-dot');
        
        function updateDots() {
            dots.forEach((dot, index) => {
                dot.classList.toggle('active', index === currentSlide);
            });
        }
        
        function moveSlide(direction) {
            currentSlide += direction;
            if (currentSlide < 0) currentSlide = totalSlides - 1;
            if (currentSlide >= totalSlides) currentSlide = 0;
            
            const offset = currentSlide * -100;
            document.getElementById('carouselSlides').style.transform = 'translateX(' + offset + '%)';
            updateDots();
        }
        
        function goToSlide(index) {
            currentSlide = index;
            const offset = currentSlide * -100;
            document.getElementById('carouselSlides').style.transform = 'translateX(' + offset + '%)';
            updateDots();
        }
        
        function toggleSidebar() {
            document.querySelector('.sidebar').classList.toggle('active');
        }
        
        setInterval(() => moveSlide(1), 3000);
    </script>
</body>
</html>