@charset "utf-8";
/* CSS Document */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        /* 加载页面样式 */
        #loading-page {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        #loading-page.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .worldcup-logo {
            width: 300px;
            margin-bottom: 30px;
        }

        .loading-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #111;
        }

        .loading-subtitle {
            font-size: 1.8rem;
            margin-bottom: 40px;
            color: #111;
        }

        .progress-container {
            width: 40%;
            height: 18px;
            background-color: #222;
            border-radius: 9px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #ff4500, #ff6347, #ff7f50, #ffa07a);
            border-radius: 9px;
            transition: width 0.1s linear;
        }

        .loading-text {
            font-size: 1rem;
            color: #3b2410;
        }

        /* 视频过渡页面样式 */
        #video-page {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #000;
            z-index: 999;
            display: none;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        #video-page.active {
            display: block;
        }

        #video-page.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .app-icons {
            position: absolute;
            bottom: 20%;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .app-icons.show {
            opacity: 1;
            transform: translateY(0);
        }

        .app-icon {
            width: 150px;
            height: 150px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            text-align: center;
            backdrop-filter: blur(5px);
        }

        .app-icon img {
            width: 100px;
            height: 100px;
            margin-bottom: 5px;
            border-radius: 10px;
        }
		.app-icon2 {
            width: 150px;
            height: 150px;
            background-color: rgba(253,240,0,0.6);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: red;
			font-weight: bolder;
            font-size: 0.9rem;
            text-align: center;
            backdrop-filter: blur(5px);
        }

        .app-icon2 img {
            width: 100px;
            height: 100px;
            margin-bottom: 5px;
            border-radius: 10px;
        }
        /* 主页面样式 */
        #main-page {
            width: 100%;
            min-height: 100vh;
            background:url("");
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        #main-page.active {
            display: block;
            opacity: 1;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(240, 220, 180, 0.80);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            z-index: 100;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-logo {
            width: 61px;
            height: 93px;
        }

        .header-title {
            font-size: 2.0rem;
            font-weight: bold;
            color: #3b2410;
        }

        .header-subtitle {
            font-size: 0.7rem;
            color: #555;
        }

        .online-info {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            color: #3b2410;
			margin-top: 5px;
        }

        .online-dot {
            width: 8px;
            height: 8px;
            background-color: #2ecc71;
            border-radius: 50%;
        }

        .customer-service {
            display: flex;
            gap: 20px;
        }

        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.8rem;
            color: #3b2410;
        }

        .service-icon {
            width: 66px;
            height: 66px;
            margin-bottom: 3px;
        }

        .hero-section {
            width: 100%;
            height: 100vh;
            background: url('../images/bg.png') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:url('../images/champion.png')center/cover no-repeat;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .players-group {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .player-card {
            text-align: center;
        }

        .player-img {
            width: 180px;
            height: auto;
            margin-bottom: 10px;
        }

        .app-card {
            background-color: rgba(255,255,255,0.5);
            border-radius: 12px;
            padding: 15px;
            width: 240px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .app-card-icon {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            margin-bottom: 8px;
        }

        .app-card-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .app-card-desc {
            font-size: 0.85rem;
            color: #000;
            margin-bottom: 10px;
        }

        .register-btn {
            background-color: #ffc107;
            color: #3b2410;
            border: none;
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            cursor: pointer;
        }

        .register-btn2 {
            background-color:#FF3F00;
            color:#fff;
            border: none;
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            cursor: pointer;
        }
        /* 倒计时底部条幅 */
        .countdown-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(240, 220, 180, 0.95);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            z-index: 100;
            transition: transform 0.5s ease;
        }

        .countdown-banner.hidden {
            transform: translateY(100%);
        }

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

        .banner-icon {
            width: 50px;
            height: 50px;
        }

        .banner-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #3b2410;
        }

        .banner-subtitle {
            font-size: 0.8rem;
            color: #555;
            margin-top: 3px;
        }

        .countdown-timer {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .time-unit {
            background-color: #fff;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 1.2rem;
            font-weight: bold;
            color: #3b2410;
            min-width: 50px;
            text-align: center;
        }

        .close-banner {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 25px;
            height: 25px;
            background-color: #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            color: #3b2410;
        }

        .footer-text {
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            text-align: center;
            color: #fff;
            font-size: 0.8rem;
            z-index: 50;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .footer-text.show {
            opacity: 1;
        }
    /* 遮罩层 */
    .modal-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* 弹出框 */
    .modal-box {
      background: #fff;
      width: 85%;
      max-width: 320px;
      padding: 30px 20px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .modal-box p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #333;
    }

    /* 复制按钮 */
    .copy-btn {
      padding: 10px 24px;
      background: #07c160;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      cursor: pointer;
    }
    .copy-btn:active {
      opacity: 0.8;
    }

    /* 成功提示 */
    .tip {
      margin-top: 12px;
      color: #07c160;
      font-size: 14px;
      display: none;
    }
        /* 响应式适配 */
        @media (max-width: 500px) {
            .progress-container {
                width: 70%;
            }

            .app-icons {
                gap: 20px;
            }

            .app-icon {
                width: 70px;
                height: 70px;
            }

            .app-icon img {
                width: 35px;
                height: 35px;
            }
			.app-icon2 {
                width: 70px;
                height: 70px;
            }

            .app-icon2 img {
                width: 35px;
                height: 35px;
            }
            .header {
                padding: 8px 15px;
            }

            .header-logo {
                width:40px;
                height: 61px;
            }
            
            .header-title {
                font-size: 0.9rem;
            }

            .header-subtitletitle {
                font-size: 0.4rem;
            }
            .service-item {
                font-size: 0.5rem;
            }

            .service-icon {
                width: 32px;
                height: 32px;
            }

            .countdown-banner {
                flex-direction: column;
                gap: 10px;
                padding: 15px;
            }

            .banner-left {
                width: 100%;
                justify-content: center;
            }

            .countdown-timer {
                width: 100%;
                justify-content: center;
            }

            .players-group {
                flex-wrap: wrap;
            }

            .player-img {
                width: 140px;
            }

            .app-card {
                width: 108px;
                padding: 10px;
            }

            .app-card-title {
                font-size: 0.9rem;
                font-weight: bold;
                margin-bottom: 5px;
            }

             .app-card-desc {
                font-size: 0.6rem;
                color: #000;
                margin-bottom: 10px;
            }
			 .banner-title {
            	font-size: 1.2rem;
        	}
        	
			 .banner-subtitle{
            	font-size: 0.6rem;
        	}
}