/* Import font (keep unchanged) */
@font-face {
    font-family: 'LXGWWenKaiGB-Regular';
    src: url('../fonts/LXGWWenKaiGB-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'LXGWWenKaiGB-Regular', sans-serif;
}

/* 1. Basic and Background Settings */
body {
    margin: 0; /* Remove the default margin of the body */
    font-family: 'LXGWWenKaiGB-Regular', sans-serif;
    line-height: 1.6;
    user-select: none;
    /* Provide some vertical space for the content container */
    padding: 60px 20px; 
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Background layer: only responsible for providing a blurred background image */
body::before {
    content: '';
    position: fixed; /* Fixed on the viewport */
    inset: 0; /* Equivalent to top/right/bottom/left: 0 */
    z-index: -1; /* Placed at the bottom layer */

    /* Add a semi-transparent black mask to ensure light text is clearly readable */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('background.jpeg');
        
    background-size: cover;
    background-position: center 20%;
    /* Remove fixed background attachment to prevent wallpaper from scrolling with the page */
    background-attachment: scroll;
    filter: blur(8px); /* Slightly increase the blur to highlight the foreground */
    /* Remove unnecessary styles, which will be applied to the content container */
    /* background-color, box-shadow, backdrop-filter, border-radius, border are all removed */
}

/* 2. Content Glass Container */
.content-wrapper {
    width: 75%;
    max-width: 800px;
    margin: 0 auto; /* Center */
    padding: 30px; /* Increase padding to let the text breathe */

    /* Apply the previously optimized Apple-style glass effect */
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1); /* Lower transparency for a more textured look */
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.2), /* Inner highlight border */
        0 8px 32px rgba(0, 0, 0, 0.25); /* Soft outer shadow */
}

/* 3. Scrollbar Style Fine-tuning (Suggestion) */
/* Hide scrollbar but keep scrolling functionality */
html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* 4. Smooth Scrolling and Content Styles (keep unchanged) */
html {
    scroll-behavior: smooth;
}
.header {
    text-align: center;
    margin-bottom: 30px;
}
.section {
    margin-bottom: 25px;
}
.section-title {
    color: #a6deff;
    border-bottom: 2px solid #a6deff;
    padding-bottom: 5px;
}
.highlight {
    color: #dbA6ff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.info-text {
    color: #ffa6d3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 8px;
    color: white;
}