    @charset "utf-8";
*{margin:0;padding:0;outline:0;font-family:'UKIJ Tor'}
@font-face {
				font-family: UKIJ Tor;
				src: url('/fonts/UKIJTor.ttf');
			}
        /* 基础样式 */
        /* 基础样式 */
        :root {
            --primary: #6C63FF;
            --primary-dark: #554fd8;
            --secondary: #FF6584;
            --accent: #36D1DC;
            --dark: #2D3748;
            --light: #F7FAFC;
            --gray: #A0AEC0;
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --radius: 16px;
            --card-radius: 20px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            font-family: UKIJ Tor;
        }

        .container {
            width: 100%;
            /*max-width: 1200px;*/
            margin: 0 auto;
            /*padding: 0 20px;*/
            direction: rtl;
        }

        section {
            padding: 60px 0 0 0;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-align: center;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }
        
        b2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        h2:after {
           /* content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;*/
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #4A5568;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--gradient);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            /*box-shadow: var(--shadow);*/
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
           /* box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);*/
        }

        .btn-secondary {
            background: #ececec;
            color: var(--primary);
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #9163ff, #d90a5e);
            color: #fff;
        }

        .btn-small {
            padding: 8px 5px;
            font-size: 0.85rem;
            font-weight: normal;
        }
        /* 导航栏 */
         .navbar {
            position: fixed;
            top: 25px;
            left: 5%;
            width: 90%;
            border-radius: 15px;
            background: rgba(227, 223, 223, 0.6);
            /*backdrop-filter: blur(10px);*/
            /*padding: 5px 0;*/
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

         .navbar.scrolled {
            /*padding: 5px 0;*/
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

       
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

 .logo img{
           width: 150px;
           height: 40px;
           margin-right: 10px;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 1.8rem;
        }

               .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            /*font-size: 1.5rem;*/
            color: var(--dark);
            cursor: pointer;
        }
 .mobile-menu-btn img{
    width: 120px;
    height: 40px;
    padding-top: 6px;
    margin-left: 10px;
 }

        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }

        .nav-links.active {
            transform: translateY(0);
        }

        .nav-links a {
            display: block;
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            padding: 12px 0;
            width: 100%;
            text-align: center;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }

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

        .nav-links a:hover:after {
            width: 40px;
        }

        /* 页面头部 */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: 120px 0 60px;
            margin-top: 70px;
        }

        .page-header .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .page-header p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* 应用详情区域 */
        .app-detail {
            background: white;
           /* border-radius: var(--card-radius);
            box-shadow: var(--shadow);*/
            overflow: hidden;
            /*margin-bottom: 60px;*/
        }

        .app-detail-content {
            padding: 20px;
        }

        .app-detail-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 10px;
        }

        .app-icon-large {
            width: 250px;
            height: 123px;
            border-radius: 25px;
            /*background: var(--gradient);*/
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
        }


        .app-icon-large img {
            width: 250px;
            height: 123px;
        }
        .app-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 0.85rem;
        }

        .app-meta-item {
            display: flex;
            align-items: center;
            gap: 0px;
            color: var(--gray);
        }

        .app-meta-item i {
            color: #a0aec0;
        }

        .app-price-tag {
           /* background: #f8fafc;
            border: 2px solid #ff4757;
            margin-top: 20px;
            border-radius: 8px;*/
            padding-bottom: 15px;
            text-align: center;
        }

        .app-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ff4757;
            margin-bottom: 5px;
        }

        .app-price.free {
            color: #10B981;
        }

        .app-price-desc {
            font-size: 0.95rem;
            color: var(--gray);
        }

         /* 视频播放器 */
        .video-section {
            margin-bottom: 40px;
        }

        .video-container {
            position: relative;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #000;
        }

.video-container .poster {
    width: 100%;
    height: 55%;
}


.video-container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(90deg, 
    #ff0000, #ff9900, #ffff00, #33ff00, 
    #0099ff, #6633ff, #cc00ff, #ff0000);
  background-size: 400% 100%;
  border-radius: 18px;
  z-index: -1;
  animation: rainbowWave 5s ease-in-out infinite;
}

@keyframes rainbowWave {
  0%, 100% {
    background-position: 0% 0%;
    border-radius: 18px;
  }
  25% {
    background-position: 50% 0%;
    border-radius: 15px;
  }
  50% {
    background-position: 100% 0%;
    border-radius: 20px;
  }
  75% {
    background-position: 50% 0%;
    border-radius: 15px;
  }
}




        .video-player {
            width: 100%;
            display: block;
        }

.video-player .poter{
            width: 100%;
           height: 65%;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .play-button {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: white;
        }

        .play-button i {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .video-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .video-progress {
            width: 100%;
            height: 6px;
            background: #e2e8f0;
            border-radius: 3px;
            margin-top: 10px;
            overflow: hidden;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient);
            width: 0%;
            transition: width 0.1s linear;
        }

        .time-display {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 5px;
        }
        /* 卡片式内容区域 */
        .content-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            /*margin-bottom: 20px;*/
        }

        .content-card {
           /* background: #f8fafc;
            border-radius: var(--card-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;*/
            display: flex;
            flex-direction: column;
        }

       
        .content-card-header {
            /*display: flex;*/
            align-items: center;
            margin-bottom: 20px;
        }

        .content-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-right: 15px;
        }

        .content-card-title {
            /*font-size: 1.5rem;
            color: var(--primary);*/
        }

        .content-card-body {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .content-card-body img {
            border-radius: 15px;
            width: 100%;
        }
        
        .content-card-image {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            
        }

        .content-card-text {
            flex: 1;
        }


        /* 广告幻灯片 */
        .ad-slider {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            direction: ltr;
        }


.ad-slider img {
    width: 100%;
    height: 100%;
}


        .ad-slides {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease;
        }


        .ad-slide {
            width: 33.33%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            text-align: center;
            color: white;
            position: relative;
        }
 
        .ad-slide:nth-child(1) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .ad-slide:nth-child(2) {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .ad-slide:nth-child(3) {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .ad-slide-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        

        .ad-slide-title {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .ad-slide-description {
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

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

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-arrow {
            /*position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);*/
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }
        
        /* 数据统计 */
        .app-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* 广告区域 */
        .ad-section {
            margin: 20px 0;
            text-align: center;
        }

        .ad-banner {
            background: linear-gradient(135deg, #d766ea 0%, #38dd63 100%);
            border-radius: 15px;
            padding: 20px;
            color: white;
            position: relative;
            overflow: hidden;
            /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);*/
            
        }

        .ad-banner:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: adShine 3s infinite;
        }

        @keyframes adShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .ad-content {
            position: relative;
            z-index: 2;
        }

        .ad-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            direction: rtl;
            text-shadow:
    1px 1px 0 #ff6b6b,
    2px 2px 0 #4ecdc4,
    3px 3px 0 #45b7d1,
    4px 4px 0 #96ceb4,
    5px 5px 0 #ffbe76;
        }

        .ad-description {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
            color: #fff;
            direction: rtl;
        }

        .ad-badge {
            position: absolute;
            top: 2px;
            right: 10px;
            /*background: #FFD700;*/
            color: #333;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }


         .ad-badge img {
             width: 60px;
             height: 50px;
         }
        /* 推荐应用区域 */
        .recommended-apps {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(54, 209, 220, 0.03) 100%);
        }

        .apps-carousel {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .apps-track {
            display: flex;
            gap: 25px;
            transition: transform 0.5s ease;
        }

        .app-card {
            background: white;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.5s ease;
            border: 1px solid #e2e8f0;
            min-width: 280px;
            flex-shrink: 0;
            position: relative;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInRight 0.8s ease forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .app-card:nth-child(1) { animation-delay: 0.1s; }
        .app-card:nth-child(2) { animation-delay: 0.2s; }
        .app-card:nth-child(3) { animation-delay: 0.3s; }
        .app-card:nth-child(4) { animation-delay: 0.4s; }
        .app-card:nth-child(5) { animation-delay: 0.5s; }

        .app-card:hover {
            transform: translateY(-10px) rotate(2deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .app-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(54, 209, 220, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            pointer-events: none;
        }

        .app-card:hover:before {
            opacity: 1;
        }

        .app-card-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
            transition: transform 0.5s ease;
        }

        .app-card:hover .app-card-image {
            transform: scale(1.1);
        }

        .app-card-content {
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        .app-card-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .app-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin-right: 12px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .app-card:hover .app-card-icon {
            transform: rotate(15deg) scale(1.1);
        }

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

        .app-card-meta {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .app-card-rating {
            display: flex;
            align-items: center;
            margin-right: 10px;
        }

        .app-card-rating i {
            color: #FFC107;
            margin-right: 3px;
        }

        .app-card-description {
            font-size: 0.9rem;
            color: #4A5568;
            margin-bottom: 15px;
        }

        .app-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .app-card-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
        }

        .app-card-price.free {
            color: #10B981;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e2e8f0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .carousel-arrow:hover {
            background: var(--primary);
            color: white;
        }

        .carousel-arrow.prev {
            left: 10px;
        }

        .carousel-arrow.next {
            right: 10px;
        }

        /* 页脚 */
        .footer {
            background: var(--dark);
            color: white;
            padding: 30px 20px 30px;
        }

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

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            text-align: right;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 80px;
            height: 3px;
            background: var(--gradient);
        }

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

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

        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #A0AEC0;
            font-size: 0.9rem;
        }


.footer-bottom p{
    color: #A0AEC0;
            font-size: 0.9rem;
            direction: ltr;
            line-height: 30px;
}
        /* 响应式设计 */
        @media (min-width: 768px) {
            .app-detail-header {
                flex-direction: row;
                text-align: left;
                align-items: flex-start;
            }
            
            .app-icon-large {
                margin-right: 30px;
                margin-bottom: 0;
            }
            
            .content-cards {
                grid-template-columns: 1fr;
            }
            
            .content-card-body {
                flex-direction: row;
            }
            
            .content-card-image {
                width: 100%;
            }
            
            .app-stats {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }