:root {
            --color-primary: 59, 130, 246;
            --color-secondary: 16, 185, 129;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
        }
        @media (max-width: 768px) {
            .hero-height {
                min-height: 80vh;
            }
            .section-padding {
                padding: 3rem 1.5rem;
            }
        }
        *:focus {
            outline: 2px solid rgba(var(--color-primary), 0.5);
            outline-offset: 2px;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        .fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .game-card {
            transition: all 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .flink {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            text-decoration: none;
            color: #374151;
            margin: 0.25rem;
        }
        .flink:hover {
            background: rgba(59, 130, 246, 0.2);
            transform: translateY(-2px);
        }
