:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: #ffffff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-brand i {
            color: var(--secondary-color);
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
            border-bottom-color: var(--secondary-color);
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 6rem;
            text-align: center;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero .lead {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px 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);
        }
        .card-body {
            padding: 1.8rem;
        }
        .badge-custom {
            background-color: var(--accent-color);
            color: var(--text-dark);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-color), #2d4da8);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .table-custom {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .table-custom thead {
            background-color: var(--primary-color);
            color: white;
        }
        .table-custom tbody tr:hover {
            background-color: rgba(30, 58, 138, 0.05);
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #b91c1c;
            transform: scale(1.05);
        }
        .friendlink {
            background-color: var(--bg-light);
            border-radius: 12px;
            padding: 2rem;
        }
        .flink {
            display: inline-block;
            background-color: white;
            color: var(--text-dark);
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            border: 1px solid #e5e7eb;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        footer a {
            color: #dbeafe;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--accent-color);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 0.8rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: rotate(10deg);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero .lead { font-size: 1.2rem; }
            .section-padding { padding: 3rem 0; }
            .stats-number { font-size: 2.2rem; }
        }
