/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Import condensed font for better compression */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 50px 40px 20px 40px; /* 增加顶部padding到50px，保持内容间距 */
    transition: transform 0.3s ease; /* Added smooth transition for hide/show */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

header.hidden {
    transform: translateY(-100%);
}

.header-left {
    display: flex;
    flex-direction: column;
}

.artist-name {
    font-size: 2.5rem;
    font-weight: 500; /* Medium weight for thinner appearance */
    font-family: 'Inter', 'Helvetica Neue', 'Futura', 'Arial', sans-serif;
    letter-spacing: 0.6em; /* Further reduced letter spacing for tighter look */
    text-transform: uppercase;
    margin-bottom: 1rem; /* Consistent spacing between title and subtitle */
    line-height: 0.85; /* Slightly compressed height */
    width: 100%; /* Ensure full width for proper alignment */
    text-align: left;
    transform: scaleY(0.9) scaleX(0.95); /* Vertical compression and horizontal reduction */
    font-stretch: normal; /* Normal font stretch for thinner appearance */
    pointer-events: auto;
}

.artist-name-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
    display: inline-block;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.artist-name-link:hover {
    opacity: 0.7;
}

.artist-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
    line-height: 1.3;
    width: 100%; /* Ensure full width for proper alignment */
    text-align: left;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.artist-specialties {
    font-size: 0.8rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    margin-top: 2px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.15em;
    opacity: 0.6;
    line-height: 1.3;
    width: 100%; /* Ensure full width for proper alignment */
    text-align: left;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    opacity: 1;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin-top: 10px;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.social-link:hover {
    opacity: 0.7;
}

/* Main Content */
.main-content {
    margin-top: 180px; /* Adjusted spacing from top navigation (header now starts from top: 0) */
    padding-top: 0;
}

/* Artwork Grid */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
    grid-auto-rows: 300px;
    gap: 5px; /* 5px spacing between artworks (increased by 2px) */
    max-width: 1600px; /* Increased maximum width */
    margin: 0 auto; /* Center the grid horizontally */
    padding: 0 10px; /* Reduced black margins on left and right (50% reduction) */
    width: 100%;
    box-sizing: border-box;
}

.artwork-item {
    position: relative;
    overflow: hidden;
    background-color: #000000; /* 纯黑色背景，与网页背景完全融合 */
    transition: transform 0.3s ease;
}

.artwork-item:hover {
    transform: scale(1.02);
}

.artwork-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Section Separator */
.section-separator {
    width: 100%;
    max-width: 1600px; /* Match artwork grid max-width */
    height: 1px;
    background-color: #ffffff;
    margin: 120px auto; /* Increased spacing and center alignment */
    opacity: 0.3;
    padding: 0 10px; /* Match artwork grid padding */
    box-sizing: border-box;
}

.section-separator::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Vertical Artwork Section */
.vertical-artwork-section {
    margin-bottom: 60px;
}

.vertical-artwork-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-auto-rows: min-content; /* 自动高度，适应内容 */
    gap: 2px; /* Reduced gap for tighter arrangement */
    max-width: 1600px; /* Match artwork grid max-width */
    margin: 0 auto; /* Center the grid horizontally */
    padding: 0 10px; /* Match artwork grid padding */
    width: 100%;
    box-sizing: border-box;
}

.vertical-artwork-item {
    position: relative;
    overflow: hidden;
    background-color: #000000; /* 纯黑色背景，与网页背景完全融合 */
    transition: transform 0.3s ease;
}

.vertical-artwork-item:hover {
    transform: scale(1.02);
}

.vertical-artwork-image {
    width: 100%;
    height: auto; /* 自动高度，保持原始比例 */
    object-fit: contain; /* Show full artwork without cropping */
    object-position: center;
    display: block;
    background-color: #000000; /* Black background to match page */
    transition: opacity 0.3s ease;
    max-height: 800px; /* 限制最大高度 */
}

/* Dual Reality Artwork Section */
.dual-reality-section {
    margin-bottom: 60px;
}

.dual-reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-auto-rows: 300px; /* Same height as main artwork grid */
    gap: 5px; /* Same gap as main artwork grid */
    max-width: 1600px; /* Match artwork grid max-width */
    margin: 0 auto; /* Center the grid horizontally */
    padding: 0 10px; /* Match artwork grid padding */
    width: 100%;
    box-sizing: border-box;
}

.dual-reality-item {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    transition: transform 0.3s ease;
}

.dual-reality-item:hover {
    transform: scale(1.02);
}

.dual-reality-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .artwork-grid {
        grid-template-columns: repeat(3, 1fr); /* Keep 3 columns */
        grid-auto-rows: 280px;
        max-width: 1200px; /* Increased maximum width */
        gap: 4px; /* Adjusted spacing for smaller screens */
        padding: 0 8px; /* Reduced margins for smaller screens */
    }
    
    .vertical-artwork-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        max-width: 1200px;
        gap: 2px;
        padding: 0 8px;
    }
    
    .dual-reality-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 280px;
        max-width: 1200px;
        gap: 4px;
        padding: 0 8px;
    }
    
    .section-separator {
        max-width: 1200px; /* Match artwork grid max-width */
        padding: 0 8px; /* Match artwork grid padding */
        margin: 100px auto; /* Increased spacing for tablet */
    }
    
    .header {
        padding: 1.5rem 2rem;
    }
    
    .artist-name {
        font-size: 2rem;
        font-weight: 500;
        font-stretch: normal;
        letter-spacing: 0.5em; /* Adjusted for smaller screen */
        line-height: 0.85;
        margin-bottom: 0.8rem;
        transform: scaleY(0.9) scaleX(0.95);
    }
    
    .artist-subtitle {
        font-size: 0.8rem;
        font-weight: 400;
        letter-spacing: 0.1em;
    }
    
    .artist-specialties {
        font-size: 0.7rem;
        margin-top: 1px;
        letter-spacing: 0.12em;
    }
    
    .main-content {
        margin-top: 190px; /* 160px + 30px header offset */
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .header-nav {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    /* Mobile dropdown adjustments */
    .dropdown-menu {
        min-width: 160px;
        font-size: 0.75rem;
    }
    
    .dropdown-link {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .artist-name {
        font-size: 1.8rem;
        font-weight: 500;
        font-stretch: normal;
        letter-spacing: 0.4em; /* Adjusted for tablet */
        line-height: 0.85;
        margin-bottom: 0.7rem;
        transform: scaleY(0.9) scaleX(0.95);
    }
    
    .artist-subtitle {
        font-size: 0.7rem;
        font-weight: 400;
        letter-spacing: 0.1em;
    }
    
    .artist-specialties {
        font-size: 0.6rem;
        margin-top: 1px;
        letter-spacing: 0.1em;
    }
    
    .nav-link {
        font-size: 0.7rem;
    }
    
    .social-link {
        font-size: 1rem;
        width: 20px;
        height: 20px;
    }
    
    .artwork-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        grid-auto-rows: 250px;
        gap: 3px; /* Increased spacing */
        padding: 0 8px; /* Reduced margins */
    }
    
    .vertical-artwork-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        gap: 2px;
        padding: 0 8px;
    }
    
    .dual-reality-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        grid-auto-rows: 250px;
        gap: 3px;
        padding: 0 8px;
    }
    
    .section-separator {
        max-width: 100%; /* Full width on smaller screens */
        padding: 0 8px; /* Match artwork grid padding */
        margin: 90px auto; /* Increased spacing for tablet */
    }
    
    .main-content {
        margin-top: 170px; /* 140px + 30px header offset */
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem;
    }
    
    .artist-name {
        font-size: 1.5rem;
        font-weight: 500;
        font-stretch: normal;
        letter-spacing: 0.3em; /* Adjusted for mobile */
        line-height: 0.85;
        margin-bottom: 0.6rem;
        transform: scaleY(0.9) scaleX(0.95);
    }
    
    .artist-subtitle {
        font-size: 0.6rem;
        font-weight: 400;
        letter-spacing: 0.1em;
    }
    
    .artist-specialties {
        font-size: 0.5rem;
        margin-top: 1px;
        letter-spacing: 0.08em;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.6rem;
    }
    
    .social-link {
        font-size: 0.9rem;
        width: 18px;
        height: 18px;
    }
    
    .artwork-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        grid-auto-rows: 200px;
        gap: 3px; /* Increased spacing */
        padding: 0 6px; /* Reduced margins */
    }
    
    .vertical-artwork-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        gap: 2px;
        padding: 0 6px;
    }
    
    .dual-reality-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        grid-auto-rows: 200px;
        gap: 3px;
        padding: 0 6px;
    }
    
    .section-separator {
        max-width: 100%; /* Full width on mobile */
        padding: 0 6px; /* Match artwork grid padding */
        margin: 80px auto; /* Increased spacing for mobile */
    }
    
    .main-content {
        margin-top: 150px; /* 120px + 30px header offset */
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 1rem;
    opacity: 0.7;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.modal-image {
    max-width: 90vw; /* 限制最大宽度为视窗宽度的90% */
    max-height: 90vh; /* 限制最大高度为视窗高度的90% */
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto; /* 居中显示 */
}

.modal-title {
    position: absolute;
    bottom: -60px;
    left: 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.05em;
    text-transform: none;
    opacity: 0.9;
    max-width: 100%;
    word-wrap: break-word;
    z-index: 2001;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    transition: opacity 0.3s ease;
    z-index: 2001;
}

.close-btn:hover {
    opacity: 0.7;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    pointer-events: auto;
    margin: 0 20px;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .close-btn {
        top: -40px;
        font-size: 1.5rem;
    }
    
    .modal-title {
        font-size: 1rem;
        bottom: -50px;
    }
    
    .nav-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .close-btn {
        top: -35px;
        font-size: 1.3rem;
    }
    
    .modal-title {
        font-size: 0.9rem;
        bottom: -45px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 1rem;
        margin: 0 8px;
    }
}

/* Footer Styles */
.footer {
    margin-top: 120px; /* 充足的顶部间距 */
    padding: 80px 40px 60px; /* 上下左右充足的内边距 */
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%);
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* 减少间距 */
}

.footer-title {
    font-size: 1rem; /* 进一步减小字体 */
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: none;
    color: #ffffff;
    opacity: 0.9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.footer-social-links .social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.footer-social-links .social-link:hover {
    opacity: 0.8;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer {
        margin-top: 100px;
        padding: 60px 30px 50px;
    }
    
    .footer-content {
        gap: 18px;
    }
    
    .footer-title {
        font-size: 0.9rem;
    }
    
    .footer-social-links {
        gap: 1.5rem;
    }
    
    .footer-social-links .social-link {
        font-size: 1.2rem;
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 80px;
        padding: 50px 20px 40px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-title {
        font-size: 0.85rem;
        letter-spacing: 0.03em;
    }
    
    .footer-social-links {
        gap: 1.2rem;
    }
    
    .footer-social-links .social-link {
        font-size: 1.1rem;
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .footer {
        margin-top: 60px;
        padding: 40px 15px 30px;
    }
    
    .footer-content {
        gap: 12px;
    }
    
    .footer-title {
        font-size: 0.8rem;
        letter-spacing: 0.02em;
    }
    
    .footer-social-links {
        gap: 1rem;
    }
    
    .footer-social-links .social-link {
        font-size: 1rem;
        width: 24px;
        height: 24px;
    }
} 

/* About Page Styles */
.about-page {
    margin-top: 210px; /* 180px + 30px header offset */
    padding: 0 40px 60px;
    min-height: calc(100vh - 210px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.profile-image {
    flex-shrink: 0;
}

.mascot-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.mascot-image:hover {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.05em;
}

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

.contact-item {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.7;
}

/* Artist Statement */
.artist-statement {
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2em; /* 控制与上块距离 */
}

.statement-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 1.2em; /* 保证段落之间有清晰间隔 */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    text-align: justify;
}

.statement-paragraph:last-child {
    margin-bottom: 0;
}

/* Professional Bio */
.professional-bio {
    padding: 40px 0;
    margin-top: 2em; /* 控制与上块距离 */
    margin-bottom: 2em;
}

.bio-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 1.2em; /* 保证段落之间有清晰间隔 */
}

/* Responsive About Page */
@media (max-width: 1200px) {
    .about-page {
        margin-top: 190px; /* 160px + 30px header offset */
        padding: 0 30px 50px;
    }
    
    .profile-section {
        gap: 30px;
        margin-bottom: 50px;
        padding: 30px 0;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .statement-paragraph {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-page {
        margin-top: 170px; /* 140px + 30px header offset */
        padding: 0 20px 40px;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        margin-bottom: 40px;
        padding: 25px 0;
    }
    
    .mascot-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .artist-statement {
        margin-bottom: 40px;
        padding: 30px 0;
    }
    
    .statement-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .professional-bio {
        padding: 30px 0;
    }
    
    .bio-paragraph {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-page {
        margin-top: 150px; /* 120px + 30px header offset */
        padding: 0 15px 30px;
    }
    
    .profile-section {
        gap: 20px;
        margin-bottom: 30px;
        padding: 20px 0;
    }
    
    .mascot-image {
        width: 80px;
        height: 80px;
    }
    
    .profile-name {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .artist-statement {
        margin-bottom: 30px;
        padding: 25px 0;
    }
    
    .statement-paragraph {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .professional-bio {
        padding: 25px 0;
    }
    
    .bio-paragraph {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Personal Reel Page Styles */
.personal-reel-page {
    margin-top: 210px; /* 180px + 30px header offset */
    padding: 0;
    min-height: calc(100vh - 210px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.reel-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reel-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    text-align: center;
    opacity: 0.9;
}

.reel-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.reel-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Personal Reel Page */
@media (max-width: 1200px) {
    .personal-reel-page {
        margin-top: 180px; /* 150px + 30px header offset */
        padding: 0;
    }
    
    .reel-container {
        max-width: 1000px;
        padding: 0 20px;
    }
    
    .reel-video-wrapper {
        max-width: 1000px;
    }
    
    .reel-title {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .personal-reel-page {
        margin-top: 150px; /* 120px + 30px header offset */
        padding: 0;
    }
    
    .reel-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .reel-video-wrapper {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .reel-title {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .personal-reel-page {
        margin-top: 130px; /* 100px + 30px header offset */
        padding: 0;
    }
    
    .reel-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .reel-video-wrapper {
        max-width: 100%;
        border-radius: 6px;
    }
    
    .reel-title {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

/* Illustration Page Styles */
.illustration-page {
    margin-top: 210px; /* 180px + 30px header offset */
    padding: 0 40px 60px;
    min-height: calc(100vh - 210px);
    background-color: #000000;
}

.illustration-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.illustration-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.05em;
    text-align: center;
    opacity: 0.9;
}

.illustration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 5px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.illustration-item {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    transition: transform 0.3s ease;
}

.illustration-item:hover {
    transform: scale(1.02);
}

.illustration-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
}

/* Illustration Practice Works Section */
.illustration-practice-section {
    margin-bottom: 60px;
}

.illustration-practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content; /* 自动高度，适应内容 */
    gap: 5px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.illustration-practice-item {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    transition: transform 0.3s ease;
}

.illustration-practice-item:hover {
    transform: scale(1.02);
}

.illustration-practice-image {
    width: 100%;
    height: auto; /* 自动高度，保持原始比例 */
    object-fit: contain; /* Show full artwork without cropping */
    object-position: center;
    display: block;
    background-color: #000000; /* Black background to match page */
    transition: opacity 0.3s ease;
    max-height: 800px; /* 限制最大高度 */
}

/* Responsive Illustration Page */
@media (max-width: 1200px) {
    .illustration-page {
        margin-top: 190px; /* 160px + 30px header offset */
        padding: 0 30px 50px;
    }
    
    .illustration-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .illustration-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 280px;
        max-width: 1200px;
        padding: 0 8px;
        gap: 4px;
    }
    
    .illustration-practice-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        max-width: 1200px;
        padding: 0 8px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .illustration-page {
        margin-top: 170px; /* 140px + 30px header offset */
        padding: 0 20px 40px;
    }
    
    .illustration-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .illustration-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        padding: 0 8px;
        gap: 3px;
    }
    
    .illustration-practice-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        padding: 0 8px;
        gap: 3px;
    }
}

@media (max-width: 480px) {
    .illustration-page {
        margin-top: 150px; /* 120px + 30px header offset */
        padding: 0 15px 30px;
    }
    
    .illustration-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .illustration-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        padding: 0 6px;
        gap: 3px;
    }
    
    .illustration-practice-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        padding: 0 6px;
        gap: 3px;
    }
} 

/* Map Design Page Styles */
.map-design-page {
    margin-top: 180px; /* Adjusted spacing from top navigation (header now starts from top: 0) */
    padding: 0 40px 60px;
    min-height: calc(100vh - 180px);
    background-color: #000000;
}

.map-design-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.map-design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content; /* 自动高度，适应内容 */
    gap: 5px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.map-design-item {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    transition: transform 0.3s ease;
}

.map-design-item:hover {
    transform: scale(1.02);
}

.map-design-image {
    width: 100%;
    height: auto; /* 自动高度，保持原始比例 */
    object-fit: contain; /* Show full artwork without cropping */
    object-position: center;
    display: block;
    background-color: #000000; /* Black background to match page */
    transition: opacity 0.3s ease;
    max-height: 800px; /* 限制最大高度 */
}

/* Responsive Map Design Page */
@media (max-width: 1200px) {
    .map-design-page {
        margin-top: 190px; /* 160px + 30px header offset */
        padding: 0 30px 50px;
    }
    
    .map-design-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        max-width: 1200px;
        padding: 0 8px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .map-design-page {
        margin-top: 170px; /* 140px + 30px header offset */
        padding: 0 20px 40px;
    }
    
    .map-design-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        padding: 0 8px;
        gap: 3px;
    }
}

@media (max-width: 480px) {
    .map-design-page {
        margin-top: 150px; /* 120px + 30px header offset */
        padding: 0 15px 30px;
    }
    
    .map-design-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        padding: 0 6px;
        gap: 3px;
    }
}

/* Drawing Art Page Styles */
.drawing-art-page {
    margin-top: 180px; /* Adjusted spacing from top navigation (header now starts from top: 0) */
    padding: 0 40px 60px;
    min-height: calc(100vh - 180px);
    background-color: #000000;
}

.drawing-art-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.drawing-art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content; /* 自动高度，适应内容 */
    gap: 5px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.drawing-art-item {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    transition: transform 0.3s ease;
}

.drawing-art-item:hover {
    transform: scale(1.02);
}

.drawing-art-image {
    width: 100%;
    height: auto; /* 自动高度，保持原始比例 */
    object-fit: contain; /* Show full artwork without cropping */
    object-position: center;
    display: block;
    background-color: #000000; /* Black background to match page */
    transition: opacity 0.3s ease;
    max-height: 800px; /* 限制最大高度 */
}

/* Responsive Drawing Art Page */
@media (max-width: 1200px) {
    .drawing-art-page {
        margin-top: 190px; /* 160px + 30px header offset */
        padding: 0 30px 50px;
    }
    
    .drawing-art-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        max-width: 1200px;
        padding: 0 8px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .drawing-art-page {
        margin-top: 170px; /* 140px + 30px header offset */
        padding: 0 20px 40px;
    }
    
    .drawing-art-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        padding: 0 8px;
        gap: 3px;
    }
}

@media (max-width: 480px) {
    .drawing-art-page {
        margin-top: 150px; /* 120px + 30px header offset */
        padding: 0 15px 30px;
    }
    
    .drawing-art-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        padding: 0 6px;
        gap: 3px;
    }
}

/* Fine Art Page Styles */
.fine-art-page {
    margin-top: 180px; /* Adjusted spacing from top navigation (header now starts from top: 0) */
    padding: 0 40px 60px;
    min-height: calc(100vh - 180px);
    background-color: #000000;
}

.fine-art-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.fine-art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content; /* 自动高度，适应内容 */
    gap: 5px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.fine-art-item {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    transition: transform 0.3s ease;
}

.fine-art-item:hover {
    transform: scale(1.02);
}

.fine-art-image {
    width: 100%;
    height: auto; /* 自动高度，保持原始比例 */
    object-fit: contain; /* Show full artwork without cropping */
    object-position: center;
    display: block;
    background-color: #000000; /* Black background to match page */
    transition: opacity 0.3s ease;
    max-height: 800px; /* 限制最大高度 */
}

/* Responsive Fine Art Page */
@media (max-width: 1200px) {
    .fine-art-page {
        margin-top: 190px; /* 160px + 30px header offset */
        padding: 0 30px 50px;
    }
    
    .fine-art-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        max-width: 1200px;
        padding: 0 8px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .fine-art-page {
        margin-top: 170px; /* 140px + 30px header offset */
        padding: 0 20px 40px;
    }
    
    .fine-art-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        padding: 0 8px;
        gap: 3px;
    }
}

@media (max-width: 480px) {
    .fine-art-page {
        margin-top: 150px; /* 120px + 30px header offset */
        padding: 0 15px 30px;
    }
    
    .fine-art-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: min-content; /* 自动高度，适应内容 */
        padding: 0 6px;
        gap: 3px;
    }
}

/* Footer Copyright Styles */
.footer-copyright {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.footer-copyright p {
    margin: 5px 0;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

.footer-copyright p:first-child {
    font-weight: 500;
    color: #aaa;
}

/* Responsive Footer Copyright */
@media (max-width: 768px) {
    .footer-copyright {
        margin-top: 15px;
        padding-top: 10px;
    }
    
    .footer-copyright p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-copyright {
        margin-top: 10px;
        padding-top: 8px;
    }
    
    .footer-copyright p {
        font-size: 10px;
    }
}