* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('../camera/background.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

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

.acrylic-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.acrylic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(45deg);
    z-index: -1;
}

.acrylic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

.header-section {
    text-align: center;
    margin-bottom: 30px;
}

.header-section h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    font-weight: 700;
}

.content-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    text-align: center;
}

.profile-card h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.profile-card h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.profile-card p {
    color: #fff;
    line-height: 1.6;
    margin: 10px 0;
    position: relative;
}

.profile-card p::before {
    content: '▶';
    position: absolute;
    left: -15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.profile-card a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.profile-card a:hover {
    color: #b7daff;
}

.wallpaper-section {
    text-align: center;
    margin: 20px 0;
}

.wallpaper-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.wallpaper-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    transition: transform 0.3s;
}

.wallpaper-item:hover {
    transform: scale(1.05);
}

.wallpaper-item img {
    width: 100%;
    height: auto;
    display: block;
}

.wallpaper-item .download-btn {
    display: block;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s;
}

.wallpaper-item .download-btn:hover {
    background: rgba(0, 0, 0, 0.4);
}

.music-section {
    text-align: center;
    margin: 20px 0;
}

.music-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.aplayer{
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(0, 0, 0, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.9);
}

.aplayer .aplayer-info {
    text-align: left !important;
    padding-left: 20px !important;
}

.aplayer .aplayer-info .aplayer-music {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.aplayer .aplayer-info .aplayer-music .aplayer-author {
    text-align: left !important;
    margin-left: 0 !important;
}

.aplayer .aplayer-list ol li {
    text-align: left !important;
    padding-left: 15px !important;
}

.aplayer .aplayer-list ol li .aplayer-list-title {
    text-align: left !important;
}

.aplayer .aplayer-list ol li .aplayer-list-author {
    text-align: left !important;
    float: left !important;
    margin-left: 0 !important;
}

.aplayer .aplayer-lrc:before,
.aplayer .aplayer-lrc:after {
    background: transparent !important;
    filter: none !important;
}

.aplayer .aplayer-lrc p:nth-child(1) {
    color: #000000 !important;
}

.aplayer .aplayer-lrc p:nth-child(2) {
    color: #505050 !important;
}

.game-section {
    text-align: center;
    margin: 20px 0;
}

.game-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.game-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.game-link:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.other-section {
    text-align: center;
    margin: 20px 0;
}

.other-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.other-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.other-links a {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.other-links a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 20px;
    margin-top: 30px;
}

.section-title {
    color: white;
    font-size: 1.5rem;
    margin: 20px 0 10px 0;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b7daff, transparent);
    margin: 8px auto 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .header-section h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        grid-template-columns: 1fr;
    }
    
    .acrylic-card {
        padding: 20px;
    }
}