@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('./font-style.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'UKIJ Ekran', 'UKIJ Tuz', 'UKIJ Basma', 'Noto Sans Arabic', 'Microsoft Uighur', 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1f25 0%, #2c3e50 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    padding: 20px 0;
}

/* 添加星星背景 */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: #fff;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0.7;
    animation: twinkle 3s infinite;
    top: 0;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    50% { opacity: 0.8; }
    100% { opacity: 0.2; }
}

.container {
    max-width: 450px;
    width: 95%;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.container::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(250, 103, 53, 0.3) 0%, rgba(255, 140, 102, 0.15) 100%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(5px);
}

.container::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(250, 103, 53, 0.2) 0%, rgba(255, 140, 102, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(5px);
}

.header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.logo::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(250, 103, 53, 0.15);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
    filter: blur(8px);
}

.logo img {
    height: 70px;
    width: auto;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.logo img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
}

.tagline {
    color: #6c757d;
    font-size: 16px;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.highlight {
    color: #FA6735;
    font-weight: 500;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FA6735, transparent);
    border-radius: 2px;
}

.header h1 {
    color: #2c3e50;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #2c3e50, #4a6583);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header h1:after {
    content: '';
    position: absolute;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FA6735, transparent);
    bottom: -10px;
    left: 10%;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(250, 103, 53, 0.2);
}

.search-box {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.search-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.search-title {
    text-align: center;
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    direction: rtl;
}

.search-title i {
    color: #FA6735;
    font-size: 18px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.input-wrapper.focused {
    transform: scale(1.02);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FA6735;
    font-size: 22px;
    transition: all 0.3s ease;
}

.char-count-display {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 12px;
    opacity: 0.6;
    transition: all 0.3s ease;
    direction: ltr;
    background-color: rgba(248, 249, 250, 0.7);
    padding: 2px 6px;
    border-radius: 10px;
}

.char-count-display.warning {
    color: #ff5722;
    opacity: 1;
}

.input-wrapper.focused .search-icon {
    color: #FA6735;
    animation: bounce 0.6s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-65%); }
}

.input-focus-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FA6735, #FF8C66);
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(250, 103, 53, 0.3);
}

.input-wrapper.focused .input-focus-effect {
    width: 100%;
}

input[type="text"] {
    width: 100%;
    padding: 15px 15px 15px 75px; /* 增加左侧内边距，为字符计数留出空间 */
    border: 2px solid #eaeaea;
    border-radius: 12px;
    font-size: 14px; /* 增加字体大小 */
    outline: none;
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.03);
    background-color: #f8f9fa;
    letter-spacing: 0.3px;
}

input[type="text"]:focus {
    border-color: #FA6735;
    box-shadow: 0 0 0 4px rgba(250, 103, 53, 0.15);
    background-color: #fff;
}

input[type="text"]::placeholder {
    color: #adb5bd;
    opacity: 0.8;
}

button {
    width: 100%;
    background: linear-gradient(135deg, #FA6735 0%, #FF8C66 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 12px rgba(250, 103, 53, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

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

button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(250, 103, 53, 0.25), 0 8px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FF8C66 0%, #FA6735 100%);
}

button:hover::before {
    left: 100%;
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(250, 103, 53, 0.2);
}

button i {
    font-size: 20px;
}

.pulse-button {
    position: relative;
}

.pulse-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(250, 103, 53, 0.4);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transform: scale(1);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Toast 样式通知 */
.toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.toast-message {
    text-align: center;
    padding: 16px 22px;
    margin: 10px 0;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    direction: rtl;
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.toast-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: slide-glow 2s infinite;
}

.toast-message i {
    margin-left: 12px;
    font-size: 20px;
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-message.success {
    background-color: rgba(40, 167, 69, 0.9);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: toast-in 0.5s, toast-glow 2s infinite;
}

.toast-message.error {
    background-color: rgba(220, 53, 69, 0.9);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: toast-in 0.5s, toast-shake 0.8s;
}

.toast-message.warning {
    background-color: rgba(255, 193, 7, 0.9);
    color: #212529;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: toast-in 0.5s;
}

.toast-message.info {
    background-color: rgba(13, 110, 253, 0.9);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: toast-in 0.5s, toast-glow 2s infinite;
}

@keyframes toast-in {
    0% { 
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes toast-out {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes toast-glow {
    0% { box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2); }
    50% { box-shadow: 0 5px 25px rgba(40, 167, 69, 0.5); }
    100% { box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2); }
}

@keyframes toast-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

/* 添加新的功能区块 */
.features-section {
    display: flex;
    justify-content: space-between;
    margin: 35px 0;
    gap: 18px;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    direction: rtl;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #FA6735, #FF8C66);
    transition: height 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.feature-item:hover::before {
    height: 100%;
}

.feature-icon {
    margin-bottom: 12px;
    color: #FA6735;
    font-size: 28px;
    position: relative;
    display: inline-block;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(250, 103, 53, 0.1);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-text {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-desc {
    color: #6c757d;
    font-size: 13px;
    font-weight: 400;
}

.instructions {
    text-align: center;
    color: #6c757d;
    font-size: 12px;
    margin-top: 15px;
    padding: 15px;
    background-color: rgba(255, 245, 242, 0.95);
    border-radius: 12px;
    direction: rtl;
    border-left: 4px solid #FA6735;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.instructions:hover {
    background-color: rgba(255, 245, 242, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.instruction-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    gap: 8px;
}

.instruction-title i {
    color: #FA6735;
    font-size: 14px;
}

.instruction-steps {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #FA6735;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(250, 103, 53, 0.2);
}

.step-text {
    font-size: 12px;
    color: #495057;
    max-width: 100px;
    text-align: center;
}

.footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #6c757d;
    font-size: 12px;
    direction: rtl;
    font-weight: 500;
}

.footer p {
    margin: 0;
    padding: 5px 0;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FA6735 0%, #FF8C66 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(250, 103, 53, 0.2);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 12px rgba(250, 103, 53, 0.3);
}

.social-link i {
    font-size: 18px;
}

@media (max-width: 480px) {
    body {
        padding: 10px 0;
    }
    
    .container {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
        margin: 0;
    }
    
    .header {
        margin-bottom: 15px;
    }
    
    .header h1 {
        font-size: 22px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .tagline {
        color: #6c757d;
        font-size: 10px;
        margin-top: 6px;
        font-weight: 400;
        letter-spacing: 0.3px;
        line-height: 1.4;
    }
    
    .search-box {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .search-title {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .search-title i {
        font-size: 16px;
    }
    
    .input-wrapper {
        margin-bottom: 15px;
    }
    
    input[type="text"] {
        padding: 12px 12px 12px 65px;
        font-size: 14px;
    }
    
    .status-message {
        font-size: 14px;
        padding: 12px;
    }
    
    .features-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-item {
        padding: 12px 8px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    /* 使用说明区域样式 */
    .instructions {
        margin-top: 10px;
        padding: 12px;
        border-radius: 15px;
        background-color: rgba(255, 245, 242, 0.98);
    }
    
    .instruction-title {
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .instructions p {
        margin-bottom: 8px;
        font-size: 11px;
    }
    
    /* 步骤显示为水平排列 */
    .instruction-steps {
        flex-direction: row;
        justify-content: space-between;
        gap: 5px;
        margin-top: 10px;
    }
    
    .step {
        width: 32%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 5px;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .step-text {
        font-size: 10px;
        max-width: 100%;
        text-align: center;
    }
    
    /* 调整页脚在移动设备上的显示 */
    .footer {
        margin-top: 15px;
        padding-top: 10px;
        font-size: 11px;
    }
    
    .social-links {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 16px;
    }
    
    /* 悬浮客服按钮调整 */
    .floating-service-button {
        right: 10px;
        top: 100px;
    }
    
    .floating-service-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-service-button i {
        font-size: 20px;
    }
}

/* 添加动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    animation: fadeIn 0.6s ease-out;
}

.search-box {
    animation: fadeIn 0.8s ease-out;
}

.instructions {
    animation: fadeIn 1s ease-out;
}

.features-section {
    animation: fadeIn 1.2s ease-out;
}

/* 添加页面加载动画样式 */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1f25;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loader-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.loader-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(250, 103, 53, 0.2);
    animation: pulse 2s infinite;
}

.loader-icon i {
    font-size: 40px;
    color: #FA6735;
    position: relative;
    z-index: 1;
}

.loader-logo {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: fadeInScale 0.5s ease-out;
}

.loader-logo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(250, 103, 53, 0.2);
    animation: pulse 2s infinite;
}

@keyframes fadeInScale {
    0% { 
        opacity: 0; 
        transform: scale(0.5); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.loader-content p {
    color: #fff;
    font-size: 18px;
    direction: rtl;
    margin-bottom: 20px;
}

.loading-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FA6735, #FF8C66);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* 添加滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FA6735 0%, #FF8C66 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FF8C66 0%, #FA6735 100%);
}

/* 悬浮客服按钮样式 */
.floating-service-button {
    position: fixed;
    right: 20px;
    top: 140px;
    z-index: 999;
}

.floating-service-button a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(250, 103, 53, 0.85) 0%, rgba(255, 140, 102, 0.85) 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.floating-service-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-service-button i {
    font-size: 24px;
    margin-bottom: 4px;
}

.floating-service-button span {
    font-size: 12px;
    font-weight: 500;
}

/* 自定义电视版本提示样式 */
.custom-tv-toast {
    background: linear-gradient(135deg, rgba(250, 103, 53, 0.85) 0%, rgba(255, 140, 102, 0.85) 100%) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    animation: toast-in 0.5s, toast-glow 2s infinite !important;
    box-shadow: 0 10px 25px rgba(250, 103, 53, 0.3) !important;
    backdrop-filter: blur(5px) !important;
}

.custom-tv-toast i {
    font-size: 22px !important;
    margin-left: 12px !important;
    animation: pulse 2s infinite !important;
}

/* 设备号码输入界面样式 */
.device-input-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 37, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.device-input-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 0.5s ease-out;
}

.device-input-logo {
    margin-bottom: 20px;
}

.device-input-container h2 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    direction: rtl;
}

.device-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.device-input-wrapper input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.03);
    background-color: #f8f9fa;
}

.device-input-wrapper input:focus {
    border-color: #FA6735;
    box-shadow: 0 0 0 4px rgba(250, 103, 53, 0.15);
    background-color: #fff;
}

.device-input-help {
    color: #6c757d;
    font-size: 14px;
    margin-top: 15px;
    direction: rtl;
}

