/*
ThemeName=StarPay_One
Description=StarPay官方模板
Version=V1.0.0
Author=Mr.Faith
Author_Description=星影云IDC
Author_link=https://xccyidc.xyz
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        .navbar {
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to right, #ffffff 0%, #ffffff 40%, #d4c6ff 55%, #c2b0ff 100%);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #7f00ff, #e100ff);
            background-clip: text;
            -webkit-background-clip: text;
            -moz-background-clip: text;
            color:#592fd6;; /* 对不支持background-clip的浏览器提供回退颜色 */
            white-space: nowrap;
        }

        /* 汉堡菜单按钮样式 */
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 101;
            margin-left: auto; /* 将按钮靠右 */
        }

        .hamburger-menu .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: #333;
            transition: all 0.3s ease-in-out;
            border-radius: 3px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            margin-left: 1rem;
            transition: color 0.3s;
            white-space: nowrap;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #7f00ff;
        }
        
        .cta-button {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background: linear-gradient(45deg, #7f00ff, #e100ff);
            color: #fff !important;
            text-decoration: none;
            border-radius: 20px;
            font-weight: bold;
            transition: transform 0.3s;
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }

        /* 移动端导航栏样式 */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.8rem 4%;
                flex-wrap: wrap;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            /* 显示汉堡菜单按钮 */
            .hamburger-menu {
                display: block;
                order: 3;
            }
            
            /* 设置汉堡菜单激活状态样式 */
            .hamburger-menu.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            
            .hamburger-menu.active .bar:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger-menu.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            
            /* 导航链接移动端样式 */
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(to right, #ffffff, #d4c6ff);
                flex-direction: column;
                align-items: center;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                z-index: 100;
                padding: 0;
            }
            
            .nav-links.active {
                max-height: 300px;
                padding: 1rem 0;
            }
            
            .nav-links a {
                margin: 0.8rem 0;
                font-size: 1.1rem;
                display: block;
                text-align: center;
                padding: 0.5rem 0;
                width: 90%;
            }
            
            .nav-links .cta-button {
                margin-top: 0.8rem;
                padding: 0.8rem 2rem;
                width: 80%;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.6rem 3%;
            }
            
            .logo {
                font-size: 1.3rem;
            }
        }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 40%, #d4c6ff 55%, #c2b0ff 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

.left-content {
    flex: 1;
    padding-right: 2rem;
    z-index: 1;
    color: #333;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    border-radius: 12px;
    background-color: #6c5ce7;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.main-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.main-title .text-block {
    font-weight: 700;
    display: block;
    background: linear-gradient(45deg, #c2b0ff, #7f00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4c6ff; /* 回退颜色 */
    position: relative;
    animation: textGlow 6s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        filter: brightness(1);
        text-shadow: none;
    }
    40% {
        filter: brightness(1.3);
        text-shadow: 0 0 15px rgba(212, 198, 255, 0.5),
                     0 0 25px rgba(194, 176, 255, 0.3);
    }
}

.number {
    font-size: 6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.text-block {
    font-weight: 600;
}

.features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.check-icon {
    background-color: #6c5ce7;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(108, 92, 231, 0.5);
}

.right-content {
    flex: 1.5;
    position: relative;
    perspective: 1500px;
}

/* 浏览器模拟 */
.browser-mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: rotateY(-30deg) rotateX(10deg);
    transform-origin: center left;
}

.preview-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.browser-header {
    background: #f1f1f1;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #FF5F56; }
.dot.yellow { background-color: #FFBD2E; }
.dot.green { background-color: #27C93F; }

.browser-controls {
    display: flex;
    gap: 10px;
    margin-right: 1rem;
}

.browser-address-bar {
    background: white;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.browser-url {
    color: #666;
    font-size: 0.9rem;
}

.browser-actions {
    display: flex;
    margin-left: 1rem;
}

.browser-icon {
    color: #666;
    cursor: pointer;
}

/* 工具栏 */
.browser-toolbar {
    display: flex;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.logo-small {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.menu-icon {
    margin-right: 0.5rem;
    color: #666;
}

.small-logo {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    border-radius: 50%;
    background-color: #6c5ce7;
}

.brand-small {
    font-weight: 600;
    color: #333;
}

.video-controls {
    display: flex;
    gap: 1rem;
    margin-right: 2rem;
}

.control-icon {
    color: #666;
    cursor: pointer;
}

.search-bar {
    flex-grow: 1;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 0.9rem;
}

.search-input::placeholder {
    color: #999;
}

/* 浏览器内容区 */
.browser-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 视频播放器 */
.video-player {
    position: relative;
    width: 100%;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
}

.video-time {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* 视频信息 */
.video-info {
    padding: 1rem;
    color: #333;
}

.video-title {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.video-full-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.video-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: #f2f2f2;
    color: #666;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.video-description {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.video-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stream-button, .add-to-playlist {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: #f2f2f2;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.comments-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.comment-input {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.comment-box {
    flex-grow: 1;
    padding: 0.5rem;
    border: 1px solid #eee;
    border-radius: 4px;
}

/* 右侧栏 */
.right-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
    padding: 1rem;
    background-color: #f5f7fa;
    height: 100%;
    color: #333;
}

.premium-offer {
    background-color: #f0f3fd;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-title {
    font-size: 0.9rem;
    color: #4a69bd;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.per-month {
    font-size: 0.9rem;
    font-weight: normal;
}

.premium-button {
    width: 100%;
    padding: 0.5rem;
    background-color: #4a69bd;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.episode-nav {
    margin-top: 1rem;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    cursor: pointer;
    color: #777;
}

.tab.active {
    color: #4a69bd;
    border-bottom: 2px solid #4a69bd;
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.episode {
    padding: 0.5rem;
    background-color: #eee;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .container {
        padding: 1.5rem;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .right-content {
        flex: 1.2;
    }
    
    .browser-mockup {
        transform: rotateY(-20deg) rotateX(5deg);
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
        padding: 1.5rem;
        justify-content: center;
    }
    
    .left-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
        width: 100%;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .right-content {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .browser-mockup {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .browser-mockup {
        border-radius: 10px;
    }
    
    .browser-header {
        padding: 0.4rem 0.8rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
    }
    
    .browser-dots {
        gap: 4px;
    }
    
    .browser-controls,
    .browser-actions {
        display: none;
    }
    
    .browser-address-bar {
        padding: 0.2rem 0.5rem;
    }
    
    .preview-image {
        max-height: 400px;
    }
} 