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

/* 使用CDN字体，但优先使用系统字体作为fallback */
@import url('https://font.webcache.cn/google/css2?family=Inter:wght@400;500;600;700;900&display=swap');
@import url('https://font.webcache.cn/google/css2?family=ZCOOL+XiaoWei&display=swap');
@import url('https://font.webcache.cn/google/css2?family=Noto+Serif+SC:wght@400;600;700;900&display=swap');

:root {
    --primary-color: #8B7DC8;
    --secondary-color: #6B9FE8;
    --accent-color: #B794F6;
    --dark-bg: #0c0505;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.55);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
    --font-serif: 'ZCOOL XiaoWei', 'Noto Serif SC', 'SimSun', 'STZhongsong', 'STSong', 'NSimSun', serif;
    --primary-jin: var(--primary-color);
}

body {
    font-family: var(--font-serif);
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* 加载动画 */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.signature-logo {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOut 2s ease-in-out infinite;
}

.signature-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5em;
    color: var(--primary-color);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* 视频背景容器 */
.video-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: opacity 0.5s ease;
}

@media (max-aspect-ratio: 16/9) {
    .background-video {
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9) {
    .background-video {
        width: 100%;
        height: auto;
    }
}

/* 视频遮罩层 */
.video-overlay-center {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(12, 5, 5, 0.42) 100%);
    pointer-events: none;
}

.video-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 3, 3, 0.72), rgba(20, 3, 3, 0.28) 48%, transparent);
    pointer-events: none;
}

.video-overlay-corner {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 70% at 0% 100%, rgba(14, 2, 2, 0.72), rgba(14, 2, 2, 0.3) 55%, transparent 78%);
    pointer-events: none;
}

.video-overlay-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 62%;
    width: min(94%, 54rem);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    mask-image: radial-gradient(ellipse 95% 95% at 12% 92%, black 28%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 95% 95% at 12% 92%, black 28%, transparent 72%);
    pointer-events: none;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: calc(env(safe-area-inset-top) + 0.75rem) 2rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    padding: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
}

/* 导航链接中的"堇"字高亮 */
.nav-link .highlight-jin {
    color: var(--accent-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: var(--font-serif);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-toggle-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.video-toggle-btn svg {
    width: 1rem;
    height: 1rem;
}

.video-toggle-btn .toggle-icon {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

/* 主内容区 */
.main-content {
    position: relative;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
}

.hero-content {
    max-width: 60%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* 标题区域 */
.hero-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
    animation: fadeUp 0.8s ease-out 0.15s both;
}

.kicker-line {
    display: inline-block;
    width: 2.5rem;
    height: 1px;
    background: var(--primary-color);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 4.8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    animation: fadeUp 0.8s ease-out 0.3s both;
}

.title-accent {
    margin-left: 0.18em;
    font-family: var(--font-serif);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.6);
    animation: fadeUp 0.8s ease-out 0.3s both;
}

/* 社交链接 */
.social-links {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 125, 200, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 1.125rem;
    height: 1.125rem;
}

.social-link .iconfont {
    font-size: 1.125rem;
}

.social-link .social-icon {
    width: 1.125rem;
    height: 1.125rem;
    filter: brightness(0) invert(1);
}

/* 导航按钮网格 */
.hero-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 42rem;
    animation: fadeUp 0.8s ease-out 0.48s both;
}

.hero-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 125, 200, 0.4);
}

.hero-nav-btn:active {
    transform: scale(0.98);
}

.btn-label {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

/* 按钮中的"堇"字高亮 */
.btn-label .highlight-jin {
    color: var(--accent-color);
}

.btn-caption {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.hero-nav-btn:hover .btn-caption {
    color: rgba(255, 255, 255, 0.85);
}

/* 内容区域 - 添加渐变背景 */
.content-sections {
    position: relative;
    background: linear-gradient(180deg,
        rgba(12, 5, 5, 0.85) 0%,
        rgba(26, 22, 37, 0.90) 30%,
        rgba(45, 37, 64, 0.92) 60%,
        rgba(12, 5, 5, 0.95) 100%);
    z-index: 10;
}

/* 添加背景模糊效果 */
.content-sections::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(139, 125, 200, 0.08) 0%,
        rgba(107, 159, 232, 0.08) 50%,
        rgba(139, 125, 200, 0.08) 100%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.content-section {
    padding: 5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

/* section-title 中的"堇"字高亮 */
.section-title .highlight-jin {
    color: var(--accent-color);
}

/* 个人简介 */
.profile-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.profile-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* 游戏网格 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.game-card {
    position: relative;
    padding-top: 100%; /* 1:1 正方形 */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.game-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(139, 125, 200, 0.15), rgba(107, 159, 232, 0.15));
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.game-name-en {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 电竞历程 */
.esports-timeline {
    margin-top: 3rem;
    padding: 0;
    background: transparent;
    border: none;
}

.esports-timeline h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: inline-block;
    position: relative;
}

.esports-timeline h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4375rem;
    top: 1.75rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid var(--dark-bg);
    z-index: 1;
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 90px;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 人物关系网 */
.relations-network {
    position: relative;
    min-height: 600px;
    padding: 2rem;
    background: transparent;
    border: none;
}

.network-svg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.network-edge {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.network-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.node-link {
    text-decoration: none;
    display: block;
}

.node-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.node-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.node-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 125, 200, 0.5);
    border-color: var(--primary-color);
}

.node-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .relations-network {
        min-height: 400px;
    }

    .node-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* 录播站与日历 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    padding: 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
}

.info-box .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.archive-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.archive-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.archive-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.link-icon {
    font-size: 1.5rem;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-info p {
    font-size: 1rem;
    color: var(--text-muted);
}

.schedule-time {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color) !important;
}

.schedule-note {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* 页脚 */
.footer {
    position: relative;
    z-index: 10;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 3rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

/* 动画 */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式 */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .nav-link {
        font-size: 0.625rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-section {
        padding: 1.5rem;
        min-height: 80vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-nav-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .profile-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 1.25rem 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        max-width: 75%;
    }
}

/* 创作者推荐区域 */
.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.creator-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.creator-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.creator-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.creator-card:hover .creator-avatar {
    border-color: var(--primary-color);
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.creator-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.creator-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 2px;
}

.creator-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.creator-tag {
    font-size: 0.8125rem;
    padding: 0.25rem 0.625rem;
    background: rgba(139, 125, 200, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(139, 125, 200, 0.3);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .creators-grid {
        grid-template-columns: 1fr;
    }

    .creator-card {
        padding: 1.25rem;
    }

    .creator-avatar {
        width: 50px;
        height: 50px;
    }
}

/* 个人信息卡片 */
.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    padding: 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-title::before {
    content: '';
    width: 4px;
    height: 1.25rem;
    background: var(--primary-color);
}

.basic-info-grid {
    display: grid;
    gap: 1rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-color);
}

.info-row-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    min-width: 80px;
}

.info-row-value {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.color-preview {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.color-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.likes-dislikes-list {
    display: grid;
    gap: 0.75rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.list-item-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.list-item-text {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.fanclub-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(106, 137, 228, 0.1), rgba(141, 153, 221, 0.1));
    border: 1px solid rgba(106, 137, 228, 0.3);
}

.fanclub-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.fanclub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fanclub-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.fanclub-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .profile-cards {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-row-label {
        min-width: 60px;
        font-size: 0.875rem;
    }
}

/* 重新设计的个人简介 */
.profile-main-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin-top: 2rem;
    padding: 3rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.profile-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-frame {
    width: 300px;
    height: 400px;
    transform: rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.photo-frame:hover {
    transform: rotate(0deg);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-main-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-intro {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.basic-info-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item-large {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label-large {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.color-display {
    display: flex;
    gap: 1.5rem;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.color-code {
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    color: var(--text-light);
    font-weight: 600;
}

.fanclub-info-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fanclub-image-hover {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.fanclub-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.fanclub-image-hover:hover .fanclub-thumb {
    transform: scale(3);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.preferences-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.preference-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preference-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.preference-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.preference-content {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .preferences-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fanclub-inline {
        flex-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    .profile-main-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .photo-frame {
        width: 250px;
        height: 333px;
    }

    .preferences-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-main-card {
        padding: 1.5rem;
    }

    .photo-frame {
        width: 200px;
        height: 267px;
    }

    .intro-text {
        font-size: 1rem;
    }

    .info-value-large {
        font-size: 1.25rem;
    }

    .color-display {
        flex-direction: column;
        gap: 1rem;
    }

    .fanclub-banner {
        flex-direction: column;
        text-align: center;
    }
}
