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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.site-header-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-wrapper-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-primary a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.navigation-menu-primary {
    display: flex;
    gap: 2rem;
}

.nav-link-item,
.nav-link-active {
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link-item:hover,
.nav-link-active {
    background-color: rgba(255,255,255,0.2);
}

.hero-banner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 0;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text-content {
    animation: fadeInLeft 1s ease;
}

.hero-title-main {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-button-group {
    display: flex;
    gap: 1rem;
}

.btn-primary-action,
.btn-secondary-action {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
}

.btn-primary-action {
    background-color: #fff;
    color: #667eea;
}

.btn-secondary-action {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-primary-action:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary-action:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hero-image-container {
    animation: fadeInRight 1s ease;
}

.hero-main-image {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.featured-works-section,
.features-highlight-section,
.community-showcase-section,
.latest-news-section {
    padding: 4rem 0;
}

.section-title-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.works-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-card-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.work-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.work-card-item:hover .work-thumbnail-image {
    transform: scale(1.1);
}

.work-overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card-item:hover .work-overlay-effect {
    opacity: 1;
}

.view-detail-link {
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: bold;
}

.view-detail-link:hover {
    background-color: #fff;
    color: #667eea;
}

.work-title-name {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #333;
}

.work-description-brief {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.features-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card-block {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-card-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-description-content {
    color: #666;
    font-size: 0.95rem;
}

.community-showcase-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.community-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number-display {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.news-list-container {
    display: grid;
    gap: 2rem;
}

.news-item-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.news-image-box {
    height: 200px;
    overflow: hidden;
}

.news-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content-box {
    padding: 2rem 2rem 2rem 0;
}

.news-title-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.news-excerpt-text {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.news-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-date-text {
    color: #999;
    font-size: 0.9rem;
}

.news-readmore-link {
    color: #667eea;
    font-weight: bold;
}

.news-readmore-link:hover {
    color: #764ba2;
}

.site-footer-main {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-heading-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-text-content {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
}

.footer-links-list li,
.footer-contact-list li {
    margin-bottom: 0.5rem;
}

.footer-link-item,
.contact-item-text {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-link-item:hover {
    color: #fff;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
}

.copyright-text {
    color: #bdc3c7;
    font-size: 0.85rem;
}

.page-banner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.page-banner-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.works-filter-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.filter-buttons-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn-active,
.filter-btn-item {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    background: #fff;
    color: #667eea;
    border: 2px solid #667eea;
}

.filter-btn-active {
    background: #667eea;
    color: #fff;
}

.filter-btn-item:hover {
    background: #667eea;
    color: #fff;
}

.works-gallery-section {
    padding: 4rem 0;
}

.works-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-work-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-work-card:hover {
    transform: translateY(-10px);
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
}

.gallery-work-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-work-card:hover .gallery-work-image {
    transform: scale(1.1);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.gallery-work-card:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-work-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-work-desc {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.gallery-view-button {
    color: #fff;
    border: 2px solid #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
}

.gallery-view-button:hover {
    background: #fff;
    color: #667eea;
}

.pagination-section {
    padding: 2rem 0 4rem;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background: #fff;
    color: #667eea;
    border: 2px solid #667eea;
}

.pagination-btn:hover:not(:disabled) {
    background: #667eea;
    color: #fff;
}

.pagination-active {
    background: #667eea;
    color: #fff;
}

.pagination-prev:disabled,
.pagination-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-intro-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.intro-content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-heading-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-paragraph-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.gallery-collection-section {
    padding: 4rem 0;
}

.collection-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.collection-card-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.collection-card-wrapper:hover {
    transform: translateY(-10px);
}

.collection-image-box {
    position: relative;
    overflow: hidden;
}

.collection-cover-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card-wrapper:hover .collection-cover-image {
    transform: scale(1.1);
}

.collection-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.collection-card-wrapper:hover .collection-info-overlay {
    opacity: 1;
}

.collection-name-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.collection-count-text {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.collection-explore-link {
    color: #fff;
    border: 2px solid #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
}

.collection-explore-link:hover {
    background: #fff;
    color: #667eea;
}

.featured-artists-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.artists-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.artist-profile-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.artist-profile-card:hover {
    transform: translateY(-10px);
}

.artist-avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
}

.artist-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-name-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.artist-specialty-text {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.artist-bio-content {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.gallery-latest-section {
    padding: 4rem 0;
}

.latest-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.latest-work-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.latest-work-item:hover {
    transform: translateY(-5px);
}

.latest-work-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.latest-work-info {
    padding: 1rem;
    background: #fff;
}

.latest-work-name {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.latest-work-date {
    font-size: 0.85rem;
    color: #999;
}

.tutorial-category-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.category-tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab-active,
.category-tab-item {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    background: #fff;
    color: #667eea;
    border: 2px solid #667eea;
}

.category-tab-active {
    background: #667eea;
    color: #fff;
}

.category-tab-item:hover {
    background: #667eea;
    color: #fff;
}

.tutorial-courses-section {
    padding: 4rem 0;
}

.courses-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card-block {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card-block:hover {
    transform: translateY(-10px);
}

.course-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.course-level-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #667eea;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.course-content-area {
    padding: 1.5rem;
}

.course-title-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.course-description-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.course-meta-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #999;
}

.course-learn-button {
    width: 100%;
    padding: 0.8rem;
    background: #667eea;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
}

.course-learn-button:hover {
    background: #764ba2;
}

.tutorial-tips-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.tips-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tip-article-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-article-card:hover {
    transform: translateY(-10px);
}

.tip-image-container {
    height: 200px;
    overflow: hidden;
}

.tip-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tip-content-wrapper {
    padding: 1.5rem;
}

.tip-article-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.tip-article-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tip-read-link {
    color: #667eea;
    font-weight: bold;
}

.tip-read-link:hover {
    color: #764ba2;
}

.tutorial-resources-section {
    padding: 4rem 0;
}

.resources-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.resource-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.resource-name-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.resource-desc-text {
    color: #666;
    font-size: 0.9rem;
}

.resource-download-btn {
    padding: 0.8rem 2rem;
    background: #667eea;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
}

.resource-download-btn:hover {
    background: #764ba2;
}

.about-story-section {
    padding: 4rem 0;
}

.story-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-heading-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-paragraph-content {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-featured-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.mission-vision-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card-block {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.mission-icon-holder {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.mission-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-title-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.mission-description-text {
    color: #666;
    line-height: 1.8;
}

.team-members-section {
    padding: 4rem 0;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member-profile-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.member-profile-card:hover {
    transform: translateY(-10px);
}

.member-photo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
}

.member-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-position-text {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.milestones-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item-block {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-date-marker {
    text-align: right;
    font-weight: bold;
    color: #667eea;
    font-size: 1.1rem;
    padding-top: 0.5rem;
}

.timeline-content-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.timeline-event-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-event-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.partners-section {
    padding: 4rem 0;
}

.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.partner-logo-image {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo-item:hover .partner-logo-image {
    filter: grayscale(0%);
}

.contact-main-section {
    padding: 4rem 0;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.form-section-desc {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group-block {
    margin-bottom: 1.5rem;
}

.form-label-text {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-input-field,
.form-select-field,
.form-textarea-field {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {
    outline: none;
    border-color: #667eea;
}

.form-textarea-field {
    resize: vertical;
}

.form-submit-button {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
}

.form-submit-button:hover {
    background: #764ba2;
}

.contact-card-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-info-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-item-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-label-heading {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-value-text {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-sub-text {
    color: #999;
    font-size: 0.9rem;
}

.faq-quick-links {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.quick-links-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-links-list {
    list-style: none;
}

.faq-links-list li {
    margin-bottom: 0.8rem;
}

.faq-link-item {
    color: #667eea;
    font-size: 1rem;
}

.faq-link-item:hover {
    color: #764ba2;
}

.contact-reasons-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reasons-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-card-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reason-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.reason-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason-title-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.reason-desc-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-location-section {
    padding: 4rem 0;
}

.map-container-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.map-placeholder-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-image-display {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.location-info-panel {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.location-name-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.location-address-text,
.location-details-text {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.cta-content-box {
    text-align: center;
}

.cta-heading-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-primary-btn,
.cta-secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
}

.cta-primary-btn {
    background: #fff;
    color: #667eea;
}

.cta-secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-primary-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.detail-hero-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.breadcrumb-navigation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #667eea;
}

.breadcrumb-link:hover {
    color: #764ba2;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #333;
}

.detail-content-section {
    padding: 4rem 0;
}

.detail-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.artwork-display-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.artwork-main-image {
    width: 100%;
    height: auto;
}

.artwork-description-area {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.artwork-title-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.artwork-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: #999;
    font-size: 0.9rem;
}

.artwork-tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag-badge-item {
    padding: 0.5rem 1rem;
    background: #667eea;
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
}

.description-section-title {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.description-paragraph-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.related-works-section {
    margin-top: 3rem;
}

.related-section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.related-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.related-work-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-work-card:hover {
    transform: translateY(-5px);
}

.related-work-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-work-name {
    padding: 0.8rem;
    font-size: 0.9rem;
    color: #333;
    background: #fff;
}

.author-info-card,
.action-buttons-card,
.artwork-specs-card,
.popular-works-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.sidebar-card-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.author-profile-section {
    text-align: center;
}

.author-avatar-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
}

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

.author-name-heading {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.author-title-text {
    color: #667eea;
    margin-bottom: 1rem;
}

.author-bio-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-col-item {
    text-align: center;
}

.stat-number-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.3rem;
}

.stat-label-name {
    font-size: 0.85rem;
    color: #999;
}

.author-follow-button {
    width: 100%;
    padding: 0.8rem;
    background: #667eea;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
}

.author-follow-button:hover {
    background: #764ba2;
}

.action-buttons-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.action-btn-item {
    width: 100%;
    padding: 0.8rem;
    background: #fff;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn-item:hover {
    background: #667eea;
    color: #fff;
}

.btn-icon-text {
    font-size: 1.2rem;
}

.specs-list-items {
    list-style: none;
}

.spec-item-row {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

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

.spec-label-key {
    color: #999;
}

.spec-value-content {
    color: #333;
    font-weight: 500;
}

.popular-list-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-item-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.popular-item-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-item-title {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.popular-item-views {
    font-size: 0.85rem;
    color: #999;
}

.comments-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.comment-form-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
}

.comment-input-field {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1rem;
    resize: vertical;
}

.comment-input-field:focus {
    outline: none;
    border-color: #667eea;
}

.comment-submit-btn {
    padding: 0.8rem 2rem;
    background: #667eea;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
}

.comment-submit-btn:hover {
    background: #764ba2;
}

.comments-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.comment-item-block {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.comment-avatar-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.comment-user-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.comment-text-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.comment-meta-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.comment-time-text {
    font-size: 0.85rem;
    color: #999;
}

.comment-reply-btn {
    font-size: 0.85rem;
    color: #667eea;
    background: none;
    padding: 0;
}

.comment-reply-btn:hover {
    color: #764ba2;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper,
    .story-content-layout,
    .contact-layout-grid,
    .detail-layout-grid,
    .map-container-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title-main,
    .page-banner-title {
        font-size: 2rem;
    }

    .navigation-menu-primary {
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-item-card {
        grid-template-columns: 1fr;
    }

    .related-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}