/* Page Official Entrance 组件 - 币安风格 */

/* 基础容器 - 只保留背景和边框样式，其他由Tailwind处理 */
.page-official-entrance {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--theme-black-light) 50%, var(--theme-black-lighter) 100%);
    border: 1px solid var(--border-light, rgba(240, 185, 11, 0.2));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin: 2rem 0;
}

.page-official-entrance:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--border-dark, rgba(240, 185, 11, 0.4));
}

/* 页面标题 - 自定义 */
.page-title {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}