 :root {
            --primary-color: #f39c12; /* Roșu chinezesc */
            --accent-color: #000000; /* Galben auriu */
            --bg-color: #fafafa;
            --text-color: #212121;
            --card-bg: #ffffff;
        }

        header {
            background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
            color: white;
            padding: 4rem 1rem;
            text-align: center;
            border-bottom: 5px solid var(--accent-color);
        }

        .container {
            max-width: 1000px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            padding-bottom: 12px;
        }

        .intro {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 3rem;
        }

        .intro h2 {
            color: var(--primary-color);
            margin-top: 0;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .card {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-top: 4px solid var(--primary-color);
        }

        .card h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .highlight-quote {
            background: #fff9c4;
            border-left: 6px solid var(--accent-color);
            padding: 1.5rem;
            font-style: italic;
            margin: 3rem 0;
            font-size: 1.1rem;
        }

        .stats-box {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            background: var(--primary-color);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-item span {
            display: block;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
        }

        footer {
            text-align: center;
            padding: 3rem;
            background: #1a1a1a;
            color: #888;
            margin-top: 4rem;
        }

        @media (max-width: 600px) {
            .stats-box { flex-direction: column; }
        }
        /* cod tabel */
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .stats-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .stats-table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        .stats-table tr:hover {
            background-color: #fff9c4;
        }
        .trend-note {
            font-size: 0.9rem;
            color: #666;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }