:root {
            --primary-color: #8b0000;
            --secondary-color: #f8f9fa;
            --accent-color: #ff6b6b;
            --text-color: #333;
            --light-gray: #e9ecef;
        }
        body {
            font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .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&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .section-title {
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--accent-color);
        }
        .gallery-item {
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 10px;
        }
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item img:hover {
            transform: scale(1.05);
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--light-gray);
            padding: 8px 15px;
            margin: 5px;
            border-radius: 5px;
            text-decoration: none;
            color: var(--text-color);
            transition: background 0.3s;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
        }
        footer {
            background-color: #212529;
            color: white;
            padding: 40px 0 20px;
        }
        .social-icons a {
            color: white;
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .card-img-top {
                height: 200px;
            }
        }
