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

        body {
            font-family: 'STSong', 'SimSun', serif;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #a8edea 100%);
            color: #2c3e50;
            line-height: 1.8;
            overflow-x: hidden;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-section {
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 0;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 4px;
            animation: fadeInDown 1.2s ease-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: #5a4a6a;
            margin-bottom: 2rem;
            font-weight: 300;
            animation: fadeInUp 1.5s ease-out;
        }

        .content-section {
            padding: 5rem 0;
            background: rgba(255, 255, 255, 0.9);
        }

        .poetry-card {
            background: linear-gradient(135deg, #fff5f7 0%, #ffe9f0 100%);
            border: none;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(118, 75, 162, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .poetry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(118, 75, 162, 0.25);
        }

        .poetry-card h3 {
            font-size: 1.8rem;
            color: #d6336c;
            margin-bottom: 1.5rem;
            font-weight: 400;
            position: relative;
            padding-bottom: 1rem;
        }

        .poetry-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
        }

        .poetry-text {
            font-size: 1.1rem;
            line-height: 2;
            color: #6a5a7a;
            font-style: italic;
        }

        .gallery-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .gallery-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

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

        footer {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: #ecf0f1;
            padding: 3rem 0;
            text-align: center;
        }

        footer p {
            margin: 0.5rem 0;
            font-size: 0.95rem;
            font-weight: 300;
        }

        .social-icons {
            margin-top: 1.5rem;
        }

        .social-icons a {
            color: #ecf0f1;
            font-size: 1.5rem;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #f093fb;
        }

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

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

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .poetry-card {
                padding: 1.5rem;
            }

            .poetry-card h3 {
                font-size: 1.4rem;
            }
        }