/* === public/head.blade.php === */
        /* 二维码弹出样式 */
        .qrcode-container {
            position: relative;
        }

        .qrcode-popup {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            width: 200px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .qrcode-popup::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid rgba(26, 26, 26, 0.9);
        }

        /* 桌面端悬停显示 */
        @media (min-width: 993px) {
            .qrcode-container:hover .qrcode-popup {
                opacity: 1;
                visibility: visible;
            }
        }

        /* 显示二维码的类 */
        .qrcode-popup.show {
            opacity: 1;
            visibility: visible;
        }

        .qrcode-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .qrcode-content img {
            width: 150px;
            height: 150px;
            border-radius: 10px;
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .qrcode-content p {
            color: #fff;
            font-size: 0.9rem;
            margin: 0;
            text-align: center;
        }

        /* 虚线分隔线样式 */
        .divider-line {
            width: 100%;
            height: 1px;
            border-top: 1px dashed rgba(255, 255, 255, 0.3) ;
            margin: 5px 0;
        }

        .qrcode-tip {
            color: rgba(255, 255, 255, 0.4) !important;
            font-size: 0.8rem;
        }

        @media (max-width: 992px) {
            .qrcode-popup {
                left: 0;
                transform: none;
                width: 180px;
            }

            .qrcode-popup::before {
                left: 20px;
            }

            .qrcode-content img {
                width: 140px;
                height: 140px;
            }
        }

/* === login.blade.php === */
        /* 登录页面特定样式 */
        .login-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background-color: #0a0a0a;
            margin-bottom: 0; /* 确保没有底部边距 */
        }

        /* 背景动效样式 */
        .login-section .animated-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .login-section .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.2);
            animation: float-particle 15s infinite ease-in-out;
            z-index: 1;
        }

        @keyframes float-particle {
        0% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0;
            }
        10% {
                opacity: 0.8;
            }
        50% {
                transform: translateY(-100px) translateX(100px) scale(1.5);
                opacity: 0.4;
            }
        90% {
                opacity: 0.2;
            }
        100% {
                transform: translateY(-200px) translateX(200px) scale(0.8);
                opacity: 0;
            }
        }

        .login-section .gradient-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, rgba(0, 230, 118, 0) 70%);
            animation: pulse 8s infinite alternate;
            z-index: 0;
        }

        @keyframes pulse {
        0% {
                transform: scale(1);
                opacity: 0.3;
            }
        50% {
                transform: scale(1.2);
                opacity: 0.5;
            }
        100% {
                transform: scale(1);
                opacity: 0.3;
            }
        }

        .login-section .network-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 230, 118, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 230, 118, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
            opacity: 0.2;
            animation: grid-move 20s linear infinite;
        }

        @keyframes grid-move {
        0% {
                background-position: 0 0;
            }
        100% {
                background-position: 50px 50px;
            }
        }

        .login-section .login-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .login-section .login-devices {
            flex: 0 0 45%;
            position: relative;
        }

        .login-section .login-devices img {
            max-width: 100%;
            height: auto;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.3));
            animation: float 6s ease-in-out infinite;
        }

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

        .login-section .login-form-container {
            flex: 0 0 45%;
            padding: 40px;
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
            animation: form-appear 1s ease-out forwards;
        }

        @keyframes form-appear {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
        }

        .login-section .login-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #fff;
            text-align: center;
            position: relative;
        }

        .login-section .login-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #00E676;
            border-radius: 3px;
        }

        .login-section .form-group { margin-bottom: 25px; position: relative; }

        .login-section .form-control {
            height: 60px;
            border-radius: 30px;
            padding-left: 60px;
            background-color: rgba(26, 26, 26, 0.8);
            border: 1px solid #333;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        /* 调整placeholder颜色 */
        .login-section .form-control::placeholder { color: rgba(255, 255, 255, 0.7); opacity: 1; }
        .login-section .form-control::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.7); }
        .login-section .form-control::-moz-placeholder { color: rgba(255, 255, 255, 0.7); }
        .login-section .form-control:-ms-input-placeholder { color: rgba(255, 255, 255, 0.7); }

        .login-section .form-control:focus {
            background-color: rgba(26, 26, 26, 0.9);
            border-color: #00E676;
            box-shadow: 0 0 0 0.25rem rgba(0, 230, 118, 0.25);
            color: #fff;
        }

        .login-section .form-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #00E676;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-section .form-icon svg {
            width: 24px;
            height: 24px;
            filter: drop-shadow(0 0 2px rgba(0, 230, 118, 0.5));
        }

        .login-section .password-toggle {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
            cursor: pointer;
            background: none;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            transition: all 0.2s ease;
        }

        .login-section .password-toggle:hover { color: #00E676; }
        .login-section .password-toggle svg { width: 24px; height: 24px; transition: all 0.2s ease; }
        .login-section .password-toggle:hover svg path { stroke: #00E676; }

        .login-section .btn-login {
            height: 60px;
            border-radius: 30px;
            background-color: #00E676;
            border: none;
            color: #f5f5f5;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            margin-top: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .login-section .btn-login::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .login-section .btn-login:hover {
            background-color: #00c853;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
        }
        .login-section .btn-login:hover::before { left: 100%; }

        .login-section .login-links {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .login-section .login-link {
            color: #00E676;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .login-section .login-link:hover { color: #00c853; text-decoration: underline; }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .login-section .login-container { flex-direction: column; align-items: center; }
            .login-section .login-devices { display: none; flex: 0 0 100%; margin-bottom: 40px; max-width: 400px; }
            .login-section .login-form-container { flex: 0 0 100%; max-width: 500px; width: 100%; }
        }

        /* 手机版隐藏左侧图片 */
        @media (max-width: 768px) {
            .login-section {
                padding: 80px 0;
                min-height: auto;
                justify-content: center;
                height: 100vh;
            }
            .login-section .login-devices { display: none; }
            .login-section .login-form-container { flex: 0 0 100%; max-width: 100%; padding: 30px 20px; margin: 60px 15px; }
            .login-section .login-title { font-size: 2rem; margin-bottom: 30px; }
            .login-section .form-control { height: 55px; }
            .login-section .btn-login { height: 55px; }
        }

        /* 页脚连接样式 */
        .login-section #footer-container {
            margin-top: 0; /* 移除页脚顶部边距 */
            background-color: #0a0a0a; /* 与登录部分背景颜色相同 */
        }

        /* 注册提示样式 */
        .register-info-container,
        .login-section .forgot-password-container {
            display: none;
            flex: 0 0 45%;
            padding: 40px;
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
            animation: form-appear 1s ease-out forwards;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .register-info-title,
        .login-section .forgot-password-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #fff;
            text-align: center;
            position: relative;
        }
        .register-info-title::after,
        .login-section .forgot-password-title::after {
            content: '';
            position: absolute;
            bottom: -10px; left: 50%;
            transform: translateX(-50%);
            width: 60px; height: 3px;
            background: #00E676; border-radius: 3px;
        }

        .register-info-text,
        .login-section .forgot-password-text {
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .register-buttons,
        .login-section .forgot-password-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 20px;
        }

        .login-section .btn-download {
            height: 60px;
            border-radius: 30px;
            background-color: #00E676;
            border: none;
            color: #f5f5f5;
            font-weight: 600;
            font-size: 1.1rem;
            width: 80%;
            max-width: 400px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .login-section .btn-download::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }
        .login-section .btn-download:hover {
            background-color: #00c853;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
        }
        .login-section .btn-download:hover::before { left: 100%; }

        .login-section .back-to-login {
            color: #00E676;
            text-decoration: none;
            font-size: 1rem;
            margin-top: 25px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .login-section .back-to-login:hover { color: #00c853; text-decoration: underline; }

        @media (max-width: 768px) {
            .register-info-container,
            .login-section .forgot-password-container {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 30px 20px;
                margin: 60px 15px;
            }
            .register-info-title,
            .login-section .forgot-password-title { font-size: 2rem; margin-bottom: 20px; }
            .register-info-text,
            .login-section .forgot-password-text { font-size: 1rem; }
            .login-section .btn-download { height: 50px; font-size: 1rem; width: 100%; }
            .login-section .back-to-login { margin-top: 20px; }
        }

/* === member.blade.php === */
        /* 会员中心页面特定样式 */
        .member-section {
            min-height: 100vh;
            background-color: #0a0a0a;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .member-section .member-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
            position: relative;
            z-index: 1;
        }

        .member-section .member-layout {
            display: flex;
            gap: 20px;
            position: relative;
        }

        /* 侧边栏样式 */
        .member-section .member-sidebar {
            width: 250px;
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            height: fit-content;
            position: fixed;
            top: 100px;
            z-index: 10;
        }

        .member-section .user-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }

        .member-section .user-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: #000;
            font-weight: 600;
            border: 3px solid rgba(0, 230, 118, 0.3);
        }

        .member-section .user-info { flex: 1; }

        .member-section .user-name {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .member-section .user-status {
            display: flex;
            align-items: center;
            background: rgba(0, 230, 118, 0.1);
            padding: 5px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .member-section .status-icon {
            width: 10px;
            height: 10px;
            background: var(--primary-color);
            border-radius: 50%;
            margin-right: 5px;
        }

        .member-section .status-text {
            color: var(--primary-color);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .member-section .menu-list { list-style: none; padding: 0; margin: 0; }
        .member-section .menu-item { margin-bottom: 10px; }

        .member-section .menu-link {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .member-section .menu-link:hover, .member-section .menu-link.active {
            background: rgba(0, 230, 118, 0.1);
            color: var(--primary-color);
        }

        .member-section .menu-icon { margin-right: 10px; width: 20px; height: 20px; }
        .member-section .menu-text { font-size: 1rem; }

        .member-section .expiry-info {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .member-section .expiry-title { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 5px; }
        .member-section .expiry-date { font-size: 1rem; color: #fff; margin-bottom: 10px; }
        .member-section .time-left { font-size: 0.9rem; color: var(--primary-color); }

        /* 主内容区域样式 */
        .member-section .member-content { flex: 1; margin-left: 270px; }

        .member-section .content-card {
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }

        .member-section .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .member-section .card-title { font-size: 1.5rem; color: #fff; font-weight: 600; margin: 0; }
        .member-section .subscription-info { display: flex; align-items: center; }

        .member-section .subscription-badge {
            background: rgba(0, 230, 118, 0.1);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        .member-section .badge-icon { margin-right: 5px; }

        /* 会员类型选择 */
        .member-section .membership-types { display: flex; gap: 15px; margin-bottom: 30px; }

        .member-section .membership-type {
            flex: 1;
            background: rgba(26, 26, 26, 0.5);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .member-section .membership-type:hover { background: rgba(26, 26, 26, 0.8); border-color: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }
        .member-section .membership-type.selected { background: rgba(0, 230, 118, 0.1); border-color: var(--primary-color); }

        .member-section .membership-icon {
            width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; margin-right: 15px; flex-shrink: 0;
        }

        .member-section .platinum-icon {
            background: linear-gradient(135deg, #e6e6e6, #c0c0c0);
            color: #333;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            position: relative; overflow: hidden;
        }
        .member-section .platinum-icon::before {
            content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
            transform: rotate(45deg); z-index: 0;
        }
        .member-section .platinum-icon svg { position: relative; z-index: 1; }

        .member-section .bronze-icon {
            background: linear-gradient(135deg, #cd7f32, #a05a2c);
            color: #fff;
            box-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
            position: relative; overflow: hidden;
        }
        .member-section .bronze-icon::before {
            content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
            background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 100%);
            transform: rotate(45deg); z-index: 0;
        }
        .member-section .bronze-icon svg { position: relative; z-index: 1; }

        .member-section .membership-name { font-size: 1.3rem; color: #fff; font-weight: 600; margin-bottom: 5px; }
        .member-section .membership-desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
        .member-section .membership-info { flex: 1; }
        .member-section .membership-price { font-size: 1rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 15px; }
        .member-section .membership-features { text-align: left; margin-top: 20px; }
        .member-section .membership-feature { display: flex; align-items: center; margin-bottom: 10px; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
        .member-section .feature-check { color: var(--primary-color); margin-right: 8px; flex-shrink: 0; }

        /* 会员套餐选择 */
        .member-section .plan-options {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 15px; margin-bottom: 30px;
        }
        .member-section .plan-options.hidden { display: none; }

        .member-section .plan-option {
            background: rgba(26, 26, 26, 0.5);
            border-radius: 15px; padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease; cursor: pointer; position: relative; overflow: hidden;
        }
        .member-section .plan-option:hover { background: rgba(26, 26, 26, 0.8); border-color: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }
        .member-section .plan-option.selected { background: rgba(0, 230, 118, 0.1); border-color: var(--primary-color); }

        .member-section .plan-discount {
            position: absolute; top: 10px; right: 10px;
            background: var(--primary-color); color: #000;
            font-size: 0.8rem; font-weight: 600; padding: 3px 8px; border-radius: 10px;
        }
        .member-section .plan-duration { font-size: 1.2rem; color: #fff; margin-bottom: 10px; font-weight: 500; text-align: center; }
        .member-section .plan-price { font-size: 1.5rem; color: #fff; margin-bottom: 5px; font-weight: 600; text-align: center; }
        .member-section .plan-daily { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); text-align: center; margin-bottom: 0; }

        /* 订单信息 */
        .member-section .order-info { margin-top: 30px; }
        .member-section .order-title { font-size: 1.2rem; color: #fff; margin-bottom: 20px; font-weight: 600; }
        .member-section .order-details { display: flex; justify-content: space-between; margin-bottom: 30px; }
        .member-section .order-item { flex: 1; }
        .member-section .order-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 5px; }
        .member-section .order-value { font-size: 1.1rem; color: #fff; font-weight: 500; }

        /* 支付方式 */
        .member-section .payment-methods { margin-top: 30px; }
        .member-section .payment-title { font-size: 1.2rem; color: #fff; margin-bottom: 20px; font-weight: 600; }
        .member-section .payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }

        .member-section .payment-option {
            background: rgba(26, 26, 26, 0.5);
            border-radius: 15px; padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease; cursor: pointer; display: flex; align-items: center;
        }
        .member-section .payment-option:hover { background: rgba(26, 26, 26, 0.8); border-color: rgba(255, 255, 255, 0.1); }
        .member-section .payment-option.selected { background: rgba(0, 230, 118, 0.1); border-color: var(--primary-color); }

        .member-section .payment-radio {
            width: 20px; height: 20px; border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            margin-right: 10px; position: relative; flex-shrink: 0;
        }
        .member-section .payment-option.selected .payment-radio { border-color: var(--primary-color); }
        .member-section .payment-option.selected .payment-radio::after {
            content: ''; position: absolute; width: 10px; height: 10px; background: var(--primary-color);
            border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%);
        }

        .member-section .payment-logo { height: 30px; margin-right: 10px; border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
        .member-section .payment-option.selected .payment-logo { filter: drop-shadow(0 0 3px rgba(0, 230, 118, 0.5)); }
        .member-section .payment-name { font-size: 1rem; color: #fff; }

        /* 支付按钮 */
        .member-section .payment-action { text-align: center; margin-top: 30px; }
        .member-section .payment-btn {
            background: var(--primary-color); color: #000; font-weight: 600; padding: 12px 40px;
            border-radius: 30px; border: none; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease;
        }
        .member-section .payment-btn:hover { background: #00ff9d; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3); }

        /* 客服信息 */
        .member-section .support-card { display: flex; align-items: center; padding: 20px; }
        .member-section .support-icon {
            width: 50px; height: 50px; background: rgba(0, 230, 118, 0.1);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            margin-right: 20px; color: var(--primary-color);
        }
        .member-section .support-info { flex: 1; }
        .member-section .support-title { font-size: 1.1rem; color: #fff; margin-bottom: 5px; font-weight: 500; }
        .member-section .support-text { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 0; }

        /* 背景效果 */
/* removed (conflicts with style.css): .bg-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at top right, rgba(0, 230, 118, 0.1), transparent 70%); z-index: 0;
        } */
/* removed (conflicts with style.css): .green-glow { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; } */
/* removed (conflicts with style.css): .glow-1 { top: 20%; right: 10%; width: 300px; height: 300px; background: rgba(0, 230, 118, 0.15); } */
/* removed (conflicts with style.css): .glow-2 { bottom: 10%; left: 5%; width: 250px; height: 250px; background: rgba(0, 230, 118, 0.1); } */

        /* 响应式调整 */
        @media (max-width: 992px) {
            .member-section .member-layout { flex-direction: column; }
            .member-section .member-sidebar { width: 100%; position: static; margin-bottom: 20px; }
            .member-section .member-content { margin-left: 0; }
            .member-section .membership-types { flex-direction: row; }
            .member-section .plan-options { grid-template-columns: repeat(2, 1fr); }
            .member-section .payment-options { grid-template-columns: repeat(2, 1fr); }
            .member-section .comparison-header, .member-section .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; }
        }

        /* 移动端会员卡片样式 */
        @media (max-width: 768px) {
            .member-section .member-container { padding: 15px 10px; }
            .member-section .content-card { padding: 20px 15px; border-radius: 10px; margin-bottom: 15px; }
            .member-section .card-header { padding-bottom: 15px; margin-bottom: 15px; }

            .member-section .member-sidebar {
                padding: 15px; display: flex; flex-direction: column; align-items: center;
                background: rgba(26, 26, 26, 0.7); backdrop-filter: blur(10px); border-radius: 10px;
                border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); margin-bottom: 15px;
            }

            .member-section .user-profile { width: 100%; padding-bottom: 2px; margin-bottom: 2px; border-bottom: unset; flex-direction: row; justify-content: flex-start; align-items: center; }
            .member-section .user-avatar { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 0; margin-right: 15px; border: 2px solid rgba(0, 230, 118, 0.3); }
            .member-section .user-info { flex: 1; }
            .member-section .user-name { font-size: 1rem; margin-bottom: 5px; color: #fff; }
            .member-section .user-status { padding: 3px 8px; border-radius: 12px; margin-bottom: 0; }
            .member-section .menu-list { display: none; }

            .member-section .expiry-info {
                width: 100%; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.1);
                display: flex; justify-content: space-between; align-items: center;
            }
            .member-section .expiry-title { font-size: 0.8rem; margin-bottom: 0; color: rgba(255, 255, 255, 0.5); }
            .member-section .expiry-date { font-size: 0.9rem; margin-bottom: 0; color: #fff; }
            .member-section .time-left { font-size: 0.8rem; background: rgba(0, 230, 118, 0.1); padding: 3px 8px; border-radius: 12px; color: var(--primary-color); }

            .member-section .membership-card { background: rgba(26, 26, 26, 0.5); border-radius: 10px; padding: 15px; margin-bottom: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
            .member-section .membership-types { gap: 10px; margin-bottom: 0; flex-direction: row; justify-content: space-between; }
            .member-section .membership-type { padding: 12px 8px; border-radius: 10px; flex-direction: column; align-items: center; text-align: center; min-width: 48%; max-width: 48%; margin-bottom: 0; background: rgba(26, 26, 26, 0.3); }
            .member-section .membership-icon { width: 28px; height: 28px; margin-right: 0; margin-bottom: 6px; }
            .member-section .membership-info { display: flex; flex-direction: column; align-items: center; width: 100%; }
            .member-section .membership-name { font-size: 0.95rem; margin-bottom: 0; white-space: nowrap; }
            .member-section .membership-desc { display: none; }

            .member-section .plan-section { margin-top: 20px; }
            .member-section .section-title { font-size: 1.1rem; color: #fff; margin-bottom: 15px; font-weight: 600; }

            .member-section .plan-options { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; }
            .member-section .plan-option { padding: 10px 8px; border-radius: 10px; display: flex; flex-direction: column; align-items: center; text-align: center; }
            .member-section .plan-discount { position: absolute; top: 3px; left: 3px; width: 50px; font-size: 0.65rem; padding: 2px 4px; border-radius: 6px; }
            .member-section .plan-duration { font-size: 1rem; margin-bottom: 3px; margin-top: 3px; }
            .member-section .plan-price { font-size: 1.1rem; margin-bottom: 2px; }
            .member-section .plan-daily { font-size: 0.7rem; margin-bottom: 0; color: rgba(255, 255, 255, 0.5); }

            .member-section .order-info { margin-top: 20px; }
            .member-section .order-title { font-size: 1.1rem; margin-bottom: 15px; }
            .member-section .order-details { flex-direction: row; justify-content: space-between; margin-bottom: 20px; }
            .member-section .order-item { margin-bottom: 0; }
            .member-section .order-label { font-size: 0.8rem; margin-bottom: 3px; }
            .member-section .order-value { font-size: 1rem; }

            .member-section .payment-methods { margin-top: 20px; }
            .member-section .payment-title { font-size: 1.1rem; margin-bottom: 15px; }
            .member-section .payment-options { grid-template-columns: repeat(1, 1fr); gap: 10px; margin-bottom: 20px; }
            .member-section .payment-option { padding: 12px; }
            .member-section .payment-radio { width: 18px; height: 18px; }
            .member-section .payment-logo { height: 28px; }
            .member-section .payment-name { font-size: 0.9rem; }
            .member-section .payment-action { margin-top: 20px; }
            .member-section .payment-btn { padding: 10px 30px; font-size: 1rem; }

            .member-section .support-card { padding: 15px; }
            .member-section .support-icon { width: 40px; height: 40px; margin-right: 15px; }
            .member-section .support-title { font-size: 1rem; }
            .member-section .support-text { font-size: 0.8rem; }
        }

        @media (max-width: 576px) {
            .member-section .membership-types { flex-direction: row; justify-content: space-between; }
            .member-section .membership-card { padding: 10px; }
            .member-section .membership-type { padding: 10px 5px; min-width: 48%; max-width: 48%; }
            .member-section .membership-icon { width: 24px; height: 24px; margin-bottom: 4px; }
            .member-section .membership-name { font-size: 0.85rem; }
            .member-section .plan-section { margin-top: 15px; }
            .member-section .section-title { font-size: 1rem; margin-bottom: 10px; }
            .member-section .plan-options { grid-template-columns: repeat(2, 1fr); gap: 6px; }
            .member-section .plan-option { padding: 8px 5px; }
            .member-section .plan-duration { font-size: 0.9rem; margin-bottom: 2px; margin-top: 2px; }
            .member-section .plan-price { font-size: 1rem; }
            .member-section .plan-daily { font-size: 0.65rem; }
            .member-section .card-header { flex-direction: column; align-items: flex-start; }
            .member-section .subscription-info { margin-top: 10px; }
        }

        /* 会员类型区别表格样式 */
        .member-section .membership-comparison { margin-top: 30px; margin-bottom: 30px; }
        .member-section .comparison-title { font-size: 1.5rem; color: #fff; margin-bottom: 15px; text-align: center; }
        .member-section .comparison-desc { color: rgba(255, 255, 255, 0.7); text-align: center; margin-bottom: 25px; line-height: 1.6; }
        .member-section .comparison-table { border-radius: 10px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 20px; }

        .member-section .comparison-header {
            display: grid; grid-template-columns: 2fr 1fr 1fr;
            background: rgba(0, 0, 0, 0.3); padding: 15px;
        }
        .member-section .comparison-header > div { color: #fff; font-weight: 600; text-align: center; }
        .member-section .comparison-header > div:first-child { text-align: left; }

        .member-section .comparison-row {
            display: grid; grid-template-columns: 2fr 1fr 1fr;
            padding: 12px 15px; border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .member-section .comparison-row:nth-child(odd) { background: rgba(0, 0, 0, 0.1); }

        .member-section .comparison-feature { color: rgba(255, 255, 255, 0.9); text-align: left; }
        .member-section .comparison-platinum, .member-section .comparison-bronze {
            color: rgba(255, 255, 255, 0.7); text-align: center; display: flex; align-items: center; justify-content: center;
        }
        .member-section .comparison-platinum { color: #e6e6e6; }
        .member-section .comparison-bronze { color: #cd7f32; }

        .member-section .comparison-note { background: rgba(0, 230, 118, 0.1); border-radius: 10px; padding: 15px; margin-top: 20px; }
        .member-section .comparison-note p { color: rgba(255, 255, 255, 0.8); margin: 0; text-align: center; font-size: 0.9rem; }



        /* 電腦顯示在左上角 */
        @media (min-width: 768px) {
            .member-section .gift-banner {
                top: 10px;
                left: 10px;
            }
        }

        /* 手機顯示在右上角 */
        @media (max-width: 767px) {
            .member-section .gift-banner {
                top: 10px;
                right: 10px;
            }
        }

        /* 滾動內容 */
        .member-section .marquee {
            width: 100%;
            overflow: hidden;
        }

        .member-section .marquee-content {
            font-size: 12px;
            display: inline-block;
            white-space: nowrap;
            animation: scrollText 4s linear infinite;
        }

        @keyframes scrollText {
        0% {
                transform: translateX(100%);
            }

        100% {
                transform: translateX(-100%);
            }
        }


/* === promotion.blade.php === */
        /* 推广赚现金页面特定样式 */
        .promotion-section {
            padding: 120px 0 80px;
            min-height: 100vh;
            background-color: #0a0a0a;
            position: relative;
            overflow: hidden;
        }

        .promotion-section .promotion-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }

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

        .promotion-section .promotion-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .promotion-section .promotion-title .highlight {
            color: var(--primary-color);
        }

        .promotion-section .promotion-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

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

        .promotion-section .promotion-text {
            flex: 1;
            padding-right: 50px;
        }

        .promotion-section .promotion-steps {
            margin-bottom: 30px;
        }

        .promotion-section .promotion-step {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: flex-start;
        }

        .promotion-section .step-number {
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: 600;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .promotion-section .step-content {
            flex: 1;
        }

        .promotion-section .promotion-features {
            margin-bottom: 30px;
        }

        .promotion-section .promotion-feature {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .promotion-section .feature-icon {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            color: var(--primary-color);
        }

        .promotion-section .feature-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .promotion-section .promotion-cta {
            margin-top: 30px;
        }

        .promotion-section .promotion-btn {
            display: inline-block;
            background: var(--primary-color);
            color: #000;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
        }

        .promotion-section .promotion-btn:hover {
            background: #00ff9d;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
        }

        .promotion-section .promotion-qr {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .promotion-section .qr-container {
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            max-width: 400px;
        }

        .promotion-section .qr-code {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        .promotion-section .qr-logo {
            width: 80px;
            height: auto;
            margin-bottom: 10px;
        }

        .promotion-section .qr-username {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .promotion-section .qr-instruction {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .promotion-section .promotion-faq {
            margin-top: 80px;
        }

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

        .promotion-section .faq-title {
            font-size: 2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        .promotion-section .faq-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .promotion-section .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .promotion-section .faq-item {
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .promotion-section .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .promotion-section .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .promotion-section .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
            margin: 0;
        }

        .promotion-section .faq-arrow {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            transition: transform 0.3s ease;
        }

        .promotion-section .faq-arrow.active {
            transform: rotate(180deg);
        }

        .promotion-section .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .promotion-section .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .promotion-section .faq-answer p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            line-height: 1.6;
        }

        /* 背景效果 */
/* removed (conflicts with style.css): .bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(0, 230, 118, 0.1), transparent 70%);
            z-index: 0;
        } */

/* removed (conflicts with style.css): .green-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
        } */

/* removed (conflicts with style.css): .glow-1 {
            top: 20%;
            right: 10%;
            width: 300px;
            height: 300px;
            background: rgba(0, 230, 118, 0.15);
        } */

/* removed (conflicts with style.css): .glow-2 {
            bottom: 10%;
            left: 5%;
            width: 250px;
            height: 250px;
            background: rgba(0, 230, 118, 0.1);
        } */

        /* 响应式调整 */
        @media (max-width: 992px) {
            .promotion-section .promotion-content {
                flex-direction: column;
            }

            .promotion-section .promotion-text {
                padding-right: 0;
                margin-bottom: 50px;
                text-align: center;
            }

            .promotion-section .promotion-step {
                justify-content: center;
            }

            .promotion-section .promotion-feature {
                justify-content: center;
            }

            .promotion-section .promotion-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .promotion-section {
                padding: 100px 0 60px;
            }

            .promotion-section .promotion-title {
                font-size: 2rem;
            }

            .promotion-section .promotion-description {
                font-size: 1rem;
            }

            .promotion-section .qr-container {
                padding: 20px;
            }

            .promotion-section .faq-title {
                font-size: 1.5rem;
            }
        }

/* === blog.blade.php === */
        /* 博客页面特定样式 */
        .blog-section {
            padding: 120px 0 80px;
            min-height: 100vh;
            background-color: #0a0a0a;
            position: relative;
            overflow: hidden;
        }

        .blog-section .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

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

        .blog-section .blog-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            display: inline-block;
        }

        .blog-section .blog-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #00E676;
            border-radius: 3px;
        }

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

        .blog-section .blog-card {
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-section .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        /* 全宽博客卡片样式 */
        .blog-section .blog-card-full {
            grid-column: 1 / -1;
            display: flex;
            flex-direction: row;
            max-height: 300px;
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .blog-section .blog-card-full .blog-card-image {
            flex: 0 0 40%;
            height: 100%;
        }

        .blog-section .blog-card-full .blog-card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 30px;
        }

        .blog-section .blog-card-full .blog-card-title {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .blog-section .blog-card-full .blog-card-text {
            -webkit-line-clamp: 4;
            margin-bottom: 30px;
        }

        .blog-section .blog-card-full:hover {
            transform: translateY(-8px);
        }

        .blog-section .blog-card-full .blog-card-footer {
            margin-top: auto;
            padding-top: 20px;
        }

        .blog-section .blog-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .blog-section .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-section .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }

        .blog-section .blog-card-content {
            padding: 20px;
        }

        .blog-section .blog-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #fff;
            line-height: 1.3;
        }

        .blog-section .blog-card-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-section .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .blog-section .blog-card-date {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        .blog-section .blog-card-likes {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .blog-section .blog-card-likes svg {
            margin-right: 5px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            transition: fill 0.3s ease, stroke 0.3s ease;
        }

        .blog-section .blog-card-likes.active svg {
            fill: #00E676;
            stroke: #00E676;
        }

        .blog-section .blog-card-likes:hover {
            color: #00E676;
            cursor: pointer;
        }

        /* 背景效果 */
/* removed (conflicts with style.css): .bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(0, 230, 118, 0.1), transparent 70%);
            z-index: 0;
        } */

/* removed (conflicts with style.css): .green-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
        } */

/* removed (conflicts with style.css): .glow-1 {
            top: 20%;
            right: 10%;
            width: 300px;
            height: 300px;
            background: rgba(0, 230, 118, 0.15);
        } */

/* removed (conflicts with style.css): .glow-2 {
            bottom: 10%;
            left: 5%;
            width: 250px;
            height: 250px;
            background: rgba(0, 230, 118, 0.1);
        } */

        /* 响应式调整 */
        @media (max-width: 992px) {
            .blog-section .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blog-section .blog-card-full {
                flex-direction: column;
                max-height: none;
            }

            .blog-section .blog-card-full .blog-card-image {
                flex: 0 0 200px;
                width: 100%;
            }

            .blog-section .blog-card-full .blog-card-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .blog-section .blog-grid {
                grid-template-columns: 1fr;
            }

            .blog-section {
                padding: 100px 0 60px;
            }

            .blog-section .blog-title {
                font-size: 2rem;
            }

            .blog-section .blog-card-full .blog-card-title {
                font-size: 1.6rem;
            }
        }

/* === activity.blade.php === */
        .activity-section {
            --primary-color: #6c5ce7;
            --secondary-color: #dfe6e9;
            --accent-color: #ff7675;
            --bg-color: #1e1e2e;
            --card-bg: #2d2d42;
            --text-color: #ffffff;
            --text-sub: #b2b2b2;
            --border-radius: 12px;
        }
        .activity-section.gold-theme {
            --primary-color: #ff7675;
            --secondary-color: #dfe6e9;
        }

        .activity-section * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        .activity-section {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            padding-bottom: 150px;
            transition: --primary-color 0.3s;
            min-height: 100vh; /* 內容短時也填滿，避免下半截露出 body 黑底 */
        }

        .activity-section .header {
            padding: 20px;
            text-align: center;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 30, 46, 0) 100%);
            position: relative;
        }

        .activity-section .tabs {
            display: flex;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 25px;
            padding: 4px;
            margin: 10px auto 20px;
            max-width: 300px;
            position: relative;
            overflow: visible;
        }

        .activity-section .tab-item {
            flex: 1;
            text-align: center;
            padding: 8px 0;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            color: var(--text-sub);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1;
            position: relative;
        }

        .activity-section .tab-item.active {
            color: #fff;
            background-color: var(--primary-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .activity-section.gold-theme .tab-item.active {
            color: #333;
            background-color: #cd7f32;
        }

        /* 钻石会员 Tab 的诱导特效 */
        .activity-section .tab-item.diamond-tab {
            position: relative;
            z-index: 2;
            color: #6c5ce7 !important;
        }

        /* 选中时文字变白 */
        .activity-section .tab-item.diamond-tab.active {
            color: #fff !important;
        }

        .activity-section.gold-theme .tab-item.diamond-tab {
            background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%) no-repeat;
            background-size: 200% 100%;
            background-position: -100% 0;
            animation: bgShine 3s infinite ease-in-out;
        }

        @keyframes bgShine {
        0% { background-position: 200% 0; }
        20% { background-position: -100% 0; }
        100% { background-position: -100% 0; }
        }

        .activity-section.gold-theme .tab-item.diamond-tab::before {
            content: none;
            display: none;
        }

        .activity-section .tab-item.diamond-tab::after {
            content: 'Hot';
            position: absolute;
            top: -8px;
            right: 0;
            background: #ff7675;
            color: white;
            font-size: 0.6rem;
            padding: 2px 6px;
            border-radius: 8px;
            border: 1px solid #fff;
            transform: scale(0.8);
            opacity: 1;
            transition: opacity 0.3s;
            z-index: 10;
        }

        .activity-section:not(.gold-theme) .tab-item.diamond-tab::after {
            display: none;
        }

        @keyframes shine {
        0% { left: -100%; }
        20% { left: 200%; }
        100% { left: 200%; }
        }

        .activity-section .vip-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .activity-section.gold-theme .vip-badge {
            color: #000;
        }

        .activity-section .title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .activity-section .features {
            display: flex;
            justify-content: center;
            gap: 15px;
            font-size: 0.8rem;
            color: var(--secondary-color);
            flex-wrap: wrap;
        }

        .activity-section .feature-item {
            display: flex;
            align-items: center;
            gap: 4px;
            transition: opacity 0.3s, transform 0.3s;
        }

        .activity-section .feature-item.hidden {
            opacity: 0.3;
            text-decoration: line-through;
        }

        .activity-section .feature-item svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* 倒计时区域 */
        .activity-section .countdown-banner {
            margin: 10px 15px;
            padding: 15px;
            background: rgba(255, 118, 117, 0.1);
            border: 1px solid var(--accent-color);
            border-radius: var(--border-radius);
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(255, 118, 117, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0); }
        }

        .activity-section .countdown-title {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .activity-section .timer {
            display: flex;
            gap: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            font-family: monospace;
        }

        .activity-section .timer-block {
            background: var(--accent-color);
            color: white;
            padding: 4px 8px;
            border-radius: 6px;
            min-width: 36px;
            text-align: center;
        }

        .activity-section .timer-label {
            font-size: 0.7rem;
            color: var(--text-sub);
            text-align: center;
            margin-top: 2px;
        }

        .activity-section .plans-container {
            padding: 0 15px;
            /* 底部留白：剛好貼住 bottom-bar，沒警告完全不浪費空間 */
            padding-bottom: 110px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            min-height: 570px;
        }

        .activity-section .plan-card {
            background-color: var(--card-bg);
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            padding: 20px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            overflow: hidden;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
        }

        .activity-section .plan-card.active {
            border-color: var(--primary-color);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), var(--card-bg));
            border-color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.05);


        }

        .activity-section .plan-card.best-value {
            border-color: var(--primary-color);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), var(--card-bg));
        }

        .activity-section .tag {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-color);
            color: white;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-bottom-left-radius: 10px;
            font-weight: bold;
        }

        .activity-section .tag.best {
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
        }

        .activity-section .plan-info {
            display: flex;
            flex-direction: column;
        }

        .activity-section .plan-duration {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .activity-section .plan-daily {
            font-size: 0.8rem;
            color: var(--text-sub);
        }

        .activity-section .plan-price-box {
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .activity-section .plan-price {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .activity-section .plan-original-price {
            font-size: 0.8rem;
            color: var(--text-sub);
            text-decoration: line-through;
            margin-top: 2px;
        }

        .activity-section .save-badge {
            font-size: 0.7rem;
            color: #2ecc71;
            border: 1px solid #2ecc71;
            padding: 2px 6px;
            border-radius: 4px;
            margin-top: 4px;
            display: inline-block;
        }

        .activity-section .bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1e1e2e; /* 移除 backdrop-filter，iOS WKWebView 息屏恢復後會殘留遮罩擋住點擊 */
            padding: 15px 20px;
            padding-bottom: calc(30px + env(safe-area-inset-bottom)); /* 适配全面屏 iPhone 底部 */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-end; /* 按鈕固定貼底，避免警告把它擠到中間 */
            justify-content: space-between;
            gap: 12px;
            z-index: 100;
        }
        .activity-section .bottom-bar .total-info { flex: 1; min-width: 0; }
        .activity-section .bottom-bar .pay-btn { flex-shrink: 0; }

        .activity-section .total-info {
            display: flex;
            flex-direction: column;
        }

        .activity-section .total-label {
            font-size: 0.8rem;
            color: var(--text-sub);
        }
        .activity-section .total-buy {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
            /*font-size: 0.8rem;*/
            color: var(--text-sub);
        }
        .activity-section .total-pay,
        .ppview-section  .total-pay {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 6px;
            color: #ffd166;
            background: rgba(255, 196, 0, 0.12);
            border-left: 3px solid #ffd166;
            padding: 6px 10px;
            border-radius: 4px;
            line-height: 1.4;
        }
        @media (max-width: 480px) {
            .activity-section .total-pay,
            .ppview-section  .total-pay {
                font-size: 11px;
                padding: 5px 8px;
                margin-bottom: 4px;
            }
        }
        .activity-section .total-type {
            font-size: 15px;
            font-weight: 300;
            margin-bottom: 6px;
            /*font-size: 0.8rem;*/
            color: var(--text-sub);
        }
        .activity-section .total-amount {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .activity-section .pay-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: transform 0.2s;
        }

        .activity-section.gold-theme .pay-btn {
            color: #000;
        }

        .activity-section .pay-btn:active {
            transform: scale(0.98);
        }

        .activity-section .check-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .activity-section.gold-theme .check-icon svg {
            fill: #000;
        }

        .activity-section .check-icon svg {
            width: 12px;
            height: 12px;
            fill: white;
        }

        .activity-section .plan-card.active .check-icon {
            opacity: 1;
        }

        .activity-section .pay-modal-mask {position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);display:none;align-items:flex-end;justify-content:center;z-index:9999;}
        .activity-section .pay-modal {width:100%;background:#2d2d42;border-radius:16px 16px 0 0;padding:20px;animation:slideUp .3s ease;z-index:10000;}
        @keyframes slideUp{from{transform:translateY(100%);}to{transform:translateY(0);}}
        .activity-section .pay-title {text-align:center;font-size:1.1rem;font-weight:bold;margin-bottom:15px;}
        .activity-section .pay-item {display:flex;align-items:center;padding:14px 10px;border-bottom:1px solid rgba(255,255,255,.08);cursor:pointer;font-size:1rem;color:#fff;}
        .activity-section .pay-item:active {opacity:.6;background:rgba(255,255,255,.05);}
        .activity-section .pay-cancel {margin-top:10px;background:#333;padding:12px;border-radius:10px;text-align:center;font-size:.95rem;color:#ccc;cursor:pointer;}
        .activity-section .pay-loading {
            position:fixed;
            top:0;
            left:0;
            right:0;
            bottom:0;
            background:rgba(0,0,0,.7);
            z-index:9999;
            display:none;
            align-items:center;
            justify-content:center;
        }

        .activity-section .pay-loading-box {
            text-align:center;
        }

        .activity-section .spinner {
            width:40px;
            height:40px;
            border:4px solid rgba(255,255,255,.3);
            border-top:4px solid #fff;
            border-radius:50%;
            animation:spin 1s linear infinite;
            margin:0 auto 10px;
        }

        @keyframes spin{
        0% {transform:rotate(0deg);}
        100% {transform:rotate(360deg);}
        }

        .activity-section .pay-loading-text {
            color:#fff;
            font-size:14px;
        }


/* === ppview.blade.php === */
        .ppview-section {
            --primary-color: #6c5ce7;
            --secondary-color: #a29bfe;
            --accent-color: #ff7675;
            --bg-color: #0072B1;
            --card-bg: #2d2d42;
            --text-color: #ffffff;
            --text-sub: #b2b2b2;
            --border-radius: 12px;
        }

        .ppview-section.gold-theme {
            --primary-color: #cd7f32;
            --secondary-color: #cd7f32;
        }

        .ppview-section * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        .ppview-section {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            padding-bottom: 150px;
            transition: --primary-color 0.3s;
            min-height: 100vh; /* 內容短時也填滿，避免下半截露出 body 黑底 */
        }

        .ppview-section .header {
            padding: 20px;
            text-align: center;
            /*background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 30, 46, 0) 100%);*/
            position: relative;
        }

        .ppview-section .tabs {
            display: flex;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 25px;
            padding: 4px;
            margin: 10px auto 20px;
            max-width: 300px;
            position: relative;
            overflow: visible;
        }

        .ppview-section .tab-item {
            flex: 1;
            text-align: center;
            padding: 8px 0;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            color: var(--text-sub);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1;
            position: relative;
        }

        .ppview-section .tab-item.active {
            color: #fff;
            background-color: var(--primary-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .ppview-section.gold-theme .tab-item.active {
            color: #333;
            background-color: #cd7f32;
        }

        /* 钻石会员 Tab 的诱导特效 */
        .ppview-section .tab-item.diamond-tab {
            position: relative;
            z-index: 2;
            color: #6c5ce7 !important;
        }

        /* 选中时文字变白 */
        .ppview-section .tab-item.diamond-tab.active {
            color: #fff !important;
        }

        .ppview-section.gold-theme .tab-item.diamond-tab {
            background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%) no-repeat;
            background-size: 200% 100%;
            background-position: -100% 0;
            animation: bgShine 3s infinite ease-in-out;
        }

        @keyframes bgShine {
        0% { background-position: 200% 0; }
        20% { background-position: -100% 0; }
        100% { background-position: -100% 0; }
        }

        .ppview-section.gold-theme .tab-item.diamond-tab::before {
            content: none;
            display: none;
        }

        .ppview-section .tab-item.diamond-tab::after {
            content: 'Hot';
            position: absolute;
            top: -8px;
            right: 0;
            background: #ff7675;
            color: white;
            font-size: 0.6rem;
            padding: 2px 6px;
            border-radius: 8px;
            border: 1px solid #fff;
            transform: scale(0.8);
            opacity: 1;
            transition: opacity 0.3s;
            z-index: 10;
        }

        .ppview-section:not(.gold-theme) .tab-item.diamond-tab::after {
            display: none;
        }

        @keyframes shine {
        0% { left: -100%; }
        20% { left: 200%; }
        100% { left: 200%; }
        }

        .ppview-section .vip-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .ppview-section.gold-theme .vip-badge {
            color: #000;
        }

        .ppview-section .title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .ppview-section .features {
            display: flex;
            justify-content: center;
            gap: 15px;
            font-size: 0.8rem;
            color: var(--secondary-color);
            flex-wrap: wrap;
        }

        .ppview-section .feature-item {
            display: flex;
            align-items: center;
            gap: 4px;
            transition: opacity 0.3s, transform 0.3s;
        }

        .ppview-section .feature-item.hidden {
            opacity: 0.3;
            text-decoration: line-through;
        }

        .ppview-section .feature-item svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* 倒计时区域 */
        .ppview-section .countdown-banner {
            margin: 10px 15px;
            padding: 15px;
            background: rgba(255, 118, 117, 0.1);
            border: 1px solid var(--accent-color);
            border-radius: var(--border-radius);
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(255, 118, 117, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0); }
        }

        .ppview-section .countdown-title {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ppview-section .timer {
            display: flex;
            gap: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            font-family: monospace;
        }

        .ppview-section .timer-block {
            background: var(--accent-color);
            color: white;
            padding: 4px 8px;
            border-radius: 6px;
            min-width: 36px;
            text-align: center;
        }

        .ppview-section .timer-label {
            font-size: 0.7rem;
            color: var(--text-sub);
            text-align: center;
            margin-top: 2px;
        }

        .ppview-section .plans-container {
            padding: 0 15px;
            /* 底部留白：剛好貼住 bottom-bar，沒警告完全不浪費空間 */
            padding-bottom: 110px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            min-height: 570px;
        }

        .ppview-section .plan-card {
            background-color: var(--card-bg);
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            padding: 20px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            overflow: hidden;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
        }

        .ppview-section .plan-card.active {
            border-color: var(--primary-color);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), var(--card-bg));
            border-color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.05);


        }

        .ppview-section .plan-card.best-value {
            border-color: var(--primary-color);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), var(--card-bg));
        }

        .ppview-section .tag {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-color);
            color: white;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-bottom-left-radius: 10px;
            font-weight: bold;
        }

        .ppview-section .tag.best {
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
        }

        .ppview-section .plan-info {
            display: flex;
            flex-direction: column;
        }

        .ppview-section .plan-duration {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .ppview-section .plan-daily {
            font-size: 0.8rem;
            color: var(--text-sub);
        }

        .ppview-section .plan-price-box {
            text-align: right;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .ppview-section .plan-price {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .ppview-section .plan-original-price {
            font-size: 0.8rem;
            color: var(--text-sub);
            text-decoration: line-through;
            margin-top: 2px;
        }

        .ppview-section .save-badge {
            font-size: 0.7rem;
            color: #2ecc71;
            border: 1px solid #2ecc71;
            padding: 2px 6px;
            border-radius: 4px;
            margin-top: 4px;
            display: inline-block;
        }

        .ppview-section .bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1e1e2e; /* 移除 backdrop-filter，iOS WKWebView 息屏恢復後會殘留遮罩擋住點擊 */
            padding: 15px 20px;
            padding-bottom: calc(30px + env(safe-area-inset-bottom)); /* 适配全面屏 iPhone 底部 */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-end; /* 按鈕固定貼底，避免警告把它擠到中間 */
            justify-content: space-between;
            gap: 12px;
            z-index: 100;
        }
        .ppview-section .bottom-bar .total-info { flex: 1; min-width: 0; }
        .ppview-section .bottom-bar .pay-btn { flex-shrink: 0; }

        .ppview-section .total-info {
            display: flex;
            flex-direction: column;
        }

        .ppview-section .total-label {
            font-size: 0.8rem;
            color: var(--text-sub);
        }
        .ppview-section .total-buy {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
            /*font-size: 0.8rem;*/
            color: var(--text-sub);
        }
        /* .ppview-section .total-pay 已合併到上面的 .activity-section, .ppview-section 共用規則 */


        .ppview-section .total-type {
            font-size: 15px;
            font-weight: 300;
            margin-bottom: 6px;
            /*font-size: 0.8rem;*/
            color: var(--text-sub);
        }
        .ppview-section .total-amount {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .ppview-section .pay-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: transform 0.2s;
        }

        .ppview-section.gold-theme .pay-btn {
            color: #000;
        }

        .ppview-section .pay-btn:active {
            transform: scale(0.98);
        }

        .ppview-section .check-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .ppview-section.gold-theme .check-icon svg {
            fill: #000;
        }

        .ppview-section .check-icon svg {
            width: 12px;
            height: 12px;
            fill: white;
        }

        .ppview-section .plan-card.active .check-icon {
            opacity: 1;
        }

        .ppview-section .pay-modal-mask {position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);display:none;align-items:flex-end;justify-content:center;z-index:9999;}
        .ppview-section .pay-modal {width:100%;background:#2d2d42;border-radius:16px 16px 0 0;padding:20px;animation:slideUp .3s ease;z-index:10000;}
        @keyframes slideUp{from{transform:translateY(100%);}to{transform:translateY(0);}}
        .ppview-section .pay-title {text-align:center;font-size:1.1rem;font-weight:bold;margin-bottom:15px;}
        .ppview-section .pay-item {display:flex;align-items:center;padding:14px 10px;border-bottom:1px solid rgba(255,255,255,.08);cursor:pointer;font-size:1rem;color:#fff;}
        .ppview-section .pay-item:active {opacity:.6;background:rgba(255,255,255,.05);}
        .ppview-section .pay-cancel {margin-top:10px;background:#333;padding:12px;border-radius:10px;text-align:center;font-size:.95rem;color:#ccc;cursor:pointer;}

        .ppview-section .pay-loading {
            position:fixed;
            top:0;
            left:0;
            right:0;
            bottom:0;
            background:rgba(0,0,0,.7);
            z-index:9999;
            display:none;
            align-items:center;
            justify-content:center;
        }

        .ppview-section .pay-loading-box {
            text-align:center;
        }

        .ppview-section .spinner {
            width:40px;
            height:40px;
            border:4px solid rgba(255,255,255,.3);
            border-top:4px solid #fff;
            border-radius:50%;
            animation:spin 1s linear infinite;
            margin:0 auto 10px;
        }

        @keyframes spin{
        0% {transform:rotate(0deg);}
        100% {transform:rotate(360deg);}
        }

        .ppview-section .pay-loading-text {
            color:#fff;
            font-size:14px;
        }

/* === appstore.blade.php === */
        .appstore-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .appstore-section {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
            min-height: 100vh;
        }

        .appstore-section .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .appstore-section .header {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 20px;
        }

        .appstore-section .header h1 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #00ff00;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .appstore-section .header p {
            font-size: 16px;
            color: #aaa;
            margin-top: 10px;
        }






        .appstore-section .selection-box span {
            font-size: 18px;
            font-weight: 500;
            color: #fff;
        }



        .appstore-section .section-title {
            font-size: 24px;
            font-weight: bold;
            margin: 40px 0 24px 0;
            color: #00ff00;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .appstore-section .solution-box {
            background: #111;
            border: 1px solid #333;
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .appstore-section .solution-box:hover {
            border-color: #00ff00;
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
        }

        .appstore-section .solution-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            background: #0a0a0a;
            border-bottom: 1px solid #222;
            color: #fff;
            transition: all 0.3s;
        }

        .appstore-section .solution-header:hover {
            background: #151515;
            color: #00ff00;
        }

        .appstore-section .solution-header.active {
            background: #0a200a;
            color: #00ff00;
            border-bottom-color: #00ff00;
        }

        .appstore-section .expand-icon {
            transition: transform 0.3s;
            font-size: 20px;
            color: #00ff00;
        }

        .appstore-section .solution-header.active .expand-icon {
            transform: rotate(180deg);
        }

        .appstore-section .solution-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 20px;
        }

        .appstore-section .solution-content.active {
            max-height: 5555px;
            padding: 24px 20px;
        }

        .appstore-section .solution-content p {
            font-size: 15px;
            color: #ccc;
            margin-bottom: 14px;
        }

        .appstore-section .solution-content p strong {
            color: #00ff00;
            font-weight: 600;
        }

        .appstore-section .steps-box {
            background: #0a0a0a;
            border: 1px solid #222;
            padding: 20px;
            border-radius: 6px;
            margin: 16px 0;
        }

        .appstore-section .steps-box p {
            margin-bottom: 10px;
            color: #ddd;
        }

        .appstore-section .warning-box {
            font-size: 13px;
            color: #ffaa00;
            margin-top: 16px;
            padding: 12px;
            background: #2a2000;
            border: 1px solid #664400;
            border-radius: 6px;
        }

        .appstore-section .danger-box {
            background: #2a0000;
            border: 1px solid #660000;
            padding: 16px;
            border-radius: 6px;
            margin-top: 16px;
        }

        .appstore-section .danger-box p {
            font-size: 13px;
            color: #ff6666;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .appstore-section .danger-box ul {
            font-size: 13px;
            color: #ff8888;
            margin-left: 24px;
            margin-top: 10px;
        }

        .appstore-section .danger-box li {
            margin-bottom: 6px;
        }

        .appstore-section .faq-section {
            background: #111;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 32px;
            margin: 40px 0;
        }

        .appstore-section .faq-item {
            border-bottom: 1px solid #222;
            margin-bottom: 16px;
        }

        .appstore-section .faq-item:last-child {
            border-bottom: none;
        }

        .appstore-section .faq-header {
            padding: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: #fff;
            transition: all 0.3s;
        }

        .appstore-section .faq-header:hover {
            background: #1a1a1a;
            color: #00ff00;
        }

        .appstore-section .faq-header.active {
            color: #00ff00;
        }

        .appstore-section .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 18px;
        }

        .appstore-section .faq-content.active {
            max-height: 1000px;
            padding: 18px;
        }

        .appstore-section .faq-content p {
            font-size: 15px;
            color: #bbb;
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .appstore-section .faq-content strong {
            color: #00ff00;
            font-weight: 600;
        }

        .appstore-section .service-notice {
            background: #0a200a;
            border: 2px solid #00ff00;
            border-radius: 8px;
            padding: 24px;
            margin: 40px 0;
            text-align: center;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
        }

        .appstore-section .service-notice p {
            font-size: 16px;
            color: #fff;
            line-height: 1.8;
        }

        .appstore-section .service-notice span {
            color: #00ff00;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .appstore-section .download-section {
            background: #111;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 32px;
            margin-bottom: 40px;
        }

        .appstore-section .guide-image {
            width: 100%;
            border-radius: 6px;
            border: 1px solid #222;
            margin-top: 14px;
        }

        .appstore-section .download-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 20px;
        }

        .appstore-section .download-tag {
            padding: 12px 24px;
            background: #0a0a0a;
            border: 1px solid #333;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 15px;
            color: #fff;
            font-weight: 500;
        }

        .appstore-section .download-tag:hover {
            background: #0a200a;
            border-color: #00ff00;
            color: #00ff00;
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
            transform: translateY(-2px);
        }

        /* 滚动条样式 */
        .appstore-section ::-webkit-scrollbar {
            width: 8px;
        }

        .appstore-section ::-webkit-scrollbar-track {
            background: #000;
        }

        .appstore-section ::-webkit-scrollbar-thumb {
            background: #00ff00;
            border-radius: 4px;
        }

        .appstore-section ::-webkit-scrollbar-thumb:hover {
            background: #00cc00;
        }

        @media (max-width: 640px) {
            .appstore-section .container {
                padding: 20px 16px;
            }

            .appstore-section .header h1 {
                font-size: 24px;
            }

            .appstore-section .section-title {
                font-size: 20px;
            }

            .appstore-section .selection-box {
                padding: 16px;
            }

            .appstore-section .selection-box span {
                font-size: 16px;
            }

            .appstore-section .solution-content {
                font-size: 14px;
            }

            .appstore-section .faq-section {
                padding: 24px 16px;
            }
        }

        /* 发光效果 */
        @keyframes glow {
        0%, .appstore-section 100% {
                text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
            }
        50% {
                text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
            }
        }

        .appstore-section .header h1 {
            animation: glow 3s ease-in-out infinite;
        }
        /* ---- 新版选择区块 ---- */
        .appstore-section .selection-wrapper {
            color: #000;
            border-radius: 20px;
            padding: 20px 20px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            margin-bottom: 60px;
        }
        .appstore-section .selection-wrapper p.tip {
            font-size: 16px;
            color: #222;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .appstore-section .selection-wrapper p.sub {
            font-size: 15px;
            color: #555;
            margin-bottom: 24px;
        }

        .appstore-section .select-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .appstore-section .select-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 999px;
            font-size: 17px;
            padding: 14px 32px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid #ddd;
            background: #fff;
            color: #333;
        }

        .appstore-section .select-btn .circle {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid #aaa;
        }

        .appstore-section .select-btn.active {
            background: linear-gradient(90deg, #5c5cff, #a84dff);
            color: #fff;
            border: none;
            box-shadow: 0 6px 18px rgba(120, 80, 255, 0.3);
        }

        .appstore-section .select-btn.active .circle {
            border: 2px solid #fff;
            background: #fff;
        }
        .appstore-section .apple-download-box {
            background: #222;
            color: #000;
            text-align: center;
            border-radius: 24px;
            padding: 50px 20px;
            margin: 10px auto;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .appstore-section .apple-tip {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }

        .appstore-section .apple-sub {
            font-size: 16px;
            color: #fff;
            margin-bottom: 30px;
        }

        .appstore-section .apple-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            border-radius: 999px;
            background: linear-gradient(90deg, #3d6aff, #b44dff);
            box-shadow: 0 8px 20px rgba(100, 80, 255, 0.35);
            transition: all 0.3s ease;
        }

        .appstore-section .apple-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(100, 80, 255, 0.55);
        }

        @media (max-width: 640px) {
            .appstore-section .apple-download-box {
                padding: 32px 16px;
            }

            .appstore-section .apple-tip {
                font-size: 17px;
            }

            .appstore-section .apple-btn {
                font-size: 16px;
                padding: 14px 28px;
            }
        }
        .appstore-section .tutorial-wrapper {
            display: flex;
            flex-direction: column;
            /*gap: 40px;*/
            margin-top: 30px;
        }

        .appstore-section .tutorial-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            background: #0a0a0a;
            border: 1px solid #222;
            border-radius: 10px;
            padding: 20px;
            flex-wrap: wrap;
        }

        .appstore-section .tutorial-img {
            flex: 1 1 40%;
            text-align: center;
        }

        .appstore-section .tutorial-img img {
            width: 100%;
            max-width: 300px;
            border-radius: 12px;
            border: 1px solid #333;
        }

        .appstore-section .tutorial-text {
            flex: 1 1 55%;
        }

        .appstore-section .tutorial-text h3 {
            color: #00ff00;
            font-size: 22px;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .appstore-section .tutorial-text p {
            color: #ccc;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .appstore-section .tutorial-text ol {
            margin-left: 20px;
            color: #aaa;
        }

        .appstore-section .tutorial-text li {
            margin-bottom: 6px;
        }
        .appstore-section .tutorial-text a {
            text-decoration: none;   /* 去掉下劃線 */
            color: #00ff00;          /* 設定藍色字體 */
            font-weight: 600;        /* 可選，加粗一點讓更明顯 */
            transition: color 0.2s ease;
        }
        .appstore-section .tutorial-text a:hover {
            color: #66ccff;          /* 滑鼠移上去時亮一點 */
            text-decoration: underline; /* 可選：移上去再顯示下劃線 */
        }

        /* 手機版改為上下排 */
        @media (max-width: 768px) {
            .appstore-section .tutorial-item {
                flex-direction: column;
                text-align: center;
            }
            .appstore-section .tutorial-text {
                flex: 1 1 100%;
            }
        }
        .appstore-section .public-account-box {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 16px 20px;
            margin: 20px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            font-family: 'Arial', sans-serif;
            line-height: 1.8;
        }

        .appstore-section .public-account-box p {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #e0e0e0;
            padding: 10px 14px;
            border-radius: 8px;
            margin-bottom: 10px;
            background-color: #fff;
            font-size: 16px;
        }

        .appstore-section .copy-btn {
            background: #f1f3f5;
            border: none;
            padding: 6px 10px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.2s ease;
        }

        .appstore-section .copy-btn:hover {
            background: #007bff;
            color: #fff;
        }
        /* Toast 提示樣式 */
        .appstore-section .toast {
            visibility: hidden;
            min-width: 160px;
            background-color: #323232;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 10px 16px;
            position: fixed;
            z-index: 9999;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            font-size: 15px;
            opacity: 0;
            transition: opacity 0.4s, bottom 0.4s;
        }

        .appstore-section .toast.show {
            visibility: visible;
            opacity: 1;
            bottom: 60px;
        }


/* === SPA 修正：避免 vite 預設 index.css 殘留 / cascade 衝突 === */
:root {
    --primary-color: #00E676;
    --dark-bg: #121212;
    --text-light: #ffffff;
    --text-secondary: #ccc;
}

/* 下載按鈕：強制水平、不換行、綠底黑字 */
.download-btn,
.download-section .download-btn {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    background-color: #00E676 !important;
    color: #000 !important;
}
.download-btn-text {
    display: inline;
    white-space: nowrap;
}

/* Footer：4 欄改用 grid，不再被 flex 計算誤差弄掉到第二行 */
.footer-content {
    display: grid !important;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}
.footer-nav-section {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-nav-column {
    flex: unset;
    min-width: 0;
}
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-nav-section {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .footer-nav-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Navbar：中文 label 單行不換行（vpn_web 用英文不會遇到，所以原版沒設） */
.navbar-dark .navbar-nav .nav-link {
    white-space: nowrap;
}

/* Hero 標題：1199-993px 區間 (col-lg-7 寬度不夠) 提早縮字，避免「永遠能連上的 / VPN」斷行 */
@media (max-width: 1199px) and (min-width: 993px) {
    .hero-content h1 {
        font-size: 56px;
    }
}

/* Register / Forgot 頁的「下載用戶端」按鈕原版是 <button>，我們用 <a>，
   需要明確 flex 居中文字 */
.login-section .btn-download {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
}

/* 會員 tier 卡片：原 CSS 寫死 48% 寬（只裝得下 2 個），改成 flex auto 平均分配，
   後台加第 3、第 4 個 tier 也能正確排版 */
.member-section .membership-types {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
}
.member-section .membership-type {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: none !important;
}
@media (max-width: 768px) {
    .member-section .membership-type {
        flex: 1 1 calc(50% - 10px) !important;
        min-width: 0 !important;
    }
}
/* 給 gold / silver 等新增 tier 的圖示底色（與 platinum/bronze 風格一致） */
.member-section .gold-icon {
    background: linear-gradient(135deg, #ffd700, #d4a017);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.member-section .silver-icon {
    background: linear-gradient(135deg, #d8d8d8, #a8a8a8);
    color: #333;
    box-shadow: 0 0 10px rgba(216, 216, 216, 0.3);
    position: relative;
    overflow: hidden;
}
/* tier 切換時的警告 banner — 黃色背景，明顯告知用戶該 tier 的限制 */
.tier-warn-banner {
    margin: 0 auto 18px;
    max-width: 900px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255, 196, 0, 0.12);
    border: 1px solid rgba(255, 196, 0, 0.45);
    color: #ffd166;
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: left;
}
.member-section .tier-warn-banner,
.activity-section .tier-warn-banner,
.ppview-section .tier-warn-banner {
    margin-bottom: 20px;
}

/* 輕享會員：藍綠色，與青銅 / 鑽石風格區隔 */
.member-section .lite-icon {
    background: linear-gradient(135deg, #4dd0e1, #00838f);
    color: #fff;
    box-shadow: 0 0 10px rgba(77, 208, 225, 0.3);
    position: relative;
    overflow: hidden;
}

/* Appstore 頁：原 blade 的 .container 只給 40px top padding 沒預留 navbar 70px，
   標題會被 fixed navbar 蓋住。SPA 補一層上邊距。 */
.appstore-section .container {
    padding-top: 110px;
}
@media (max-width: 768px) {
    .appstore-section .container {
        padding-top: 90px;
    }
}

/* 防止整頁因長文 / 圖片導致橫向卷動 */
html, body {
    overflow-x: hidden;
}

/* 行動版（<992px）navbar：直排展開 + QR 直接內嵌不靠 hover */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(18, 18, 18, 0.95);
        border-radius: 10px;
        padding: 12px;
        margin-top: 10px;
    }
    .navbar-dark .navbar-nav .nav-link {
        margin: 4px 0 !important;
        padding: 10px 8px;
        text-align: left;
    }
    /* 行動版 QR popup：預設隱藏，點擊 .qrcode-trigger 加上 .show 才展開
       —— 沒展開時必須 0 高度 / 0 邊距，否則「掃碼下載」跟「登入」之間會有空隙 */
    .qrcode-container {
        margin: 0 !important;
        padding: 0 !important;
    }
    .qrcode-popup {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        border: 0;
        transition: max-height .25s ease, opacity .2s ease;
    }
    .qrcode-popup.show {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        padding: 12px !important;
        margin: 6px 0 0 !important;
    }
    .qrcode-popup::before { display: none; }
}

/* Activity / Ppview：原 blade 是獨立全頁設計沒考慮 SPA fixed navbar，tabs 會被覆蓋 */
.activity-section,
.ppview-section {
    padding-top: 90px;
}
/* a_pay 不顯示 Header 時，移除頂部空白 */
body.no-header .activity-section,
body.no-header .ppview-section {
    padding-top: 0;
}
@media (max-width: 768px) {
    .activity-section,
    .ppview-section {
        padding-top: 80px;
    }
}
.activity-section .bottom-bar,
.ppview-section .bottom-bar {
    z-index: 1020;
}
