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

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* 背景网格效果 */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 150, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 150, 255, 0.08) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: -1;
        }

        /* 顶部警告条 */
        .warning-bar {
            background: #1a1a1a;
            padding: 8px 0;
            text-align: center;
            font-size: 13px;
            color: #cccccc;
            border-bottom: 1px solid #333;
            white-space: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            max-width: 600px;
            margin: 0 auto;
        }

        .warning-bar::-webkit-scrollbar {
            display: none; /* Chrome, Safari and Opera */
        }

        .warning-bar-content {
            display: inline-block;
            min-width: 100%;
            animation: scrollText 30s linear infinite;
        }

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

        /* 当内容不需要滚动时停止动画 */
        .warning-bar.no-scroll .warning-bar-content {
            animation: none;
        }

        /* 主标题区域 */
        .header {
            text-align: center;
            padding: 20px 20px;
            position: relative;
        }

        .main-title {
            font-size: 60px;
            font-weight: bold;
            color: #00E0FF;
            text-shadow: 
                3px 3px 0px #000000,
                6px 6px 0px #000000,
                9px 9px 0px #0d2943;
            margin-bottom: 10px;
            letter-spacing: 2px;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            text-align: center;
        }

        .subtitle-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .subtitle {
            font-size: 36px;
            color: #00E0FF;
            margin: 0 20px;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            text-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
        }

        .decorative-left,
        .decorative-right {
            display: flex;
            align-items: center;
        }


        .brackets {
            color: #00E0FF;
            font-size: 36px;
            font-weight: bold;
            margin: 0 10px;
            text-shadow: 0 0 5px #00E0FF;
        }



        /* 主内容区域 */
        .main-content {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 手相分析区域 */
        .hand-analysis {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }

        .hand-showcase {
            position: relative;
            text-align: center;
            margin: 30px 0;
            overflow: hidden;
            border-radius: 15px;
        }

        .hand-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 150, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 150, 255, 0.08) 1px, transparent 1px);
            background-size: 50px 50px;
            background-attachment: fixed;
            background-position: 0 0;
            border-radius: 15px;
            z-index: 2;
            pointer-events: none;
        }

        .hand-showcase::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                180deg,
                transparent 0%,
                transparent 10%,
                rgba(0, 255, 255, 0.1) 20%,
                rgba(0, 255, 255, 0.3) 30%,
                rgba(0, 255, 255, 0.8) 40%,
                rgba(0, 255, 255, 0.3) 50%,
                rgba(0, 255, 255, 0.1) 60%,
                transparent 70%,
                transparent 100%
            );
            background-size: 100% 300%;
            animation: verticalScan 15s linear infinite;
            border-radius: 15px;
            z-index: 3;
            pointer-events: none;
        }

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

        .hand-showcase-img {
            position: relative;
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
            z-index: 1;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
            }
            50% {
                box-shadow: 0 0 50px rgba(0, 150, 255, 0.6);
            }
        }

        .submit-btn-img {
            max-width: 100%;
            height: auto;
            cursor: pointer;
            margin: 14px 0;
            transition: all 0.3s ease;
            border-radius: 10px;
            animation: scaleAnimation 2s ease-in-out infinite;
        }

        .submit-btn-img:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        @keyframes scaleAnimation {
            0%, 100% {
                transform: scale(0.8);
            }
            50% {
                transform: scale(0.75);
            }
        }

        .stats {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            font-size: 14px;
            color: #cccccc;
        }

        .intro-image {
            text-align: center;
            margin: 30px 0;
        }

        .intro-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 150, 255, 0.2);
        }

        /* 上传要求提示样式 */
        .upload-requirements {
            background: rgba(0, 150, 255, 0.05);
            border: 2px solid #0096ff;
            border-radius: 12px;
            padding: 15px;
            margin: 20px 0;
            text-align: center;
        }

        .requirements-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 16px;
            font-weight: bold;
            color: #0096ff;
        }

        .requirements-icon {
            margin-right: 8px;
            font-size: 18px;
        }

        .requirements-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .requirement-item {
            display: flex;
            align-items: center;
            background: rgba(0, 150, 255, 0.1);
            border: 1px solid #0096ff;
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 13px;
            color: #ffffff;
            white-space: nowrap;
        }

        .requirement-item .req-icon {
            margin-right: 6px;
            font-size: 14px;
        }

        /* 信息框样式 */
        .info-box {
            background: rgba(0, 200, 0, 0.1);
            border: 2px solid #00cc00;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            position: relative;
        }

        .info-box.red {
            background: rgba(20, 144, 161, 0.1);
            border-color: #1490a1;
        }

        .info-title {
            font-size: 20px;
            font-weight: bold;
            color: #00cc00;
            margin-bottom: 15px;
            text-align: center;
        }

        .info-box.red .info-title {
            color: #ffffff;
        }

        .info-content {
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .recommendation {
            color: #00cc00;
            font-weight: bold;
            text-align: center;
            margin-top: 15px;
        }




        /* 手相介绍图片区域 */
        .info-images {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 40px 0;
        }

        .info-image-item {
            text-align: center;
        }

        .info-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 150, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .info-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 150, 255, 0.3);
        }

        /* 热门推荐 */
        .hot-recommendations {
            margin: 40px 0;
        }

        .recommendations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 20px 0;
        }

        .recommendation-item {
            background: rgba(20, 144, 161, 0.1);
            border: 2px solid #1490a1;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .recommendation-item:hover {
            background: rgba(20, 144, 161, 0.2);
            transform: translateY(-2px);
        }

        .recommendation-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #1490a1, #1ba3b8);
            border-radius: 50%;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #000;
        }

        .recommendation-text {
            font-size: 14px;
            color: #ffffff;
        }

        /* 页脚 */
        .footer {
            text-align: center;
            padding: 20px;
            font-size: 13px;
            color: #cccccc;
            border-top: 1px solid #333;
            margin-top: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 移动端警告条优化 */
        @media (max-width: 768px) {
            .warning-bar {
                font-size: 11px;
                padding: 6px 0;
                max-width: 95%;
            }
            
            .warning-bar-content {
                animation-duration: 25s;
            }
        }

        @media (max-width: 480px) {
            .warning-bar {
                font-size: 10px;
                padding: 5px 0;
                max-width: 98%;
            }
            
            .warning-bar-content {
                animation-duration: 20s;
            }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .main-content {
                padding: 0 15px;
            }
            
            .main-title {
                font-size: 36px;
            }
            
            .subtitle {
                font-size: 16px;
            }
            
            
            .recommendations-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 文件上传样式 */
        .file-upload {
            display: none;
        }

        .upload-label {
            display: inline-block;
            cursor: pointer;
        }

        /* 加载动画 */
        .loading {
            display: none;
            text-align: center;
            margin: 20px 0;
        }

        .spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #0096ff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

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

        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            overflow-y: auto;
            padding: 20px 0;
        }

        .modal-content {
            position: relative;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            margin: 5% auto;
            padding: 40px;
            border: 2px solid #0096ff;
            border-radius: 20px;
            width: 600px;
            text-align: center;
            box-shadow: 0 0 50px rgba(0, 150, 255, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            margin-bottom: 30px;
        }

        .modal-title {
            font-size: 32px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .modal-subtitle {
            font-size: 16px;
            color: #ffffff;
            opacity: 0.8;
        }

        .photo-example {
            border: 3px solid #00ffff;
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            background: rgba(0, 255, 255, 0.05);
            position: relative;
        }

        .example-label {
            position: absolute;
            left: 20px;
            top: 20px;
            color: #ffffff;
            font-size: 16px;
            font-weight: bold;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .example-hand {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
            border-radius: 10px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #666;
            position: relative;
            overflow: hidden;
        }

        .preview-placeholder {
            display: block;
            width: 100%;
            height: 100%;
        }


        .preview-image {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            display: block;
            margin: 0 auto;
        }
        
        /* 智能预览容器 - 根据图片比例自动调整 */
        .smart-preview-container {
            width: 200px;
            height: 200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .smart-preview-image {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            display: block;
        }
        
        /* 手指分析进度条样式 */
        .finger-analysis-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        
        .progress-container {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            border: 2px solid #0096ff;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .progress-title {
            font-size: 28px;
            color: #0096ff;
            margin-bottom: 10px;
            text-shadow: 0 0 10px #0096ff;
        }
        
        .progress-subtitle {
            font-size: 16px;
            color: #cccccc;
            margin-bottom: 30px;
        }
        
        .finger-progress-item {
            margin: 15px 0;
            text-align: left;
        }
        
        .finger-name {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .finger-icon {
            font-size: 20px;
            margin-right: 10px;
        }
        
        .progress-bar-container {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #0096ff, #00ffff);
            border-radius: 4px;
            width: 0%;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .progress-percentage {
            font-size: 14px;
            color: #00ffff;
            margin-top: 5px;
            text-align: right;
        }
        
        .overall-progress {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #0096ff;
        }
        
        .overall-progress-title {
            font-size: 18px;
            color: #ffffff;
            margin-bottom: 10px;
        }
        
        .overall-progress-bar {
            width: 100%;
            height: 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            overflow: hidden;
        }
        
        .overall-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #00cc00, #00ff00);
            border-radius: 6px;
            width: 0%;
            transition: width 0.5s ease;
            box-shadow: 0 0 15px rgba(0, 204, 0, 0.5);
        }

        .requirements-section {
            margin: 30px 0;
        }

        .requirements-title {
            position: relative;
            margin: 20px 0;
        }

        .requirements-title::before,
        .requirements-title::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 20%;
            height: 1px;
            background: #0096ff;
        }

        .requirements-title::before {
            left: 0;
        }

        .requirements-title::after {
            right: 0;
        }

        .requirements-title span {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            padding: 0 20px;
            color: #ffffff;
            font-size: 16px;
        }

        .requirements-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
        }

        .requirement-tag {
            background: transparent;
            border: 2px solid #00ffff;
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }

        .file-requirements {
            margin: 20px 0;
            padding: 15px;
            background: rgba(0, 150, 255, 0.05);
            border: 1px solid #0096ff;
            border-radius: 10px;
        }

        .file-requirement-item {
            display: flex;
            align-items: center;
            margin: 8px 0;
            color: #ffffff;
            font-size: 14px;
        }

        .file-requirement-item .requirement-icon {
            margin-right: 10px;
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        .file-info-display {
            margin: 15px 0;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .file-info-success {
            background: rgba(0, 200, 0, 0.1);
            border: 1px solid #00cc00;
            color: #00cc00;
        }

        .file-info-warning {
            background: rgba(255, 165, 0, 0.1);
            border: 1px solid #ffa500;
            color: #ffa500;
        }

        .file-info-error {
            background: rgba(255, 0, 0, 0.1);
            border: 1px solid #ff3333;
            color: #ff3333;
        }

        .file-info-display .success-icon,
        .file-info-display .warning-icon,
        .file-info-display .error-icon {
            margin-right: 8px;
            font-size: 16px;
        }

        .recommendation {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
            color: #ffffff;
            font-size: 14px;
        }

        .recommendation .info-icon {
            width: 20px;
            height: 20px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 12px;
            font-weight: bold;
        }

        .upload-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }

        .upload-btn, .confirm-btn, .retake-btn {
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
        }

        .upload-btn {
            background: linear-gradient(45deg, #00ffff, #0096ff);
            color: #000;
            box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
        }

        .upload-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
        }

        .confirm-btn {
            background: linear-gradient(45deg, #00cc00, #00aa00);
            color: #fff;
            box-shadow: 0 4px 15px rgba(0, 204, 0, 0.3);
        }

        .confirm-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 204, 0, 0.4);
        }

        .retake-btn {
            background: linear-gradient(45deg, #ff6b6b, #ff5252);
            color: #fff;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .retake-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .camera-icon {
            font-size: 20px;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            color: #ffffff;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #ff3333;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .modal {
                padding: 10px 0;
            }
            
            .modal-content {
                margin: 10px auto;
                padding: 20px;
                width: calc(100% - 20px);
                max-width: 600px;
                min-width: 320px;
            }
            
            .modal-title {
                font-size: 24px;
            }
            
            .modal-subtitle {
                font-size: 14px;
            }
            
            .smart-preview-container {
                width: 150px;
                height: 150px;
            }
            
            .progress-container {
                padding: 20px;
                max-width: 90%;
            }
            
            .progress-title {
                font-size: 22px;
            }
            
            .progress-subtitle {
                font-size: 14px;
            }
            
            .finger-name {
                font-size: 14px;
            }
            
            .finger-icon {
                font-size: 16px;
            }
            
            .requirements-tags {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
            
            .requirement-tag {
                width: 200px;
                text-align: center;
                padding: 6px 12px;
                font-size: 13px;
            }
            
            .recommendation {
                font-size: 13px;
                text-align: center;
                flex-direction: row;
                gap: 8px;
                flex-wrap: nowrap;
            }
            
            .recommendation .info-icon {
                width: 18px;
                height: 18px;
                font-size: 11px;
                margin-right: 8px;
                flex-shrink: 0;
            }
            
            .upload-btn {
                padding: 12px 20px;
                font-size: 16px;
            }
            
            .requirements-content {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .requirement-item {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .modal {
                padding: 5px 0;
            }
            
            .modal-content {
                margin: 5px auto;
                padding: 15px;
                width: calc(100% - 10px);
                min-width: 300px;
            }
            
            .modal-title {
                font-size: 20px;
            }
            
            .modal-subtitle {
                font-size: 12px;
            }
            
            .example-hand {
                width: 120px;
                height: 120px;
            }
            
            .requirement-tag {
                width: 180px;
                padding: 5px 10px;
                font-size: 12px;
            }
            
            .upload-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .recommendation {
                font-size: 12px;
                gap: 6px;
            }
            
            .recommendation .info-icon {
                width: 16px;
                height: 16px;
                font-size: 10px;
                margin-right: 6px;
            }
        }
        
        /* 错误提示模态框样式 */
        .error-modal {
            display: none;
            position: fixed;
            z-index: 20000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
            overflow-y: auto;
            padding: 20px 0;
        }
        
        .error-modal-content {
            position: relative;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            margin: 10% auto;
            padding: 40px;
            border: 2px solid #ff3333;
            border-radius: 20px;
            width: 600px;
            max-width: 90%;
            text-align: center;
            box-shadow: 0 0 50px rgba(255, 51, 51, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }
        
        .error-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }
        
        .error-title {
            font-size: 28px;
            font-weight: bold;
            color: #ff3333;
            margin-bottom: 15px;
        }
        
        .error-message {
            font-size: 16px;
            color: #ffffff;
            line-height: 1.8;
            margin-bottom: 30px;
            word-wrap: break-word;
        }
        
        .error-details {
            background: rgba(255, 51, 51, 0.1);
            border: 1px solid #ff3333;
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            text-align: left;
            font-size: 14px;
            color: #cccccc;
        }
        
        .error-details-title {
            color: #ffaa00;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .error-details-item {
            margin: 8px 0;
            padding-left: 20px;
        }
        
        .error-close-btn {
            background: linear-gradient(45deg, #ff3333, #cc0000);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .error-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
        }
        
        @media (max-width: 768px) {
            .error-modal-content {
                padding: 30px 20px;
                width: 95%;
            }
            
            .error-title {
                font-size: 24px;
            }
            
            .error-message {
                font-size: 14px;
            }
        }