:root {
            --primary-color: #d32f2f;
            --secondary-color: #1e3a8a;
            --accent-color: #f59e0b;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
        }
        body {
            font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(211, 47, 47, 0.85) 100%), url('https://images.unsplash.com/photo-1560279966-8ff2f6c7a3a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background-color: var(--primary-color);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .news-item {
            border-bottom: 1px solid #eee;
            padding: 1.5rem 0;
            transition: background-color 0.3s ease;
        }
        .news-item:hover {
            background-color: rgba(30, 58, 138, 0.03);
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #b71c1c);
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
        }
        .footer {
            background-color: var(--secondary-color);
            color: white;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 20px 0;
            font-size: 0.9rem;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255,255,255,0.1);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 5px 10px 5px 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .flink:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .lottery-results {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .number-ball {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), #b71c1c);
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            margin: 0 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .number-ball.blue {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
