/* 组件样式 */

/* 抖音图标样式 */
.douyin-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    vertical-align: middle;
}

.douyin-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

/* 即将上线样式 */
.coming-soon {
    margin-top: 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* 链接样式 */
.coming-soon a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.coming-soon a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.coming-soon a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #FF69B4, #FFB6C1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.coming-soon a:hover::after {
    transform: scaleX(1);
}

/* 平台信息样式 */
.platform-info {
    margin-top: 30px;
    text-align: center;
}

/* 按钮容器样式 */
.action-buttons {
    margin-top: 30px;
    text-align: center;
}

/* 主要按钮样式优化 */
.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* 页脚链接样式优化 */
footer a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

footer a:hover {
    color: var(--primary-darker);
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

footer a:hover::after {
    transform: scaleX(1);
}