/**
 * 微信浏览器引导遮罩层样式
 * AeroCore Theme
 */

/* 遮罩层容器 */
.wechat-browser-guide {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

/* 显示状态 */
.wechat-browser-guide.show {
    display: block;
}

/* 半透明遮罩 */
.wechat-browser-guide__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

/* 内容区域 */
.wechat-browser-guide__content {
    position: relative;
    z-index: 1;
    max-width: 320px;
    margin: 80px auto 0;
    padding: 30px 24px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* 箭头提示 */
.wechat-browser-guide__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #07c160;
}

.wechat-browser-guide__arrow svg {
    width: 32px;
    height: 32px;
    animation: arrow-bounce 1s ease-in-out infinite;
}

.wechat-browser-guide__arrow span {
    font-size: 15px;
    color: #333;
}

.wechat-browser-guide__arrow strong {
    color: #07c160;
}

/* 文字提示 */
.wechat-browser-guide__text {
    margin-bottom: 24px;
}

.wechat-browser-guide__text p {
    margin: 8px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.wechat-browser-guide__text strong {
    color: #07c160;
}

/* 复制按钮区域 */
.wechat-browser-guide__copy {
    margin-top: 16px;
}

.wechat-browser-guide__copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #07c160;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.wechat-browser-guide__copy-btn:hover {
    background: #06ad56;
}

.wechat-browser-guide__copy-btn:active {
    transform: scale(0.98);
}

.wechat-browser-guide__copy-btn svg {
    width: 18px;
    height: 18px;
}

/* 箭头弹跳动画 */
@keyframes arrow-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* 暗色模式适配 */
@media (prefers-color-scheme: dark) {
    .wechat-browser-guide__content {
        background: #2a2a2a;
    }

    .wechat-browser-guide__arrow span,
    .wechat-browser-guide__text p {
        color: #e0e0e0;
    }

    .wechat-browser-guide__copy-btn {
        background: #07c160;
    }
}

/* 小屏幕适配 */
@media (max-width: 360px) {
    .wechat-browser-guide__content {
        margin: 60px 16px 0;
        padding: 24px 16px;
    }
}
