/* style.css - 全特无人自助电玩系统官网自定义样式 */

/* 全局滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B0F19;
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00F0FF;
}

/* 霓虹灯文本效果 */
.neon-text-cyan {
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5), 0 0 15px rgba(0, 240, 255, 0.3);
}
.neon-text-pink {
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.5), 0 0 15px rgba(255, 0, 60, 0.3);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 背景虚化过渡动画 */
#navbar {
    transition: background-color 0.3s ease, padding 0.3s ease;
}
.navbar-scrolled {
    background-color: rgba(11, 15, 25, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

/* 输入框获取焦点动画 */
input:focus {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}