/* 油金库PC端官网样式 - 黑金配色 */

/* ========== 全局样式 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主题色 */
    --primary-gold: #F7B84B;
    --primary-gold-dark: #E5A73B;
    --bg-black: #0A0A0A;
    --bg-dark: #1A1A1A;
    --bg-card: #1E1E1E;
    --text-light: #F4F3FC;
    --text-gray: rgba(244, 243, 252, 0.7);
    --text-dim: rgba(244, 243, 252, 0.5);

    /* 边框和分割线 */
    --border-gold: rgba(247, 184, 75, 0.2);
    --border-dark: rgba(255, 255, 255, 0.1);

    /* 阴影 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(247, 184, 75, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background: var(--bg-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 顶部导航栏 ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-logo i {
    font-size: 32px;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(247, 184, 75, 0.1);
}

.search-box i {
    color: var(--text-dim);
    font-size: 18px;
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    color: var(--text-light);
    width: 200px;
    font-size: 14px;
}

.search-box input::placeholder {
    color: var(--text-dim);
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: #000;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

/* 用户菜单 */
.user-menu {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(247, 184, 75, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-info:hover {
    background: rgba(247, 184, 75, 0.2);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(247, 184, 75, 0.1);
    color: var(--primary-gold);
}

.dropdown-item i {
    font-size: 18px;
}

/* ========== 全屏轮播横幅 ========== */
.hero-section {
    position: relative;
    height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image,
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-video {
    z-index: 1;
}

.hero-bg-image {
    z-index: 1;
}

/* 兼容旧版 */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.7) 50%,
            rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-info {
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--primary-gold);
    font-weight: 600;
}

.hero-stats .stat i {
    font-size: 24px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: #000;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.hero-nav:hover {
    background: rgba(247, 184, 75, 0.2);
    border-color: var(--primary-gold);
}

.hero-prev {
    left: 40px;
}

.hero-next {
    right: 40px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    width: 60px;
}

/* ========== 主内容区域 ========== */
.content-wrapper {
    padding: 60px 0;
    background: var(--bg-black);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* ========== 区块标题 ========== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
}

.section-title i {
    color: var(--primary-gold);
    font-size: 32px;
}

.section-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.section-more:hover {
    gap: 12px;
}

/* ========== 游戏列表 ========== */
.game-list {
    display: grid;
    gap: 16px;
}

.game-card-horizontal {
    display: flex;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card-horizontal:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.game-cover {
    position: relative;
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.game-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card-horizontal:hover .game-cover img {
    transform: scale(1.1);
}

.game-rating {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: #000;
    padding: 3px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.game-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card-horizontal .game-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.game-genre {
    font-size: 12px;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.game-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-gray);
}

.stat-item i {
    color: var(--primary-gold);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(247, 184, 75, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: var(--primary-gold);
    color: #000;
}

/* ========== 侧边栏 ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
}

.card-header i {
    color: var(--primary-gold);
    font-size: 24px;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
}

/* 公告列表 */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notice-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notice-tag {
    flex-shrink: 0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.notice-hot {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
}

.notice-new {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
}

.notice-important {
    background: linear-gradient(135deg, #FFA726 0%, #FF9800 100%);
}

.notice-activity {
    background: linear-gradient(135deg, #9C27B0 0%, #8E24AA 100%);
}

.notice-normal {
    background: linear-gradient(135deg, #607D8B 0%, #546E7A 100%);
}

.notice-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 资讯列表 */
.article-list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-item-sidebar {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.article-item-sidebar:hover {
    transform: translateX(4px);
}

.article-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info-sidebar {
    flex: 1;
}

.article-title-sidebar {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-meta-sidebar {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-dim);
}

.article-meta-sidebar span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-meta-sidebar i {
    color: var(--primary-gold);
}

/* ========== 底部页脚 ========== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(247, 184, 75, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========== 游戏中心页面 ========== */
.page-header-section {
    padding: 120px 0 40px;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, var(--bg-black) 100%);
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-title i {
    color: var(--primary-gold);
}

.page-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

/* 筛选栏 */
.filter-section {
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
}

.filter-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.filter-label {
    font-weight: 600;
    color: var(--text-light);
    min-width: 50px;
    padding-top: 6px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-option {
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.filter-option:hover {
    color: var(--primary-gold);
    background: rgba(247, 184, 75, 0.1);
}

.filter-option.active {
    background: var(--primary-gold);
    color: #000;
    font-weight: 600;
}

/* 游戏网格 */
.games-section {
    padding-bottom: 80px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.game-card-grid {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card-grid:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.game-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card-cover {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.game-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card-grid:hover .game-card-cover img {
    transform: scale(1.1);
}

.game-card-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: #000;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-card-info {
    padding: 16px;
}

.game-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-genre {
    font-size: 13px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.game-card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-dim);
}

.game-card-stats .stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-card-stats i {
    color: var(--text-gray);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-numbers {
    display: flex;
    gap: 8px;
}

.page-btn,
.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 40px;
    padding: 0 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-title i {
    color: var(--primary-gold);
}

.page-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

/* 筛选栏 */
.filter-section {
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
}

.filter-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.filter-label {
    font-weight: 600;
    color: var(--text-light);
    min-width: 50px;
    padding-top: 6px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-option {
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.filter-option:hover {
    color: var(--primary-gold);
    background: rgba(247, 184, 75, 0.1);
}

.filter-option.active {
    background: var(--primary-gold);
    color: #000;
    font-weight: 600;
}

/* 游戏网格 */
.games-section {
    padding-bottom: 80px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.game-card-grid {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card-grid:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.game-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card-cover {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.game-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card-grid:hover .game-card-cover img {
    transform: scale(1.1);
}

.game-card-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: #000;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-card-info {
    padding: 16px;
}

.game-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-genre {
    font-size: 13px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.game-card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-dim);
}

.game-card-stats .stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-card-stats i {
    color: var(--text-gray);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-numbers {
    display: flex;
    gap: 8px;
}

.page-btn,
.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 40px;
    padding: 0 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-number:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.page-number.active {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    font-weight: 600;
}

/* ========== 游戏详情页 ========== */
.game-detail-header {
    position: relative;
    min-height: 400px;
    padding: 120px 0 60px;
    overflow: hidden;
}

.game-detail-header .header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-black) 100%);
}

.game-basic-info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.game-basic-info .game-logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    border: 4px solid var(--primary-gold);
    object-fit: cover;
}

.game-basic-info .game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-name-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.game-name {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-light);
    margin: 0;
}

.platform-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(247, 184, 75, 0.2);
    border: 1px solid rgba(247, 184, 75, 0.4);
    border-radius: 8px;
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 500;
}

.game-slogan {
    font-size: 16px;
    color: var(--text-gray);
}

.detail-content-wrapper {
    padding: 40px 0 80px;
}

/* 厂商卡片 */
.publisher-card {
    background: rgba(247, 184, 75, 0.1);
    border: 2px solid rgba(247, 184, 75, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.publisher-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
}

.publisher-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.publisher-label {
    font-size: 14px;
    color: var(--text-gray);
}

.publisher-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.verified-badge {
    width: 48px;
    height: 48px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}

/* 展开按钮 */
.expand-button {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(247, 184, 75, 0.08);
    border: 2px solid rgba(247, 184, 75, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.expand-button:hover {
    background: rgba(247, 184, 75, 0.15);
    border-color: rgba(247, 184, 75, 0.4);
}

.expand-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-gold);
}

.expand-icon {
    font-size: 20px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

/* 可展开信息 */
.expandable-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
}

.info-item {
    padding: 12px 0;
    display: flex;
    gap: 12px;
}

.info-label {
    font-weight: 600;
    color: var(--text-light);
    min-width: 80px;
}

.info-value {
    color: var(--text-gray);
    flex: 1;
}

.info-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 16px 0;
}

.info-item-half {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.website-link {
    color: var(--primary-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.website-link:hover {
    text-decoration: underline;
}

.info-value.empty {
    color: var(--text-dim);
}

/* 评分区域 */
.rating-section-inner {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid rgba(247, 184, 75, 0.15);
}

.rating-header {
    margin-bottom: 24px;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.section-subnote {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: normal;
}

.rating-section {
    display: flex;
    justify-content: center;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.score-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.score-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
}

.score-total {
    font-size: 24px;
    color: var(--text-gray);
}

.stars {
    display: flex;
    gap: 4px;
}

.star-icon {
    font-size: 24px;
    color: var(--text-dim);
}

.star-icon.active-star {
    color: var(--primary-gold);
}

.rating-count {
    font-size: 14px;
    color: var(--text-gray);
}

/* 收益解析 */
.revenue-analysis {
    position: relative;
}

.revenue-content {
    position: relative;
    padding: 32px;
    background: rgba(247, 184, 75, 0.05);
    border: 2px solid rgba(247, 184, 75, 0.2);
    border-radius: 16px;
}

.revenue-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    opacity: 0.1;
    pointer-events: none;
}

.decoration-icon {
    font-size: 48px;
    color: var(--primary-gold);
}

.revenue-text-wrapper {
    position: relative;
    z-index: 1;
}

.revenue-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    white-space: pre-wrap;
}

.revenue-bottom-line {
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

/* 文章列表 */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-gold);
    transform: translateX(4px);
}

.article-cover {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.article-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-dim);
}

.hero-title {
    font-size: 42px;
}
}

/* ========== 资讯列表页 ========== */
.page-header-section {
    padding: 60px 0 40px;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-title i {
    color: var(--primary-gold);
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-gray);
}

.articles-section {
    padding-bottom: 80px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card-cover {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.article-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-cover img {
    transform: scale(1.1);
}

.article-card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-summary {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.article-card-author {
    font-size: 12px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
    border-top: 1px solid var(--border-dark);
    padding-top: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========== 资讯详情页 ========== */
.article-reader-page {
    padding: 70px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.chapter-summary {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.summary-text {
    color: var(--primary-gold);
    font-weight: 500;
}

.chapter-toggle {
    display: none;
    /* 默认隐藏，移动端显示 */
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(247, 184, 75, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    color: var(--primary-gold);
    font-size: 14px;
    cursor: pointer;
}

.reader-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.chapter-sidebar {
    width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 20px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 16px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
}

.chapter-count {
    font-size: 12px;
    color: var(--text-dim);
}

.chapter-list {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chapter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.chapter-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.chapter-item.active {
    background: var(--primary-gold);
    color: #000;
    font-weight: 600;
}

.chapter-item.locked {
    opacity: 0.6;
    cursor: not-allowed;
}

.chapter-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chapter-order {
    font-size: 12px;
    opacity: 0.8;
}

.chapter-title {
    font-size: 14px;
}

.chapter-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 40px;
    min-height: 600px;
}

.chapter-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.chapter-title-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.chapter-cover {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 32px;
}

.chapter-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.chapter-body p {
    margin-bottom: 20px;
}

.chapter-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.chapter-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dark);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(.disabled) {
    background: var(--primary-gold);
    color: #000;
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
    border: 1px solid var(--border-dark);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    color: var(--text-dim);
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .reader-container {
        flex-direction: column;
    }

    .chapter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        max-height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
        border-radius: 0;
        border-right: 1px solid var(--border-gold);
    }

    .chapter-sidebar.show {
        left: 0;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .chapter-toggle {
        display: flex;
    }

    .chapter-content {
        padding: 20px;
    }

    .chapter-title-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .search-box {
        display: none;
    }

    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========== 创作者中心 ========== */
.creator-center {
    padding: 70px 0;
}

.creator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.creator-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.creator-title i {
    color: var(--primary-gold);
}

.btn-create {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: #000;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-create:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 184, 75, 0.4);
}

.creator-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

.article-manage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-manage-item {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.article-manage-item:hover {
    border-color: var(--border-gold);
}

.article-manage-cover {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-manage-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-cover {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 32px;
}

.article-manage-info {
    flex: 1;
}

.article-manage-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.article-manage-summary {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-manage-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.article-manage-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-manage-meta i {
    color: var(--primary-gold);
}

.status-normal {
    color: #4CAF50;
}

.status-hidden {
    color: #FF5252;
}

.article-manage-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-edit {
    background: rgba(247, 184, 75, 0.1);
    color: var(--primary-gold);
    border: 1px solid var(--border-gold);
}

.btn-edit:hover {
    background: rgba(247, 184, 75, 0.2);
}

.btn-view {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-view:hover {
    background: rgba(76, 175, 80, 0.2);
}

.btn-delete {
    background: rgba(255, 82, 82, 0.1);
    color: #FF5252;
    border: 1px solid rgba(255, 82, 82, 0.3);
}

.btn-delete:hover {
    background: rgba(255, 82, 82, 0.2);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-dim);
}

.empty-state i {
    font-size: 64px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 24px;
}

.btn-create-empty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: #000;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* ========== 文章编辑器 ========== */
.creator-editor {
    padding: 70px 0;
    max-width: 900px;
    margin: 0 auto;
}

.editor-header {
    margin-bottom: 32px;
}

.editor-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.editor-title i {
    color: var(--primary-gold);
}

.article-form {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.required {
    color: #FF5252;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
}

.btn-cancel {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-gold);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 184, 75, 0.4);
}


/* ========== Summernote 编辑器样式定制 ========== */
.note-editor {
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.note-editor.note-frame {
    border-color: var(--border-dark);
}

.note-editor.note-frame.fullscreen {
    z-index: 9999;
}

.note-toolbar {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-dark);
    padding: 12px;
}

.note-btn-group {
    margin-right: 8px;
}

.note-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    border-radius: 6px;
    padding: 6px 12px;
    margin: 0 2px;
}

.note-btn:hover {
    background: rgba(247, 184, 75, 0.1);
    border-color: var(--border-gold);
    color: var(--primary-gold);
}

.note-btn.active {
    background: rgba(247, 184, 75, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.note-editable {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    padding: 20px;
    min-height: 400px;
}

.note-editable:focus {
    background: rgba(255, 255, 255, 0.05);
}

.note-statusbar {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border-dark);
}

.note-resizebar {
    background: rgba(247, 184, 75, 0.1);
    border-top: 1px solid var(--border-gold);
}

/* 下拉菜单 */
.note-dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.note-dropdown-item {
    color: var(--text-light);
    padding: 8px 16px;
}

.note-dropdown-item:hover {
    background: rgba(247, 184, 75, 0.1);
    color: var(--primary-gold);
}

/* 对话框 */
.note-modal {
    background: rgba(0, 0, 0, 0.7);
}

.note-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
}

.note-modal-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
}

.note-modal-body {
    color: var(--text-light);
}

.note-modal-footer {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border-dark);
}

.note-form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    border-radius: 6px;
}

.note-form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
}

/* 代码视图 */
.note-codable {
    background: rgba(0, 0, 0, 0.5);
    color: #f8f8f2;
    font-family: 'Courier New', monospace;
}


/* ========== 文章详情页 ========== */
.article-detail-page {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 32px;
}

.article-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.meta-item i {
    color: var(--primary-gold);
    font-size: 16px;
}

.article-game-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(247, 184, 75, 0.05);
    border: 1px solid rgba(247, 184, 75, 0.2);
    border-radius: 12px;
    margin-top: 16px;
}

.game-label {
    font-size: 14px;
    color: var(--text-gray);
}

.game-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.article-cover {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.article-summary {
    padding: 20px;
    background: rgba(247, 184, 75, 0.05);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    margin-bottom: 32px;
}

.article-summary p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.article-content p {
    margin-bottom: 16px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: var(--text-light);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.article-content h1 {
    font-size: 32px;
}

.article-content h2 {
    font-size: 28px;
}

.article-content h3 {
    font-size: 24px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
    margin: 20px 0;
    color: var(--text-gray);
    font-style: italic;
}

.article-content code {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.article-content pre {
    background: rgba(0, 0, 0, 0.5);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-content pre code {
    background: none;
    padding: 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-content table th,
.article-content table td {
    border: 1px solid var(--border-dark);
    padding: 12px;
    text-align: left;
}

.article-content table th {
    background: rgba(247, 184, 75, 0.1);
    font-weight: 600;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 32px;
}

.article-tags i {
    color: var(--primary-gold);
    font-size: 20px;
}

.tags-text {
    font-size: 14px;
    color: var(--text-gray);
}

.article-footer {
    padding-top: 32px;
    border-top: 1px solid var(--border-dark);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(247, 184, 75, 0.1);
    border-color: var(--border-gold);
    color: var(--primary-gold);
}
