:root {
            --primary-color: #a52a2a;
            --secondary-color: #8b0000;
            --accent-color: #d4af37;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --text-color: #333;
            --text-light: #666;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background: var(--accent-color);
        }
        h3 {
            font-size: 1.8rem;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand span {
            color: var(--accent-color);
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 8px;
            transition: var(--transition);
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 160px 0 100px;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(165, 42, 42, 0.2);
        }
        .about-section {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        .profile-img {
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        .profile-img:hover {
            transform: scale(1.02);
        }
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .about-text p {
            margin-bottom: 1.5rem;
        }
        .info-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }
        .info-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .info-list i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .works-section {
            padding: 100px 0;
        }
        .work-card {
            border: none;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        .work-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .work-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .work-body {
            padding: 20px;
        }
        .work-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }
        .work-meta {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 15px;
        }
        .work-meta span {
            margin-right: 15px;
        }
        .badge-custom {
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .video-section {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 30px;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .video-grid {
            margin-top: 50px;
        }
        .gallery-section {
            padding: 100px 0;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            height: 300px;
            box-shadow: var(--box-shadow);
        }
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: var(--transition);
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        .news-section {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        .news-card {
            border: none;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        .news-card:hover {
            transform: translateY(-5px);
        }
        .news-date {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 10px;
        }
        .friendlink {
            padding: 80px 0;
            background-color: var(--dark-color);
            color: white;
        }
        .friendlink h2 {
            color: white;
        }
        .friendlink h2:after {
            background: var(--accent-color);
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 10px 15px 0;
            transition: var(--transition);
            text-decoration: none;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #222;
            color: #ccc;
            padding: 80px 0 30px;
        }
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        .social-icon:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 120px 0 60px;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .about-section, .works-section, .video-section, .gallery-section, .news-section {
                padding: 60px 0;
            }
            .gallery-item {
                height: 250px;
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .flink {
                display: block;
                margin: 0 0 15px 0;
                text-align: center;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
