 :root {
            --navy: #1B2A6B;
            --gold: #C9941A;
            --gold-light: #E8B84B;
            --bg: #07091A;
            --bg-card: #0D1130;
            --text: #FFFFFF;
            --border: rgba(201,148,26,0.2);
            --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            margin: 0;
            overflow-x: hidden;
        }

        .native-cursor body,
        .native-cursor body * { cursor: auto !important; }

        .native-cursor .cursor-dot,
        .native-cursor .cursor-ring { display: none !important; }

        /* CUSTOM CURSOR */
        .cursor-dot { width: 8px; height: 8px; background: var(--gold-light); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); }
        .cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998; transform: translate(-50%, -50%); transition: transform 0.12s ease; }

        /* HERO SECTION */
        .param-hero {
            height: 40vh;
            background: linear-gradient(rgba(7,9,26,0.8), rgba(7,9,26,0.9)), url('https://images.unsplash.com/photo-1454165833767-027ffea9e778?w=1600&q=80') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }

        .param-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 52px;
            color: var(--gold-light);
            margin: 0;
        }

        .back-link {
            position: absolute;
            top: 40px;
            left: 5%;
            color: var(--text);
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center; gap: 8px;
            border: 1px solid var(--border);
            padding: 10px 18px;
            transition: 0.3s;
        }
        .back-link:hover { background: var(--gold); color: #000; border-color: var(--gold); }

        /* SEARCH & FILTER AREA */
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 5%;
        }

        .filter-bar {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .search-input {
            flex: 1;
            min-width: 300px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 15px 20px;
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            outline: none;
            transition: 0.3s;
        }
        .search-input:focus { border-color: var(--gold); }

        /* PARAMETERS TABLE */
        .table-wrapper {
            width: 100%;
            overflow-x: auto;
            border: 1px solid var(--border);
            background: var(--bg-card);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 800px;
        }

        th {
            background: rgba(201, 148, 26, 0.1);
            color: var(--gold);
            padding: 20px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 2px solid var(--gold);
        }

        td {
            padding: 20px;
            border-bottom: 1px solid var(--border);
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            font-weight: 300;
        }

        tr:hover { background: rgba(255,255,255,0.03); }

        .status-pill {
            padding: 5px 12px;
            border-radius: 2px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(201,148,26,0.15);
            color: var(--gold-light);
            border: 1px solid var(--gold);
        }

        /* REVEAL */
        .reveal { opacity: 0; transform: translateY(20px); transition: 0.6s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 768px) {
            .param-hero h1 { font-size: 36px; }
        }
