/* 子页面通用样式 */

/* 子页面导航栏修复 - 无右侧按钮时左对齐 */
.page-main .nav-container {
    justify-content: flex-start;
}

.page-main {
    min-height: 100vh;
    padding-top: calc(env(safe-area-inset-top) + 5rem);
    padding-bottom: 4rem;
    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%);
}

/* 子页面背景模糊效果 */
.page-main::before {
    content: '';
    position: fixed;
    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: -2;
    opacity: 0.6;
}

.page-main::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at top,
        rgba(139, 125, 200, 0.12) 0%,
        transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* 页面标题中的"堇"字高亮 */
.page-title .highlight-jin {
    color: var(--accent-color);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 页面头部 */
.page-header {
    margin-bottom: 4rem;
    animation: fadeUp 0.8s ease-out;
}

.page-kicker {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* 歌曲列表 */
.songs-section {
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.song-item {
    display: grid;
    grid-template-columns: 60px 1fr auto 60px;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.song-item:hover {
    background: rgba(139, 125, 200, 0.08);
    border-color: rgba(139, 125, 200, 0.3);
    transform: translateX(8px);
}

.song-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.song-info {
    min-width: 0;
}

.song-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-artist {
    font-size: 0.875rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-duration {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.song-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 125, 200, 0.15);
    border: 1px solid rgba(139, 125, 200, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.song-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

.song-link svg {
    width: 20px;
    height: 20px;
}

/* 导航栏激活状态 */
.nav-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
}

/* 响应式 */
@media (max-width: 768px) {
    .page-main {
        padding-top: calc(env(safe-area-inset-top) + 8rem);
    }

    .page-container {
        padding: 0 1rem;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .song-item {
        grid-template-columns: 40px 1fr auto 40px;
        gap: 1rem;
        padding: 1rem;
    }

    .song-number {
        font-size: 1.125rem;
    }

    .song-title {
        font-size: 1rem;
    }

    .song-artist {
        font-size: 0.8125rem;
    }

    .song-duration {
        font-size: 0.875rem;
    }

    .song-link {
        width: 36px;
        height: 36px;
    }
}

/* 筛选栏 */
.filter-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-light);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* 画廊网格 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.gallery-item {
    animation: fadeUp 0.5s ease;
}

.gallery-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.gallery-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, rgba(139, 125, 200, 0.15), rgba(107, 159, 232, 0.15));
    overflow: hidden;
}

.placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

.gallery-info {
    padding: 1.25rem;
}

.gallery-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

/* 响应式 */
@media (max-width: 768px) {
    .filter-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        flex-shrink: 0;
        font-size: 0.8125rem;
        padding: 0.5rem 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-info {
        padding: 1rem;
    }

    .gallery-info h3 {
        font-size: 1rem;
    }

    .placeholder {
        font-size: 3rem;
    }
}

/* 关于页面样式 */
.about-content {
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 125, 200, 0.12);
    border: 1px solid rgba(139, 125, 200, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
}

.disclaimer-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.disclaimer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-section h2 {
        font-size: 1.25rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-btn {
        justify-content: center;
    }
}

/* 皮套列表样式 */
.costumes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.costume-year {
    margin-top: 2rem;
}

.year-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(139, 125, 200, 0.3);
}

.costume-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    transition: all 0.3s ease;
}

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

.costume-image {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
    background: linear-gradient(135deg, rgba(139, 125, 200, 0.15), rgba(107, 159, 232, 0.15));
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 5rem;
}

.costume-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
}

.costume-badge.new {
    background: linear-gradient(135deg, #4ecdc4, #44a8a0);
    color: var(--text-light);
}

.costume-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--text-light);
}

.costume-badge.classic {
    background: linear-gradient(135deg, #ffd93d, #f6c90e);
    color: #333;
}

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

.costume-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.costume-date {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

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

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(139, 125, 200, 0.15);
    border: 1px solid rgba(139, 125, 200, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.costume-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-light);
}

.costume-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .costume-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .costume-image {
        padding-top: 100%;
    }

    .placeholder-icon {
        font-size: 4rem;
    }

    .costume-title {
        font-size: 1.25rem;
    }

    .costume-desc {
        font-size: 0.9375rem;
    }

    .year-label {
        font-size: 1.25rem;
    }
}

/* 子页面背景 - 纯黑色 */

/* 更新日志样式 */
.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.changelog-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.changelog-item:hover {
    border-color: var(--primary-color);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.version-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 9999px;
    font-family: 'Inter', monospace;
}

.changelog-date {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Inter', monospace;
}

.changelog-content {
    padding: 2rem;
}

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

.changelog-section {
    margin-bottom: 1.5rem;
}

.changelog-section:last-child {
    margin-bottom: 0;
}

.changelog-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.changelog-section ul {
    list-style: none;
    padding: 0;
}

.changelog-section li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    font-size: 0.9375rem;
}

.changelog-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 歌曲列表 - komichi 风格 */
.songs-list {
    gap: 0 !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.song-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0 !important;
}

.song-item:last-child {
    border-bottom: none !important;
}

.song-item:hover {
    background: rgba(139, 125, 200, 0.08) !important;
    transform: none !important;
}

.song-number {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    font-family: 'Inter', monospace;
}

.song-link {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-muted) !important;
    width: 36px !important;
    height: 36px !important;
}

.song-duration {
    font-family: 'Inter', monospace;
}

@media (max-width: 768px) {
    .changelog-header {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
        align-items: flex-start;
    }

    .changelog-content {
        padding: 1.5rem;
    }

    .changelog-title {
        font-size: 1.25rem;
    }
}

/* 歌曲表格样式 - 参考 komichi 风格 */
.songs-table {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
}

.song-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px 60px;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.song-row:last-child {
    border-bottom: none;
}

.song-row:not(.song-header):hover {
    background: rgba(255, 255, 255, 0.05);
}

.song-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.song-number {
    text-align: center;
    font-family: 'Inter', monospace;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.song-row:not(.song-header) .song-number {
    font-size: 1rem;
}

.song-info {
    min-width: 0;
}

.song-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.song-artist {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.song-duration {
    text-align: right;
    font-family: 'Inter', monospace;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

.song-action {
    display: flex;
    justify-content: center;
}

.song-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.song-link:hover {
    color: var(--primary-color);
}

.song-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .song-row {
        grid-template-columns: 40px 1fr 70px 40px;
        gap: 1rem;
        padding: 0.875rem 1rem;
    }

    .song-title {
        font-size: 0.9375rem;
    }

    .song-artist {
        font-size: 0.8125rem;
    }
}

/* 音乐控制区 */
.music-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
}

.search-box svg {
    width: 1.125rem;
    height: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-size: 0.9375rem;
    font-family: var(--font-serif);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.filter-tag {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag:hover {
    border-color: var(--primary-color);
    color: var(--text-light);
}

.filter-tag.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

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

.submit-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .music-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        width: 100%;
    }

    .filter-tags {
        width: 100%;
        overflow-x: auto;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 皮套瀑布流布局 */
.costumes-masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

.costume-card {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.costume-card-image {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
    background: linear-gradient(135deg, rgba(139, 125, 200, 0.15), rgba(107, 159, 232, 0.15));
}

.costume-card-info {
    padding: 1.25rem;
}

.costume-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.costume-card-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

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

@media (max-width: 1024px) {
    .costumes-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .costumes-masonry {
        column-count: 1;
    }
}

/* 画廊纯图片展示 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.gallery-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, rgba(139, 125, 200, 0.15), rgba(107, 159, 232, 0.15));
    overflow: hidden;
}

.gallery-info {
    display: none;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
}

/* 页面签名图片 */
.page-header {
    position: relative;
}

.page-signature {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

@media (max-width: 768px) {
    .page-signature {
        width: 140px;
        height: 140px;
    }
}

/* 关于页面链接样式 */
.link-primary {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.link-primary:hover {
    border-bottom-color: var(--primary-color);
}

.about-content code {
    padding: 0.125rem 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* 彩蛋样式 */
.easter-egg {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.easter-egg details {
    cursor: pointer;
}

.easter-egg summary {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    list-style: none;
    padding: 1rem;
    background: rgba(139, 125, 200, 0.1);
    border: 1px solid rgba(139, 125, 200, 0.3);
    transition: all 0.3s ease;
    user-select: none;
}

.easter-egg summary::-webkit-details-marker {
    display: none;
}

.easter-egg summary::before {
    content: '▶ ';
    display: inline-block;
    transition: transform 0.3s ease;
}

.easter-egg details[open] summary::before {
    transform: rotate(90deg);
}

.easter-egg summary:hover {
    background: rgba(139, 125, 200, 0.15);
    border-color: var(--primary-color);
}

.easter-egg-content {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-color);
    line-height: 1.8;
    animation: fadeIn 0.5s ease;
}

.easter-egg-content p {
    color: var(--text-light);
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
