
        @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary: #0f172a;
            --secondary: #1e293b;
            --accent: #f59e0b;
            --accent-bright: #fbbf24;
            --success: #10b981;
            --danger: #ef4444;
            --text-light: #f1f5f9;
            --text-muted: #cbd5e1;
            --border-color: #334155;
        }

        * {
            font-family: 'IBM Plex Sans', sans-serif;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        body {
            background: linear-gradient(135deg, #0f172a 0%, #1a202c 50%, #111827 100%);
            color: var(--text-light);
            overflow-x: hidden;
        }

        .gradient-accent {
            background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card-glow {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-glow:hover {
            border-color: rgba(245, 158, 11, 0.5);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
        }

        .fade-in {
            animation: fadeIn 0.6s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .platform-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 8px;
            font-weight: 600;
            color: var(--accent-bright);
            margin: 0.5rem;
            transition: all 0.3s ease;
        }

        .platform-badge:hover {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
            transform: translateY(-2px);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .section-header::before {
            content: '';
            display: block;
            width: 4px;
            height: 2.5rem;
            background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
            border-radius: 2px;
        }

        .keyword-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            padding: 1.5rem;
            background: rgba(245, 158, 11, 0.05);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 12px;
            margin: 1rem 0;
        }

        .keyword-tag {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 6px;
            font-size: 0.85rem;
            color: var(--text-light);
            transition: all 0.2s ease;
        }

        .keyword-tag:hover {
            background: rgba(245, 158, 11, 0.2);
            border-color: rgba(245, 158, 11, 0.5);
            color: var(--accent-bright);
        }

        .issue-card {
            padding: 1.5rem;
            background: rgba(15, 23, 42, 0.4);
            border-left: 4px solid var(--accent);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .issue-card:hover {
            background: rgba(245, 158, 11, 0.05);
            transform: translateX(8px);
        }

        .meta-info {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 1.5rem 0;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .meta-item i {
            color: var(--accent);
        }

        .rating-stars {
            display: flex;
            gap: 0.25rem;
            color: var(--accent);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        th {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-bright);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }

        tr:hover {
            background: rgba(245, 158, 11, 0.05);
        }

        footer {
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, #000000 100%);
            border-top: 1px solid rgba(245, 158, 11, 0.1);
        }

        .link-hover {
            position: relative;
            color: var(--accent-bright);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .link-hover::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
            transition: width 0.3s ease;
        }

        .link-hover:hover::after {
            width: 100%;
        }

        .faq-toggle {
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.open {
            max-height: 500px;
        }

        .expertise-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--accent-bright);
            font-weight: 500;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .button-primary {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
            color: var(--primary);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
        }
    