        /* Mobile-Optimized Link List */
        .link-list {
            list-style: none;
            margin: 1.5rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .link-item {
            background: linear-gradient(90deg, rgba(26, 26, 38, 0.5) 0%, rgba(18, 18, 26, 0.7) 100%);
            border-left: 2px solid var(--accent-red);
            padding: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-radius: 0 12px 12px 0;
            width: 100%;
            box-sizing: border-box;
        }

        .link-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, rgba(230, 57, 70, 0.15), rgba(212, 175, 55, 0.1), transparent);
            transition: width 0.4s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .link-item:hover::before {
                width: 100%;
            }

            .link-item:hover {
                border-left-width: 4px;
                border-left-color: var(--accent-gold);
                transform: translateX(8px);
                box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
            }
        }

        .link-item:active {
            transform: translateX(4px);
        }

        .link-item a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            word-break: break-word;
        }

        @media (hover: hover) and (pointer: fine) {
            .link-item:hover a {
                color: var(--accent-gold);
            }
        }

