@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 100;
}

.header-left .logo {
    font-size: 18px;
    font-weight: 700;
    color: #fe2c55;
    text-decoration: none;
}

.header-center {
    flex: 1;
    max-width: 300px;
    margin: 0 15px;
}

.search-input {
    width: 100%;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 16px;
    padding: 0 15px;
    color: #fff;
    font-size: 14px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header-right {
    position: relative;
}

.header-icon {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.badge {
    position: absolute;
    top: -5px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    background: #fe2c55;
    border-radius: 9px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.tab-item.active {
    color: #fe2c55;
}

.tab-item i {
    font-size: 22px;
    margin-bottom: 4px;
}

.tab-item span {
    font-size: 11px;
}

.tab-center {
    position: relative;
    top: -10px;
}

.tab-plus-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(254, 44, 85, 0.4);
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.tab-plus-btn:active {
    transform: scale(0.95);
}

.add-to-home-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.add-to-home-modal.show {
    display: flex;
}

.toast-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.add-to-home-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    width: 85%;
    max-width: 320px;
    text-align: center;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.add-to-home-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.add-to-home-icon i {
    font-size: 30px;
    color: #fff;
}

.add-to-home-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.add-to-home-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
}

.add-to-home-steps {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
}

.add-to-home-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.add-to-home-steps li:last-child {
    border-bottom: none;
}

.add-to-home-steps .step-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.add-to-home-steps .step-content {
    flex: 1;
}

.add-to-home-steps .step-title {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
}

.add-to-home-steps .step-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.add-to-home-steps .safari-share-hint {
    font-size: 12px;
    color: #ffd700;
    margin-top: 4px;
    font-weight: bold;
}

.add-to-home-buttons {
    display: flex;
    gap: 10px;
}

.add-to-home-btn {
    flex: 1;
    padding: 12px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.add-to-home-btn:active {
    transform: scale(0.98);
}

.add-to-home-btn-primary {
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    color: #fff;
}

.add-to-home-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.tab-plus-btn i {
    font-size: 24px;
    color: #fff;
    margin-bottom: 0;
}

.video-page {
    background: #000;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: none;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: #000;
}

.video-slide.active {
    display: block;
}

.video-player {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    touch-action: none;
    pointer-events: auto;
    object-position: center;
}

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

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(254, 44, 85, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    font-size: 24px;
    color: #fff;
    margin-left: 4px;
}

.video-info {
    padding: 15px;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.video-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.video-side-info {
    position: absolute;
    right: 15px;
    bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fe2c55;
    margin-bottom: 8px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nickname {
    font-size: 12px;
    color: #fff;
    margin-bottom: 6px;
}

.follow-btn {
    font-size: 12px;
    padding: 4px 12px;
    background: #fe2c55;
    border: none;
    border-radius: 12px;
    color: #fff;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.action-item i {
    font-size: 28px;
    color: #fff;
    margin-bottom: 6px;
}

.action-item span {
    font-size: 12px;
    color: #fff;
}

.action-item.liked i {
    color: #fe2c55;
}

.action-item.liked span {
    color: #fe2c55;
}

.warehouse-page {
    background: #0a0a0a;
    padding-bottom: 70px;
}

.warehouse-header {
    padding: 20px 15px;
    background: #0a0a0a;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.search-box {
    position: relative;
}

.search-box .search-input {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding-left: 40px;
}

.search-box::before {
    content: '\f002';
    font-family: 'FontAwesome';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.category-scroll {
    position: sticky;
    top: 0;
    background: #0a0a0a;
    z-index: 10;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-list {
    display: flex;
    overflow-x: auto;
    padding: 0 15px;
    gap: 15px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.category-item {
    flex-shrink: 0;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.category-item.active {
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    color: #fff;
}

.waterfall-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
}

.waterfall-item {
    break-inside: avoid;
}

.movie-card {
    text-decoration: none;
    display: block;
}

.movie-poster {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    font-size: 11px;
    color: #fff;
}

.score {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 2px 6px;
    background: rgba(254, 44, 85, 0.9);
    border-radius: 4px;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

.movie-info {
    padding: 0 5px;
}

.movie-title {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 4px;
}

.movie-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-page {
    background: #0a0a0a;
    padding-bottom: 100px;
}

.detail-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 100;
}

.back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    border: none;
    font-size: 16px;
}

.detail-content {
    padding-top: 50px;
}

.detail-poster {
    position: relative;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.detail-poster .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.detail-poster .play-btn {
    width: 70px;
    height: 70px;
}

.detail-info {
    padding: 20px 15px;
}

.detail-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.detail-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.meta-divider {
    color: rgba(255, 255, 255, 0.3);
}

.detail-desc {
    margin-bottom: 20px;
}

.detail-desc p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.detail-actors, .detail-director {
    margin-bottom: 15px;
}

.detail-actors h3, .detail-director h3 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.detail-actors p, .detail-director p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.episodes-section {
    padding: 0 15px;
}

.episodes-section h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.episodes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.episode-item {
    width: calc(25% - 8px);
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
}

.detail-actions {
    position: fixed;
    bottom: 55px;
    left: 0;
    right: 0;
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.9);
}

.action-btn {
    flex: 1;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 22px;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.action-btn.like-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.action-btn.share-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.action-btn.play-btn {
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    color: #fff;
}

.play-page {
    background: #000;
    padding-bottom: 70px;
}

.player-container {
    position: relative;
    background: #000;
}

.player-container video {
    width: 100%;
    max-height: 50vh;
    object-fit: contain;
}

.player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px 15px 10px;
}

.progress-bar {
    position: relative;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 10px;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: #fe2c55;
    border-radius: 2px;
}

.progress-point {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fe2c55;
    border-radius: 50%;
}

.controls-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.time-current, .time-total {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.control-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    border: none;
    font-size: 14px;
}

.play-info {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.play-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.play-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.related-section {
    padding: 15px;
}

.related-section h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.related-item img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.related-info h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.related-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.user-page {
    background: #0a0a0a;
    padding-bottom: 70px;
}

.user-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 30px 15px 20px;
    background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(254, 44, 85, 0.5);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-detail {
    flex: 1;
}

.user-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.user-id {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.edit-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    border: none;
    font-size: 16px;
}

.notification-btn {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
}

.vip-card {
    margin: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.vip-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    font-size: 24px;
}

.vip-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 4px;
}

.vip-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.vip-btn {
    position: relative;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.vip-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 8px;
    background: #fe2c55;
    border-radius: 10px;
    font-size: 10px;
    color: #fff;
}

.task-cards {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.task-card {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.task-gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.task-vip {
    background: linear-gradient(135deg, #9333ea, #6b21a8);
}

.task-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 20px;
}

.task-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.task-info p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.balance-card {
    margin: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.balance-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 20px;
    color: #fe2c55;
}

.amount {
    font-size: 40px;
    font-weight: 700;
    color: #fe2c55;
}

.balance-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

.withdraw-btn {
    padding: 10px 20px;
    background: rgba(254, 44, 85, 0.2);
    border-radius: 20px;
    color: #fe2c55;
    border: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.action-buttons .action-btn {
    flex: 1;
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

.action-btn.primary {
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    color: #fff;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.function-section {
    margin: 0 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.section-title {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.function-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.function-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.function-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #fff;
}

.function-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.favs-page {
    background: #0a0a0a;
    padding-bottom: 70px;
}

.favs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 100;
}

.favs-content {
    padding: 60px 15px;
}

.favs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.favs-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.favs-poster {
    position: relative;
    width: 100px;
    height: 140px;
    flex-shrink: 0;
}

.favs-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.favs-info {
    flex: 1;
    overflow: hidden;
}

.favs-title {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 8px;
}

.favs-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.favs-delete {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 44, 85, 0.2);
    border-radius: 50%;
    color: #fe2c55;
    border: none;
    font-size: 16px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.empty-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.buy-page {
    background: #0a0a0a;
    padding-bottom: 70px;
}

.buy-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 100;
}

.buy-content {
    padding: 60px 15px;
}

.vip-intro {
    margin-bottom: 20px;
}

.vip-benefits {
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.vip-benefits h2 {
    font-size: 16px;
    color: #ffd700;
    margin-bottom: 15px;
}

.vip-benefits ul {
    list-style: none !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.vip-benefits li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    float: none !important;
    width: auto !important;
}

.vip-benefits li i {
    color: #ffd700;
    font-size: 14px;
}

.price-section {
    margin-bottom: 20px;
}

.price-section h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.price-item {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.price-item.selected {
    border-color: #fe2c55;
    background: rgba(254, 44, 85, 0.1);
}

.price-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.price-item .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.price-item .currency {
    font-size: 18px;
}

.price-item .amount {
    font-size: 32px;
    font-weight: 700;
}

.period {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.discount {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    background: #fe2c55;
    border-radius: 8px;
    font-size: 10px;
    color: #fff;
}

.check-mark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #fe2c55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
}

.price-item.selected .check-mark {
    opacity: 1;
}

.payment-section {
    margin-bottom: 30px;
}

.payment-section h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.payment-item.selected {
    border-color: #fe2c55;
}

.payment-item i {
    font-size: 24px;
    margin-right: 12px;
}

.payment-item span {
    flex: 1;
    font-size: 15px;
    color: #fff;
}

.submit-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    border-radius: 25px;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-page, .register-page {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container, .register-container {
    width: 100%;
    max-width: 400px;
}

.login-header, .register-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header .logo, .register-header .logo {
    font-size: 32px;
    font-weight: 700;
    color: #fe2c55;
    margin-bottom: 10px;
}

.slogan {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.login-form, .register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-tip {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
    display: block;
}

.form-input {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0 15px;
    color: #fff;
    font-size: 15px;
}

.form-input:focus {
    outline: none;
    border-color: #fe2c55;
}

.code-group {
    display: flex;
    gap: 10px;
}

.code-input {
    flex: 1;
}

.code-btn {
    width: 100px;
    height: 48px;
    background: rgba(254, 44, 85, 0.2);
    border: 1px solid rgba(254, 44, 85, 0.5);
    border-radius: 10px;
    color: #fe2c55;
    font-size: 13px;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.checkbox input {
    width: 16px;
    height: 16px;
}

.forgot-link {
    font-size: 13px;
    color: #fe2c55;
    text-decoration: none;
}

.login-form .submit-btn, .register-form .submit-btn {
    height: 50px;
    font-size: 17px;
    margin-top: 10px;
}

.login-other {
    margin-top: 30px;
    text-align: center;
}

.login-other p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: none;
    color: #fff;
    font-size: 13px;
}

.social-btn i {
    font-size: 24px;
}

.social-btn.wechat i {
    color: #10b981;
}

.social-btn.qq i {
    color: #3b82f6;
}

.register-link, .login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.register-link a, .login-link a {
    color: #fe2c55;
    text-decoration: none;
}

/* 视频详情页样式 */
.detail-page {
    min-height: 100vh;
    background: #000;
    padding-bottom: 70px;
}

.player-section {
    position: relative;
    width: 100%;
    background: #000;
}

.player-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

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

.player-overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.player-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-views {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.player-views i {
    margin-right: 5px;
}

/* 自定义播放控制层 */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.control-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 80px;
}

.control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.time-display {
    font-size: 13px;
    color: #fff;
    min-width: 50px;
}

.control-center {
    flex: 1;
    display: flex;
    align-items: center;
}

.progress-bar {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fe2c55;
    border-radius: 50%;
    cursor: pointer;
}

.progress-bar::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #fe2c55;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.control-right {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 100px;
}

.speed-select {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.speed-select option {
    background: #111;
    color: #fff;
}

/* 评论页面样式 */
.comment-page {
    background-color: #000;
    min-height: 100vh;
    padding-bottom: 120px;
}

.comment-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-header .back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.comment-header .back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.comment-header .header-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.comment-header .header-right {
    width: 36px;
}

.comment-content {
    padding-top: 55px;
}

.comment-list {
    padding: 10px 15px;
}

.comment-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-header-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.comment-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.comment-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.comment-content-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    word-break: break-all;
}

.comment-actions {
    display: flex;
    gap: 25px;
}

.comment-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 4px 0;
}

.comment-actions .action-btn:hover,
.comment-actions .action-btn:active {
    color: #fe2c55;
    transform: scale(1.05);
}

.comment-actions .action-btn i {
    font-size: 15px;
}

.comment-actions .action-btn.up-btn.active,
.comment-actions .action-btn.down-btn.active {
    color: #fe2c55;
}

.child-comments {
    margin-top: 12px;
    padding-left: 12px;
    border-left: 2px solid rgba(254, 44, 85, 0.3);
}

.child-comment {
    padding: 10px 0;
    font-size: 13px;
    line-height: 1.5;
}

.child-comment:first-child {
    padding-top: 0;
}

.child-name {
    color: #fe2c55;
    margin-right: 8px;
    font-weight: 500;
}

.child-content {
    color: rgba(255, 255, 255, 0.8);
}

.empty-comment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.4);
}

.empty-comment i {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-comment p {
    font-size: 15px;
}

.loading-comment {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.loading-comment i {
    margin-right: 10px;
    font-size: 16px;
}

.load-more {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.load-more:hover {
    color: rgba(255, 255, 255, 0.8);
}

.comment-input-area {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 15px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reply-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.reply-tip #replyName {
    color: #fe2c55;
    font-weight: 500;
}

.cancel-reply {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.cancel-reply:hover {
    background: rgba(255, 255, 255, 0.1);
}

.input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.input-wrapper input {
    flex: 1;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 0 18px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    border-color: #fe2c55;
    background: rgba(255, 255, 255, 0.1);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    height: 44px;
    padding: 0 24px;
    background: linear-gradient(135deg, #fe2c55, #ff7bac);
    border: none;
    border-radius: 22px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(254, 44, 85, 0.3);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(254, 44, 85, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .comment-header {
        height: 45px;
        padding: 0 12px;
    }

    .comment-header .header-title {
        font-size: 17px;
    }

    .comment-header .back-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .comment-content {
        padding-top: 50px;
    }

    .comment-list {
        padding: 8px 12px;
    }

    .comment-item {
        padding: 12px 0;
    }

    .comment-avatar {
        width: 38px;
        height: 38px;
        margin-right: 10px;
    }

    .comment-name {
        font-size: 13px;
    }

    .comment-content-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .comment-actions {
        gap: 20px;
    }

    .comment-actions .action-btn {
        gap: 4px;
        font-size: 12px;
    }

    .comment-actions .action-btn i {
        font-size: 13px;
    }

    .comment-input-area {
        padding: 10px 12px;
    }

    .input-wrapper input {
        height: 40px;
        font-size: 14px;
        padding: 0 15px;
    }

    .submit-btn {
        height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }
}
.video-player::-webkit-media-controls {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.video-player::-webkit-media-controls-enclosure {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.video-player::-webkit-media-controls-panel {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.video-player::-webkit-media-controls-play-button {
    display: none !important;
}

.video-player::-webkit-media-controls-volume-slider {
    display: none !important;
}

.video-player::-webkit-media-controls-mute-button {
    display: none !important;
}

.video-player::-webkit-media-controls-timeline {
    display: none !important;
}

.video-player::-webkit-media-controls-current-time-display {
    display: none !important;
}

.video-player::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.video-player::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.video-player::-webkit-media-controls-toggle-closed-captions-button {
    display: none !important;
}

.video-player::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

/* Firefox */
.video-player::moz-range-track {
    display: none !important;
}

.video-player:-moz-full-screen {
    background: #000;
}

/* IE/Edge */
.video-player:-ms-fullscreen {
    background: #000;
}

.video-player::-ms-media-controls {
    display: none !important;
}

.video-player::-ms-media-controls-enclosure {
    display: none !important;
}

.info-section {
    padding: 20px 15px;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-header {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    flex: 1;
    margin-right: 15px;
}

.video-header .share-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.video-header .share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-meta {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.meta-item {
    margin-right: 8px;
}

.meta-divider {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.video-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.stat-item i {
    font-size: 20px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.stat-item span {
    font-size: 12px;
}

.stat-item.favorite-btn:hover i,
.stat-item.favorite-btn:active i {
    color: #ff4757;
}

.stat-item.favorite-btn .favorited {
    color: #ff4757;
    animation: favoritePulse 0.3s ease;
}

.stat-item.favorite-btn.liked i {
    color: #fe2c55;
}

.stat-item.favorite-btn.liked span {
    color: #fe2c55;
}

@keyframes favoritePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.video-desc {
    margin-bottom: 15px;
}

.video-desc h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.video-desc p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.info-row span {
    font-size: 13px;
    color: #fff;
}

.playlist-section {
    padding: 20px 15px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title h2 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.playlist-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.playlist-group {
    width: 100%;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}

.playlist-header {
    padding: 12px 15px;
    background: rgba(254, 44, 85, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-name {
    font-size: 13px;
    color: #fe2c55;
    font-weight: 500;
}

.playlist-items {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 8px;
}

.playlist-item {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    transition: all 0.3s;
}

.playlist-item:hover {
    background: rgba(254, 44, 85, 0.3);
    color: #fe2c55;
}

.empty-playlist {
    width: 100%;
    padding: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.empty-playlist i {
    font-size: 48px;
    margin-bottom: 10px;
}

.related-section {
    padding: 20px 15px;
    background: #000;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.related-item {
    text-decoration: none;
}

.related-pic {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.related-info {
    padding: 0 2px;
}

.related-title {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 3px;
}

.related-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* 播放页面样式 */
.play-page {
    min-height: 100vh;
    background: #000;
    padding-bottom: 70px;
}

.play-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 100;
}

.back-btn, .detail-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.header-title {
    flex: 1;
    text-align: center;
}

.header-title span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
    display: inline-block;
}

.play-container {
    position: relative;
    width: 100%;
    padding-top: 50px;
    background: #000;
}

.play-video {
    width: 100%;
    height: calc(100vh - 200px);
    object-fit: contain;
    background: #000;
}

.video-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-left .video-title {
    font-size: 14px;
    color: #fff;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.control-right .video-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.playlist-section {
    padding: 15px;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.player-select {
    display: flex;
    gap: 8px;
}

.player-option {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
}

.player-option.active {
    background: #fe2c55;
    color: #fff;
}

.playlist-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.playlist-group {
    width: 100%;
}

.episode-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.episode-item {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    transition: all 0.3s;
}

.episode-item.active {
    background: #fe2c55;
    color: #fff;
}

.video-info-section {
    padding: 15px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card {
    display: flex;
    gap: 15px;
}

.info-pic {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-content h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.info-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-section {
    padding: 15px;
    background: #000;
}

.section-title {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.related-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-item {
    width: calc(50% - 5px);
    text-decoration: none;
}

.related-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.related-info {
    padding: 0 2px;
}

.related-title {
    font-size: 13px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    margin-bottom: 4px;
}

.related-hits {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.page-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
}

.page-header .back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 16px;
}

.page-header .page-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.page-header .header-right {
    width: auto;
}

.usdt-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

.usdt-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.friends-content {
    padding: 15px;
}

.usdt-content {
    padding: 15px;
}

.form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #fe2c55;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-radio-group {
    display: flex;
    gap: 15px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.radio-item.active {
    border-color: #fe2c55;
    color: #fe2c55;
    background: rgba(254, 44, 85, 0.1);
}

.radio-item input[type="radio"] {
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #fe2c55, #ff6b8a);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.share-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.share-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.share-title i {
    color: #fe2c55;
}

.share-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.share-qrcode {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.share-qrcode img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.share-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-link input {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.share-link button {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #fe2c55, #ff6b6b);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.reward-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.info-title i {
    color: #ffd700;
}

.reward-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.reward-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: #ffd700;
    font-size: 18px;
}

.reward-detail {
    flex: 1;
}

.reward-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.reward-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
}

.stats-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.stats-title i {
    color: #25f4ee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #fe2c55;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.help-content {
    padding: 15px;
}

.help-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
}

.help-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    color: #3b82f6;
    font-size: 18px;
}

.help-info {
    flex: 1;
}

.help-title {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.help-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.help-item .fa-chevron-right {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.help-detail-content {
    padding: 15px;
}

.help-article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.article-content {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.article-content li {
    margin-bottom: 8px;
}

.withdraw-content {
    padding: 15px;
}

.wallet-card {
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.15) 0%, rgba(254, 44, 85, 0.05) 100%);
    border: 1px solid rgba(254, 44, 85, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-card:hover {
    background: linear-gradient(135deg, rgba(254, 44, 85, 0.2) 0%, rgba(254, 44, 85, 0.1) 100%);
    border-color: rgba(254, 44, 85, 0.5);
}

.wallet-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wallet-card-header .fa-wallet {
    font-size: 20px;
    color: #fe2c55;
}

.wallet-card-title {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.wallet-card-header .fa-chevron-right {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.wallet-card-body {
    padding: 10px 0;
}

.wallet-address {
    font-size: 14px;
    color: #fff;
    word-break: break-all;
    line-height: 1.5;
    margin-bottom: 8px;
}

.wallet-type {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

.wallet-card-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-edit {
    font-size: 12px;
    color: #fe2c55;
}

.wallet-card-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

.wallet-card-empty .fa-plus-circle {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.3);
}

.wallet-card-empty span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.amount-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amount-icon {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.amount-input {
    padding-left: 40px !important;
}

.max-btn {
    padding: 10px 15px;
    background: rgba(254, 44, 85, 0.2);
    border: 1px solid rgba(254, 44, 85, 0.5);
    border-radius: 8px;
    color: #fe2c55;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.info-value {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.tip-box {
    padding: 12px 15px;
    background: rgba(251, 191, 36, 0.1);
    border-left: 3px solid #fbbf24;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.tip-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.log-btn {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

.log-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.withdraw-log-content {
    padding: 15px;
}

.log-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.log-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.log-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.log-center {
    flex: 1;
}

.log-title {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 4px;
}

.log-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.log-right {
    text-align: right;
}

.log-amount {
    font-size: 16px;
    color: #fe2c55;
    font-weight: 600;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.pay-page {
    background: #000;
    min-height: 100vh;
}

.pay-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 100;
}

.pay-header .back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 16px;
}

.pay-header .page-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.pay-header .header-right {
    width: auto;
}

.pay-content {
    padding: 60px 15px;
}

.order-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.order-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.order-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-info:last-child {
    border-bottom: none;
}

.order-info .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.order-info .value {
    font-size: 14px;
    color: #fff;
}

.order-info .price {
    font-size: 24px;
    font-weight: bold;
    color: #fe2c55;
}

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.payment-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.payment-item:last-child {
    margin-bottom: 0;
}

.payment-item.selected {
    background: rgba(254, 44, 85, 0.1);
    border-color: #fe2c55;
}

.payment-item i {
    font-size: 24px;
    color: #fe2c55;
    margin-right: 15px;
}

.payment-item .name {
    font-size: 16px;
    color: #fff;
    flex: 1;
}

.payment-item .check {
    font-size: 20px;
    color: #fe2c55;
    display: none;
}

.payment-item.selected .check {
    display: block;
}

.order-page {
    background: #000;
    min-height: 100vh;
}

.order-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 100;
}

.order-header .back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 16px;
}

.order-header .page-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.order-header .header-right {
    width: auto;
}

.order-content {
    padding: 60px 15px;
}

.order-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.order-item .order-header-info {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-code {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.order-status {
    font-size: 14px;
    font-weight: 500;
}

.order-status.pending {
    color: #f59e0b;
}

.order-status.paid {
    color: #10b981;
}

.order-status.failed {
    color: #ef4444;
}

.order-body {
    padding: 15px;
}

.order-type {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.order-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.order-price-row .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.order-price-row .value {
    font-size: 14px;
    color: #fff;
}

.order-price-row .price {
    font-size: 18px;
    font-weight: bold;
    color: #fe2c55;
}

.order-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

.order-empty {
    text-align: center;
    padding: 60px 20px;
}

.order-empty i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.order-empty p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.order-empty a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: linear-gradient(135deg, #fe2c55, #ff6b8a);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.pagination {
    text-align: center;
    padding: 20px;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.pagination a.active {
    background: #fe2c55;
    color: #fff;
}
